diff --git a/.idea/.idea.Knots/.idea/dataSources.xml b/.idea/.idea.Knots/.idea/dataSources.xml
new file mode 100644
index 0000000..8801ab6
--- /dev/null
+++ b/.idea/.idea.Knots/.idea/dataSources.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ sqlserver.jb
+ true
+ com.jetbrains.jdbc.sqlserver.SqlServerDriver
+ Server=romaric-thibault.fr,1433
+
+
+
+
+
+ $ProjectFileDir$
+
+
+
\ No newline at end of file
diff --git a/Knots/Knots.csproj b/Knots/Knots.csproj
index 58d9e73..4ea2de8 100644
--- a/Knots/Knots.csproj
+++ b/Knots/Knots.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net8.0
enable
enable
@@ -9,17 +9,18 @@
-
-
-
+
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
+
diff --git a/Knots/Migrations/20260312155557_Initial.Designer.cs b/Knots/Migrations/20260312155557_Initial.Designer.cs
new file mode 100644
index 0000000..4ecc52e
--- /dev/null
+++ b/Knots/Migrations/20260312155557_Initial.Designer.cs
@@ -0,0 +1,165 @@
+//
+using System;
+using Knots;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace Knots.Migrations
+{
+ [DbContext(typeof(KnotsDbContext))]
+ [Migration("20260312155557_Initial")]
+ partial class Initial
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "8.0.25")
+ .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+ SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+ modelBuilder.Entity("Knots.Models.Discussion", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.HasKey("Id");
+
+ b.ToTable("Discussions");
+ });
+
+ modelBuilder.Entity("Knots.Models.Group", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Nom")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.Property("NombreMembres")
+ .HasColumnType("int");
+
+ b.Property("ProfilePicture")
+ .HasColumnType("nvarchar(max)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Groups");
+ });
+
+ modelBuilder.Entity("Knots.Models.Key", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("EnKey")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Keys");
+ });
+
+ modelBuilder.Entity("Knots.Models.Message", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Contenu")
+ .IsRequired()
+ .HasMaxLength(1000)
+ .HasColumnType("nvarchar(1000)");
+
+ b.Property("Date")
+ .HasColumnType("datetime2");
+
+ b.Property("Type")
+ .HasColumnType("bit");
+
+ b.HasKey("Id");
+
+ b.ToTable("Messages");
+ });
+
+ modelBuilder.Entity("Knots.Models.Role", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Libelle")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Roles");
+ });
+
+ modelBuilder.Entity("Knots.Models.User", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Description")
+ .HasMaxLength(200)
+ .HasColumnType("nvarchar(200)");
+
+ b.Property("Email")
+ .IsRequired()
+ .HasMaxLength(70)
+ .HasColumnType("nvarchar(70)");
+
+ b.Property("Password")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("ProfilePicture")
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Tel")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Username")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Users");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/Knots/Migrations/20260312155557_Initial.cs b/Knots/Migrations/20260312155557_Initial.cs
new file mode 100644
index 0000000..3f53e7e
--- /dev/null
+++ b/Knots/Migrations/20260312155557_Initial.cs
@@ -0,0 +1,123 @@
+using System;
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace Knots.Migrations
+{
+ ///
+ public partial class Initial : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.CreateTable(
+ name: "Discussions",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1")
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Discussions", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Groups",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ Nom = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false),
+ NombreMembres = table.Column(type: "int", nullable: false),
+ ProfilePicture = table.Column(type: "nvarchar(max)", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Groups", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Keys",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ EnKey = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Keys", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Messages",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ Contenu = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: false),
+ Date = table.Column(type: "datetime2", nullable: false),
+ Type = table.Column(type: "bit", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Messages", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Roles",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ Libelle = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Roles", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Users",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ Username = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false),
+ Description = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true),
+ Password = table.Column(type: "nvarchar(max)", nullable: false),
+ Email = table.Column(type: "nvarchar(70)", maxLength: 70, nullable: false),
+ Tel = table.Column(type: "nvarchar(max)", nullable: false),
+ ProfilePicture = table.Column(type: "nvarchar(max)", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Users", x => x.Id);
+ });
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "Discussions");
+
+ migrationBuilder.DropTable(
+ name: "Groups");
+
+ migrationBuilder.DropTable(
+ name: "Keys");
+
+ migrationBuilder.DropTable(
+ name: "Messages");
+
+ migrationBuilder.DropTable(
+ name: "Roles");
+
+ migrationBuilder.DropTable(
+ name: "Users");
+ }
+ }
+}
diff --git a/Knots/Migrations/KnotsDbContextModelSnapshot.cs b/Knots/Migrations/KnotsDbContextModelSnapshot.cs
new file mode 100644
index 0000000..121a9b3
--- /dev/null
+++ b/Knots/Migrations/KnotsDbContextModelSnapshot.cs
@@ -0,0 +1,162 @@
+//
+using System;
+using Knots;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace Knots.Migrations
+{
+ [DbContext(typeof(KnotsDbContext))]
+ partial class KnotsDbContextModelSnapshot : ModelSnapshot
+ {
+ protected override void BuildModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "8.0.25")
+ .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+ SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+ modelBuilder.Entity("Knots.Models.Discussion", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.HasKey("Id");
+
+ b.ToTable("Discussions");
+ });
+
+ modelBuilder.Entity("Knots.Models.Group", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Nom")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.Property("NombreMembres")
+ .HasColumnType("int");
+
+ b.Property("ProfilePicture")
+ .HasColumnType("nvarchar(max)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Groups");
+ });
+
+ modelBuilder.Entity("Knots.Models.Key", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("EnKey")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Keys");
+ });
+
+ modelBuilder.Entity("Knots.Models.Message", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Contenu")
+ .IsRequired()
+ .HasMaxLength(1000)
+ .HasColumnType("nvarchar(1000)");
+
+ b.Property("Date")
+ .HasColumnType("datetime2");
+
+ b.Property("Type")
+ .HasColumnType("bit");
+
+ b.HasKey("Id");
+
+ b.ToTable("Messages");
+ });
+
+ modelBuilder.Entity("Knots.Models.Role", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Libelle")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Roles");
+ });
+
+ modelBuilder.Entity("Knots.Models.User", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("Description")
+ .HasMaxLength(200)
+ .HasColumnType("nvarchar(200)");
+
+ b.Property("Email")
+ .IsRequired()
+ .HasMaxLength(70)
+ .HasColumnType("nvarchar(70)");
+
+ b.Property("Password")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("ProfilePicture")
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Tel")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Username")
+ .IsRequired()
+ .HasMaxLength(50)
+ .HasColumnType("nvarchar(50)");
+
+ b.HasKey("Id");
+
+ b.ToTable("Users");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/Knots/Program.cs b/Knots/Program.cs
index 7688653..19442b1 100644
--- a/Knots/Program.cs
+++ b/Knots/Program.cs
@@ -1,23 +1,36 @@
-var builder = WebApplication.CreateBuilder(args);
+using Knots;
+using FastEndpoints;
+using FastEndpoints.Swagger;
-// Add services to the container.
+WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
-builder.Services.AddControllers();
-// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
-builder.Services.AddOpenApi();
+// On ajoute ici la configuration de la base de données
+builder.Services.AddDbContext();
-var app = builder.Build();
+//On ajoute le CORS au code
+builder.Services.AddCors(options =>
+{ options.AddDefaultPolicy(policyBuilder =>
+ {
+ policyBuilder
+ .WithOrigins("http://localhost:4200")
+ .WithMethods("GET", "POST", "PUT", "PATCH", "DELETE")
+ .AllowAnyHeader();
+ });
+});
-// Configure the HTTP request pipeline.
-if (app.Environment.IsDevelopment())
-{
- app.MapOpenApi();
-}
+// On construit l'application en lui donnant vie
+WebApplication app = builder.Build();
+app.UseAuthentication()
+ .UseAuthorization()
+ .UseFastEndpoints(options =>
+ {
+ options.Endpoints.RoutePrefix = "API";
+ options.Endpoints.ShortNames = true;
+ }
+ ).UseSwaggerGen();
app.UseHttpsRedirection();
-app.UseAuthorization();
-
-app.MapControllers();
+app.UseCors();
app.Run();
\ No newline at end of file
diff --git a/Knots/bin/Debug/net8.0/Azure.Core.dll b/Knots/bin/Debug/net8.0/Azure.Core.dll
new file mode 100755
index 0000000..d3fa20b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Azure.Core.dll differ
diff --git a/Knots/bin/Debug/net8.0/Azure.Identity.dll b/Knots/bin/Debug/net8.0/Azure.Identity.dll
new file mode 100755
index 0000000..aab6832
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Azure.Identity.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.Attributes.dll b/Knots/bin/Debug/net8.0/FastEndpoints.Attributes.dll
new file mode 100755
index 0000000..0bbdcd2
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.Attributes.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.Core.dll b/Knots/bin/Debug/net8.0/FastEndpoints.Core.dll
new file mode 100755
index 0000000..2b3b3a0
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.Core.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.JobQueues.dll b/Knots/bin/Debug/net8.0/FastEndpoints.JobQueues.dll
new file mode 100755
index 0000000..171ca04
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.JobQueues.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.Core.dll b/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.Core.dll
new file mode 100755
index 0000000..17b3af5
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.Core.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.dll b/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.dll
new file mode 100755
index 0000000..df89a2f
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.Swagger.dll b/Knots/bin/Debug/net8.0/FastEndpoints.Swagger.dll
new file mode 100755
index 0000000..a23da9f
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.Swagger.dll differ
diff --git a/Knots/bin/Debug/net8.0/FastEndpoints.dll b/Knots/bin/Debug/net8.0/FastEndpoints.dll
new file mode 100755
index 0000000..89340d4
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FastEndpoints.dll differ
diff --git a/Knots/bin/Debug/net8.0/FluentValidation.dll b/Knots/bin/Debug/net8.0/FluentValidation.dll
new file mode 100755
index 0000000..aab1163
Binary files /dev/null and b/Knots/bin/Debug/net8.0/FluentValidation.dll differ
diff --git a/Knots/bin/Debug/net8.0/Humanizer.dll b/Knots/bin/Debug/net8.0/Humanizer.dll
new file mode 100755
index 0000000..c9a7ef8
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Humanizer.dll differ
diff --git a/Knots/bin/Debug/net8.0/Knots b/Knots/bin/Debug/net8.0/Knots
new file mode 100755
index 0000000..616fa01
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Knots differ
diff --git a/Knots/bin/Debug/net8.0/Knots.deps.json b/Knots/bin/Debug/net8.0/Knots.deps.json
new file mode 100644
index 0000000..5474622
--- /dev/null
+++ b/Knots/bin/Debug/net8.0/Knots.deps.json
@@ -0,0 +1,1955 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Knots/1.0.0": {
+ "dependencies": {
+ "FastEndpoints": "8.0.1",
+ "FastEndpoints.Swagger": "8.0.1",
+ "Microsoft.AspNetCore.OpenApi": "8.0.25",
+ "Microsoft.EntityFrameworkCore": "8.0.25",
+ "Microsoft.EntityFrameworkCore.Design": "8.0.25",
+ "Microsoft.EntityFrameworkCore.SqlServer": "8.0.25"
+ },
+ "runtime": {
+ "Knots.dll": {}
+ }
+ },
+ "Azure.Core/1.38.0": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "System.ClientModel": "1.0.0",
+ "System.Diagnostics.DiagnosticSource": "10.0.3",
+ "System.Memory.Data": "1.0.2",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Text.Encodings.Web": "8.0.0",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/net6.0/Azure.Core.dll": {
+ "assemblyVersion": "1.38.0.0",
+ "fileVersion": "1.3800.24.12602"
+ }
+ }
+ },
+ "Azure.Identity/1.11.4": {
+ "dependencies": {
+ "Azure.Core": "1.38.0",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3",
+ "System.Memory": "4.5.4",
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Text.Json": "4.7.2",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Azure.Identity.dll": {
+ "assemblyVersion": "1.11.4.0",
+ "fileVersion": "1.1100.424.31005"
+ }
+ }
+ },
+ "FastEndpoints/8.0.1": {
+ "dependencies": {
+ "FastEndpoints.Attributes": "8.0.1",
+ "FastEndpoints.JobQueues": "8.0.1",
+ "FastEndpoints.Messaging": "8.0.1",
+ "FluentValidation": "12.1.1"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.Attributes/8.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.Attributes.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.Core/8.0.1": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "2.3.9",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.Core.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.JobQueues/8.0.1": {
+ "dependencies": {
+ "FastEndpoints.Messaging": "8.0.1",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Hosting.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.JobQueues.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.Messaging/8.0.1": {
+ "dependencies": {
+ "FastEndpoints.Core": "8.0.1",
+ "FastEndpoints.Messaging.Core": "8.0.1",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.Messaging.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.Messaging.Core/8.0.1": {
+ "runtime": {
+ "lib/net8.0/FastEndpoints.Messaging.Core.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FastEndpoints.Swagger/8.0.1": {
+ "dependencies": {
+ "FastEndpoints": "8.0.1",
+ "NSwag.AspNetCore": "14.6.3"
+ },
+ "runtime": {
+ "lib/net8.0/FastEndpoints.Swagger.dll": {
+ "assemblyVersion": "8.0.1.0",
+ "fileVersion": "8.0.1.0"
+ }
+ }
+ },
+ "FluentValidation/12.1.1": {
+ "runtime": {
+ "lib/net8.0/FluentValidation.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.1.1.0"
+ }
+ }
+ },
+ "Humanizer.Core/2.14.1": {
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "assemblyVersion": "2.14.0.0",
+ "fileVersion": "2.14.1.48190"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.3.9": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "2.3.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ }
+ },
+ "Microsoft.AspNetCore.Http.Features/2.3.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.25": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11225"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
+ "System.Collections.Immutable": "6.0.0",
+ "System.Reflection.Metadata": "6.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp": "4.5.0",
+ "Microsoft.CodeAnalysis.Common": "4.5.0",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.CodeAnalysis.Common": "4.5.0",
+ "System.Composition": "6.0.0",
+ "System.IO.Pipelines": "6.0.3",
+ "System.Threading.Channels": "6.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {},
+ "Microsoft.Data.SqlClient/5.1.7": {
+ "dependencies": {
+ "Azure.Identity": "1.11.4",
+ "Microsoft.Data.SqlClient.SNI.runtime": "5.1.2",
+ "Microsoft.Identity.Client": "4.61.3",
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
+ "Microsoft.SqlServer.Server": "1.0.0",
+ "System.Configuration.ConfigurationManager": "6.0.1",
+ "System.Diagnostics.DiagnosticSource": "10.0.3",
+ "System.Runtime.Caching": "6.0.0",
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0",
+ "System.Text.Encodings.Web": "8.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Data.SqlClient.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.17.25115.2"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.17.25115.2"
+ },
+ "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.17.25115.2"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.1.2": {
+ "runtimeTargets": {
+ "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-arm",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/8.0.25": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.25",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.25",
+ "Microsoft.Extensions.Caching.Memory": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11206"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.25": {
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11206"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.25": {},
+ "Microsoft.EntityFrameworkCore.Design/8.0.25": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.25",
+ "Microsoft.Extensions.DependencyModel": "8.0.2",
+ "Mono.TextTemplating": "2.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11206"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.25": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.25",
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11206"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/8.0.25": {
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "5.1.7",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.25",
+ "System.Formats.Asn1": "8.0.2"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "assemblyVersion": "8.0.25.0",
+ "fileVersion": "8.0.2526.11206"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Options": "10.0.3",
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.1024.46610"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.1024.46610"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
+ "assemblyVersion": "8.0.0.2",
+ "fileVersion": "8.0.1024.46610"
+ }
+ }
+ },
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Options": "10.0.3",
+ "System.Diagnostics.DiagnosticSource": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.3",
+ "Microsoft.Extensions.FileProviders.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Options": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.1024.46610"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "System.Diagnostics.DiagnosticSource": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/10.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
+ "Microsoft.Extensions.Primitives": "10.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/10.0.3": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.61.3": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0",
+ "System.Diagnostics.DiagnosticSource": "10.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.61.3.0",
+ "fileVersion": "4.61.3.0"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.61.3",
+ "System.Security.Cryptography.ProtectedData": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "assemblyVersion": "4.61.3.0",
+ "fileVersion": "4.61.3.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "6.35.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encodings.Web": "8.0.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.35.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols": "6.35.0",
+ "System.IdentityModel.Tokens.Jwt": "6.35.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "Microsoft.IdentityModel.Logging": "6.35.0",
+ "System.Security.Cryptography.Cng": "5.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.OpenApi/1.4.3": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.4.3.0",
+ "fileVersion": "1.4.3.0"
+ }
+ }
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Microsoft.Win32.SystemEvents/6.0.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "Mono.TextTemplating/2.2.1": {
+ "dependencies": {
+ "System.CodeDom": "4.4.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Mono.TextTemplating.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.1.1"
+ }
+ }
+ },
+ "Namotion.Reflection/3.4.3": {
+ "runtime": {
+ "lib/net8.0/Namotion.Reflection.dll": {
+ "assemblyVersion": "3.4.3.0",
+ "fileVersion": "3.4.3.0"
+ }
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.3.27908"
+ }
+ }
+ },
+ "NJsonSchema/11.5.2": {
+ "dependencies": {
+ "NJsonSchema.Annotations": "11.5.2",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NJsonSchema.dll": {
+ "assemblyVersion": "11.5.2.0",
+ "fileVersion": "11.5.2.0"
+ }
+ }
+ },
+ "NJsonSchema.Annotations/11.5.2": {
+ "runtime": {
+ "lib/netstandard2.0/NJsonSchema.Annotations.dll": {
+ "assemblyVersion": "11.5.2.0",
+ "fileVersion": "11.5.2.0"
+ }
+ }
+ },
+ "NJsonSchema.NewtonsoftJson/11.5.2": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NJsonSchema.NewtonsoftJson.dll": {
+ "assemblyVersion": "11.5.2.0",
+ "fileVersion": "11.5.2.0"
+ }
+ }
+ },
+ "NJsonSchema.Yaml/11.5.2": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "YamlDotNet": "16.3.0"
+ },
+ "runtime": {
+ "lib/net8.0/NJsonSchema.Yaml.dll": {
+ "assemblyVersion": "11.5.2.0",
+ "fileVersion": "11.5.2.0"
+ }
+ }
+ },
+ "NSwag.Annotations/14.6.3": {
+ "runtime": {
+ "lib/netstandard2.0/NSwag.Annotations.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "NSwag.AspNetCore/14.6.3": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "NJsonSchema.NewtonsoftJson": "11.5.2",
+ "NJsonSchema.Yaml": "11.5.2",
+ "NSwag.Annotations": "14.6.3",
+ "NSwag.Core.Yaml": "14.6.3",
+ "NSwag.Generation.AspNetCore": "14.6.3",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NSwag.AspNetCore.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "NSwag.Core/14.6.3": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NSwag.Core.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "NSwag.Core.Yaml/14.6.3": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "NJsonSchema.Yaml": "11.5.2",
+ "NSwag.Core": "14.6.3",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NSwag.Core.Yaml.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "NSwag.Generation/14.6.3": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "NJsonSchema.NewtonsoftJson": "11.5.2",
+ "NSwag.Core": "14.6.3",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NSwag.Generation.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "NSwag.Generation.AspNetCore/14.6.3": {
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "NJsonSchema.NewtonsoftJson": "11.5.2",
+ "NSwag.Generation": "14.6.3",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net8.0/NSwag.Generation.AspNetCore.dll": {
+ "assemblyVersion": "14.6.3.0",
+ "fileVersion": "14.6.3.0"
+ }
+ }
+ },
+ "System.ClientModel/1.0.0": {
+ "dependencies": {
+ "System.Memory.Data": "1.0.2",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/net6.0/System.ClientModel.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.24.5302"
+ }
+ }
+ },
+ "System.CodeDom/4.4.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.25519.3"
+ }
+ }
+ },
+ "System.Collections.Immutable/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Composition/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Convention": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0",
+ "System.Composition.TypedParts": "6.0.0"
+ }
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Composition.AttributedModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Convention/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Convention.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "dependencies": {
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Hosting.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Composition.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.TypedParts.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "6.0.0",
+ "System.Security.Permissions": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.922.41905"
+ }
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/10.0.3": {
+ "runtime": {
+ "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "10.0.326.7603"
+ }
+ }
+ },
+ "System.Drawing.Common/6.0.0": {
+ "dependencies": {
+ "Microsoft.Win32.SystemEvents": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Drawing.Common.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ },
+ "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Formats.Asn1/8.0.2": {},
+ "System.IdentityModel.Tokens.Jwt/6.35.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
+ "Microsoft.IdentityModel.Tokens": "6.35.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "assemblyVersion": "6.35.0.0",
+ "fileVersion": "6.35.0.41201"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {},
+ "System.Memory/4.5.4": {},
+ "System.Memory.Data/1.0.2": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "8.0.0",
+ "System.Text.Json": "4.7.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.Data.dll": {
+ "assemblyVersion": "1.0.2.0",
+ "fileVersion": "1.0.221.20802"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {},
+ "System.Reflection.Metadata/6.0.1": {
+ "dependencies": {
+ "System.Collections.Immutable": "6.0.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "dependencies": {
+ "System.Configuration.ConfigurationManager": "6.0.1"
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.Caching.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
+ "System.Security.AccessControl/6.0.0": {},
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "dependencies": {
+ "System.Formats.Asn1": "8.0.2"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Permissions/6.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "6.0.0",
+ "System.Windows.Extensions": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Security.Permissions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {},
+ "System.Text.Json/4.7.2": {},
+ "System.Threading.Channels/6.0.0": {},
+ "System.Threading.Tasks.Extensions/4.5.4": {},
+ "System.Windows.Extensions/6.0.0": {
+ "dependencies": {
+ "System.Drawing.Common": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Windows.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "YamlDotNet/16.3.0": {
+ "runtime": {
+ "lib/net8.0/YamlDotNet.dll": {
+ "assemblyVersion": "16.0.0.0",
+ "fileVersion": "16.3.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Knots/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Azure.Core/1.38.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==",
+ "path": "azure.core/1.38.0",
+ "hashPath": "azure.core.1.38.0.nupkg.sha512"
+ },
+ "Azure.Identity/1.11.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==",
+ "path": "azure.identity/1.11.4",
+ "hashPath": "azure.identity.1.11.4.nupkg.sha512"
+ },
+ "FastEndpoints/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-v77ZGHBE95gGCQxDz2mwLNpU42dcD6WPQTpzhnLq8weFHD7mtzhhWgpxaNHt6fYEES/bnYUVzoc4x9QnwDy7Yg==",
+ "path": "fastendpoints/8.0.1",
+ "hashPath": "fastendpoints.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.Attributes/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z4C9Q0VRP1KkPUHPDfdPpTD4OwQTnelK20R7VTTKOwcSM27v9B3PEO/KLQKFm8OsTqUejyxc6+YbcJdjx2gosw==",
+ "path": "fastendpoints.attributes/8.0.1",
+ "hashPath": "fastendpoints.attributes.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.Core/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bEi4+ZyddkKvfOrUPqABqdIf7mHDrlZBlXjMkr4Dx9g1m9rCFO0a29KQ7bSHY25RaIQSC6CgG5UsIF169kYaLw==",
+ "path": "fastendpoints.core/8.0.1",
+ "hashPath": "fastendpoints.core.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.JobQueues/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gP8iNDYRsCol/4oGVQzHLrLQONhv3df8Cfz6F0h5UUj4/gkBvxPQS5c8tekQzDe76hE3//YHCRSqml8qy1bgMQ==",
+ "path": "fastendpoints.jobqueues/8.0.1",
+ "hashPath": "fastendpoints.jobqueues.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.Messaging/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-emHMWSIzI2s1Bxv3GfZYCJsU9eUA8ETYRUdx74QmDPjYZYpzV0cIrtP2RksZEsBsylGbQbJduKcdsKpNgY4PQQ==",
+ "path": "fastendpoints.messaging/8.0.1",
+ "hashPath": "fastendpoints.messaging.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.Messaging.Core/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b+akQ4GpnMpcMj3rTvTY0zxNjB/ZczP0HUPfWe8j+GoBlvO1hcRUu92P2c6wH+8AiBxlFwGnH5H5bMu2Rr8BXQ==",
+ "path": "fastendpoints.messaging.core/8.0.1",
+ "hashPath": "fastendpoints.messaging.core.8.0.1.nupkg.sha512"
+ },
+ "FastEndpoints.Swagger/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7cglhNYKVQbUwmvWBjtSiNmdt1FXAOG/hNmMS5iDtOmj/aiEpf+HWVsLUbDE9gs2UM3kg1XVGPIE4uMDG/l4Qw==",
+ "path": "fastendpoints.swagger/8.0.1",
+ "hashPath": "fastendpoints.swagger.8.0.1.nupkg.sha512"
+ },
+ "FluentValidation/12.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==",
+ "path": "fluentvalidation/12.1.1",
+ "hashPath": "fluentvalidation.12.1.1.nupkg.sha512"
+ },
+ "Humanizer.Core/2.14.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
+ "path": "humanizer.core/2.14.1",
+ "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/2.3.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ULScB/0S9+qvf+yahjR+oQUp0GrvoDHJ9XS5gTqSjLjbjUDnHaJ1s8wo3RJMpaDfb1bawX4OgQM+YmvCUveR4Q==",
+ "path": "microsoft.aspnetcore.http.abstractions/2.3.9",
+ "hashPath": "microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Http.Features/2.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f10WUgcsKqrkmnz6gt8HeZ7kyKjYN30PO7cSic1lPtH7paPtnQqXPOveul/SIPI43PhRD4trttg4ywnrEmmJpA==",
+ "path": "microsoft.aspnetcore.http.features/2.3.0",
+ "hashPath": "microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tdgVJejEelJ13udqJW+fHw9ZVHI8LjdeYrWdoD+nlsnKU4SMajpmx1sQEoqzb1tr9oWdD87agIkB5+x7VO3Lkw==",
+ "path": "microsoft.aspnetcore.openapi/8.0.25",
+ "hashPath": "microsoft.aspnetcore.openapi.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
+ "path": "microsoft.codeanalysis.analyzers/3.3.3",
+ "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
+ "path": "microsoft.codeanalysis.common/4.5.0",
+ "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
+ "path": "microsoft.codeanalysis.csharp/4.5.0",
+ "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
+ "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
+ "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
+ "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "path": "microsoft.csharp/4.5.0",
+ "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient/5.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-awBwR6pCRyiFqB5z1iu+eMaFmt986JWgaA1+LR+vsdIRBgeBI5X8f3u+ZPnTqlHUwfTugl6ptIObzalWeAPugQ==",
+ "path": "microsoft.data.sqlclient/5.1.7",
+ "hashPath": "microsoft.data.sqlclient.5.1.7.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/5.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q3mjL/oG7rYKDI1D34HLxf0FvhEAwOGzbiDfwv9/HaGP9f9yNV8KeXAS6ehxOaoBNqBRM6sTA19f9XVtf8rvLA==",
+ "path": "microsoft.data.sqlclient.sni.runtime/5.1.2",
+ "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.2.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1seNis+YnJwiQpwzBCQVWTlyfnlfwotQUkCC0MINwS6yt5Gco4XZ/xOz1fB5uwAWjO/TrDzL/sIMk2hXPxeHbg==",
+ "path": "microsoft.entityframeworkcore/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YGJD4/P34LsQetSH5R0J58nAWSFGn7BE11zThfCkILTW8wy+9/kwqM2P0ciHhuzlPzwApputDfQ5u35+fH6BGQ==",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jHtsaYPDBoNsIA085ZbqrZGidG+rnoZGJ/0JTL6QHR0XV4JLnLoJgPao7zVsqhEVJUnS7JOfVClr0UThAxoiuQ==",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Design/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f/cgXiK0rJs95yE0A+7eYF29hW+P66frX1QVguM8rBhAooXFzeVT9WHPkEAkQbYXExpTRQk9B8JGPDfLs3ze5w==",
+ "path": "microsoft.entityframeworkcore.design/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.design.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/6S+I5PvmlzDeLMCXZGCXmnUNiJdLyucUrnwkItNhNRZB8ftVYXdyM0omNwm3UDvRSQVMnb3e5s7+YusLvvYeg==",
+ "path": "microsoft.entityframeworkcore.relational/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.relational.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/8.0.25": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qYjeibwlmipHm75Xh+4R1xbBoGaVY0wHqZx3IxNYiyROeHZAqNVrdR6Wb5HkT8h9zJkIMUp+F3fq4v2DcjrRpA==",
+ "path": "microsoft.entityframeworkcore.sqlserver/8.0.25",
+ "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
+ "path": "microsoft.extensions.caching.memory/8.0.1",
+ "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xVDHL0+SIgemfh95fTO9cGLe17TWv/ZP0n7m01z8X6pzt2DmQpucioWR/mYZA1sRlkWnkXzfl0JweLNWmE9WMg==",
+ "path": "microsoft.extensions.configuration.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
+ "path": "microsoft.extensions.dependencyinjection/8.0.1",
+ "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bwGMrRcAMWx2s/RDgja97p27rxSz2pEQW0+rX5cWAUWVETVJ/eyxGfjAl8vuG5a+lckWmPIE+vcuaZNVB5YDdw==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
+ "path": "microsoft.extensions.dependencymodel/8.0.2",
+ "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mQiTzAj7PIJ2A9YXR5QhgulS1fTWhmQc3ckd1Mrf3hKW07d03fBDqx8vVaFw+cRTebDOeB6pNqdWdnRxsi1hBA==",
+ "path": "microsoft.extensions.diagnostics.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4TD9AXDRsipTmaemwnjt/DM5Ri0de2JzHQhvZ4woBTjUtL4XrPNsMrOk5oiLJAx1gTrE6pOIhxv+lEde5F6CZA==",
+ "path": "microsoft.extensions.fileproviders.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GdMpC10Jf6poxSvUJ4lgYpJ5F/kJeaAoJmrPufjBoPYyCTKKY5Dyl0rZA+LBNvFqTq1cZa/lhlptlUhNvU6xrg==",
+ "path": "microsoft.extensions.hosting.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
+ "path": "microsoft.extensions.logging/8.0.1",
+ "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lxl0WLk7ROgBFAsjcOYjQ8/DVK+VMszxGBzUhgtQmAsTNldLL5pk9NG/cWTsXHq0lUhUEAtZkEE7jOGOA8bGKQ==",
+ "path": "microsoft.extensions.logging.abstractions/10.0.3",
+ "hashPath": "microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hU6WzGTPvPoLA2ng1ILvWQb3g0qORdlHNsxI8IcPLumJb3suimYUl+bbDzdo1V4KFsvVhnMWzysHpKbZaoDQPQ==",
+ "path": "microsoft.extensions.options/10.0.3",
+ "hashPath": "microsoft.extensions.options.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GEcpTwo7sUoLGGNTqV1FZEuL+tTD9m81NX/mh099dqGNna07/UGZShKQNZRw4hv6nlliSUwYQgSYc7OR99Jufg==",
+ "path": "microsoft.extensions.primitives/10.0.3",
+ "hashPath": "microsoft.extensions.primitives.10.0.3.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.61.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
+ "path": "microsoft.identity.client/4.61.3",
+ "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
+ "path": "microsoft.identity.client.extensions.msal/4.61.3",
+ "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
+ "path": "microsoft.identitymodel.abstractions/6.35.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
+ "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
+ "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
+ "path": "microsoft.identitymodel.logging/6.35.0",
+ "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
+ "path": "microsoft.identitymodel.protocols/6.35.0",
+ "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
+ "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
+ "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
+ "path": "microsoft.identitymodel.tokens/6.35.0",
+ "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "path": "microsoft.openapi/1.4.3",
+ "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512"
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
+ "path": "microsoft.sqlserver.server/1.0.0",
+ "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.SystemEvents/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
+ "path": "microsoft.win32.systemevents/6.0.0",
+ "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
+ },
+ "Mono.TextTemplating/2.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
+ "path": "mono.texttemplating/2.2.1",
+ "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
+ },
+ "Namotion.Reflection/3.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw==",
+ "path": "namotion.reflection/3.4.3",
+ "hashPath": "namotion.reflection.3.4.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "path": "newtonsoft.json/13.0.3",
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
+ },
+ "NJsonSchema/11.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CAmnt4tnylb82Ro6f2EFIGz8rmThuCsITECUNqGhVEQ5VvxV+XwsTPz6LF58MbvUEV1jVcH+uxxljgM/etgK7A==",
+ "path": "njsonschema/11.5.2",
+ "hashPath": "njsonschema.11.5.2.nupkg.sha512"
+ },
+ "NJsonSchema.Annotations/11.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OfYQgNzJZb1r/gR5vza0DbBLxnmcITDhA5CXFuX1qxuP3rRdQMjbIz5VyDVHCU1QxyrfAymzajbh7iszEvyFGQ==",
+ "path": "njsonschema.annotations/11.5.2",
+ "hashPath": "njsonschema.annotations.11.5.2.nupkg.sha512"
+ },
+ "NJsonSchema.NewtonsoftJson/11.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2KuhjeP/E/hqixoKRjKUXD56V8gBkEB51gdbTU2gN2AeabCG4gW5YsAUl+ZumFgj0cbEJ7GKdl9IBdeZaLxiTA==",
+ "path": "njsonschema.newtonsoftjson/11.5.2",
+ "hashPath": "njsonschema.newtonsoftjson.11.5.2.nupkg.sha512"
+ },
+ "NJsonSchema.Yaml/11.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1H835IiOxO5tpqpTN4Ibs0qymHbobHoYr+2K3ZdUVpzwlFDgaGflKmKT+7Hj4cBxKBsNs+MxTeCOEeM+PN1VRw==",
+ "path": "njsonschema.yaml/11.5.2",
+ "hashPath": "njsonschema.yaml.11.5.2.nupkg.sha512"
+ },
+ "NSwag.Annotations/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZAmmjFF6ieW7D7bS7ViIcFZ6Sq77NxAZbvIOypsB8EVRnZMdcr+Rn/sVaVDwPi3YtZJBydSAMNsYDdluhy0ayA==",
+ "path": "nswag.annotations/14.6.3",
+ "hashPath": "nswag.annotations.14.6.3.nupkg.sha512"
+ },
+ "NSwag.AspNetCore/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rKhVvcmhDdI91RBntyzzO/Tjfeo4dh1zkO2UaG3R7wWp40GUK+RzZJpY4NjwuawsG+PPEWCDCKEgJL8BNo3R3A==",
+ "path": "nswag.aspnetcore/14.6.3",
+ "hashPath": "nswag.aspnetcore.14.6.3.nupkg.sha512"
+ },
+ "NSwag.Core/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TrX5mbmuoOIUaOs/77Rohu0xir4nKjAVHmVsct7wmnsAI6b0HOYEM9eH9km0VbcNKj0baNQ7qYSKH6KXMkkz0Q==",
+ "path": "nswag.core/14.6.3",
+ "hashPath": "nswag.core.14.6.3.nupkg.sha512"
+ },
+ "NSwag.Core.Yaml/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/XVgHvtFaJiGElFG1Wuk9N4AwKzmrD8udUKymDQPoqtvg5L0nSeZsnlRgKwPJq/4vquN51AIGWqB8iK4O3YRHg==",
+ "path": "nswag.core.yaml/14.6.3",
+ "hashPath": "nswag.core.yaml.14.6.3.nupkg.sha512"
+ },
+ "NSwag.Generation/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PMeOxbdL9XaSgPN2eZfb9gv1fHEtqMujaXCR/EL2A8JNVicCNZH73iy/IKuhNrTstZdzHp0XMYz1vbIvUKiWvQ==",
+ "path": "nswag.generation/14.6.3",
+ "hashPath": "nswag.generation.14.6.3.nupkg.sha512"
+ },
+ "NSwag.Generation.AspNetCore/14.6.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h3A6dekJz95mjLVREa0PHejNTipzZlslqGXttruMJdEBRtxqDOVe3osNllXszAF2kA5JKL8hByNlySIr6aI7MQ==",
+ "path": "nswag.generation.aspnetcore/14.6.3",
+ "hashPath": "nswag.generation.aspnetcore.14.6.3.nupkg.sha512"
+ },
+ "System.ClientModel/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==",
+ "path": "system.clientmodel/1.0.0",
+ "hashPath": "system.clientmodel.1.0.0.nupkg.sha512"
+ },
+ "System.CodeDom/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
+ "path": "system.codedom/4.4.0",
+ "hashPath": "system.codedom.4.4.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
+ "path": "system.collections.immutable/6.0.0",
+ "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
+ },
+ "System.Composition/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
+ "path": "system.composition/6.0.0",
+ "hashPath": "system.composition.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
+ "path": "system.composition.attributedmodel/6.0.0",
+ "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Convention/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
+ "path": "system.composition.convention/6.0.0",
+ "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
+ "path": "system.composition.hosting/6.0.0",
+ "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
+ "path": "system.composition.runtime/6.0.0",
+ "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
+ "path": "system.composition.typedparts/6.0.0",
+ "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
+ "path": "system.configuration.configurationmanager/6.0.1",
+ "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/10.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IuZXyF3K5X+mCsBKIQ87Cn/V4Nyb39vyCbzfH/AkoneSWNV/ExGQ/I0m4CEaVAeFh9fW6kp2NVObkmevd1Ys7A==",
+ "path": "system.diagnostics.diagnosticsource/10.0.3",
+ "hashPath": "system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512"
+ },
+ "System.Drawing.Common/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
+ "path": "system.drawing.common/6.0.0",
+ "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
+ },
+ "System.Formats.Asn1/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yUsFqNGa7tbwm5QOOnOR3VSoh8a0Yki39mTbhOnErdbg8hVSFtrK0EXerj286PXcegiF1LkE7lL++qqMZW5jIQ==",
+ "path": "system.formats.asn1/8.0.2",
+ "hashPath": "system.formats.asn1.8.0.2.nupkg.sha512"
+ },
+ "System.IdentityModel.Tokens.Jwt/6.35.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
+ "path": "system.identitymodel.tokens.jwt/6.35.0",
+ "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512"
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
+ "path": "system.io.pipelines/6.0.3",
+ "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
+ },
+ "System.Memory/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
+ "path": "system.memory/4.5.4",
+ "hashPath": "system.memory.4.5.4.nupkg.sha512"
+ },
+ "System.Memory.Data/1.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
+ "path": "system.memory.data/1.0.2",
+ "hashPath": "system.memory.data.1.0.2.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
+ "path": "system.reflection.metadata/6.0.1",
+ "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Caching/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
+ "path": "system.runtime.caching/6.0.0",
+ "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
+ "path": "system.security.accesscontrol/6.0.0",
+ "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
+ "path": "system.security.cryptography.cng/5.0.0",
+ "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
+ "path": "system.security.cryptography.protecteddata/6.0.0",
+ "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
+ "path": "system.security.permissions/6.0.0",
+ "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
+ "path": "system.text.encodings.web/8.0.0",
+ "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
+ "path": "system.text.json/4.7.2",
+ "hashPath": "system.text.json.4.7.2.nupkg.sha512"
+ },
+ "System.Threading.Channels/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
+ "path": "system.threading.channels/6.0.0",
+ "hashPath": "system.threading.channels.6.0.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "path": "system.threading.tasks.extensions/4.5.4",
+ "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
+ },
+ "System.Windows.Extensions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
+ "path": "system.windows.extensions/6.0.0",
+ "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
+ },
+ "YamlDotNet/16.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SgMOdxbz8X65z8hraIs6hOEdnkH6hESTAIUa7viEngHOYaH+6q5XJmwr1+yb9vJpNQ19hCQY69xbFsLtXpobQA==",
+ "path": "yamldotnet/16.3.0",
+ "hashPath": "yamldotnet.16.3.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Knots/bin/Debug/net8.0/Knots.dll b/Knots/bin/Debug/net8.0/Knots.dll
new file mode 100644
index 0000000..a7f6cb1
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Knots.dll differ
diff --git a/Knots/bin/Debug/net8.0/Knots.pdb b/Knots/bin/Debug/net8.0/Knots.pdb
new file mode 100644
index 0000000..9ab75ac
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Knots.pdb differ
diff --git a/Knots/bin/Debug/net8.0/Knots.runtimeconfig.json b/Knots/bin/Debug/net8.0/Knots.runtimeconfig.json
new file mode 100644
index 0000000..b8a4a9c
--- /dev/null
+++ b/Knots/bin/Debug/net8.0/Knots.runtimeconfig.json
@@ -0,0 +1,20 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Reflection.NullabilityInfoContext.IsSupported": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Knots/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/Knots/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100755
index 0000000..3c71f49
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/Knots/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100755
index 0000000..fe6ba4c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
new file mode 100755
index 0000000..dc218f9
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
new file mode 100755
index 0000000..412e7ed
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
new file mode 100755
index 0000000..8dec441
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
new file mode 100755
index 0000000..79e9046
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll b/Knots/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll
new file mode 100755
index 0000000..f31ab49
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100755
index 0000000..655811a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
new file mode 100755
index 0000000..b6bcea3
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100755
index 0000000..2da8c2d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
new file mode 100755
index 0000000..c10adc4
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
new file mode 100755
index 0000000..f4e70e9
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
new file mode 100755
index 0000000..077b1b6
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100755
index 0000000..dffb785
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100755
index 0000000..c54fb4a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
new file mode 100755
index 0000000..bd71a2b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
new file mode 100755
index 0000000..8905537
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
new file mode 100755
index 0000000..fd635c0
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
new file mode 100755
index 0000000..edfa0fe
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll
new file mode 100755
index 0000000..a1507d2
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100755
index 0000000..5306e22
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
new file mode 100755
index 0000000..35905b6
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
new file mode 100755
index 0000000..65716c1
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
new file mode 100755
index 0000000..1d67ecf
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll b/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
new file mode 100755
index 0000000..9a7cadb
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.dll b/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.dll
new file mode 100755
index 0000000..73873e5
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100755
index 0000000..dfcb632
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
new file mode 100755
index 0000000..30b9c05
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
new file mode 100755
index 0000000..ce60b3c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
new file mode 100755
index 0000000..57a9536
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
new file mode 100755
index 0000000..9fd9ebf
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
new file mode 100755
index 0000000..da12e5f
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.OpenApi.dll b/Knots/bin/Debug/net8.0/Microsoft.OpenApi.dll
new file mode 100755
index 0000000..1e0998d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.OpenApi.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll b/Knots/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
new file mode 100755
index 0000000..ddeaa86
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll differ
diff --git a/Knots/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/Knots/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
new file mode 100755
index 0000000..3ab5850
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll differ
diff --git a/Knots/bin/Debug/net8.0/Mono.TextTemplating.dll b/Knots/bin/Debug/net8.0/Mono.TextTemplating.dll
new file mode 100755
index 0000000..d5a4b3c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Mono.TextTemplating.dll differ
diff --git a/Knots/bin/Debug/net8.0/NJsonSchema.Annotations.dll b/Knots/bin/Debug/net8.0/NJsonSchema.Annotations.dll
new file mode 100755
index 0000000..f880927
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NJsonSchema.Annotations.dll differ
diff --git a/Knots/bin/Debug/net8.0/NJsonSchema.NewtonsoftJson.dll b/Knots/bin/Debug/net8.0/NJsonSchema.NewtonsoftJson.dll
new file mode 100755
index 0000000..e053b58
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NJsonSchema.NewtonsoftJson.dll differ
diff --git a/Knots/bin/Debug/net8.0/NJsonSchema.Yaml.dll b/Knots/bin/Debug/net8.0/NJsonSchema.Yaml.dll
new file mode 100755
index 0000000..15975f9
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NJsonSchema.Yaml.dll differ
diff --git a/Knots/bin/Debug/net8.0/NJsonSchema.dll b/Knots/bin/Debug/net8.0/NJsonSchema.dll
new file mode 100755
index 0000000..da57e63
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NJsonSchema.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.Annotations.dll b/Knots/bin/Debug/net8.0/NSwag.Annotations.dll
new file mode 100755
index 0000000..382d87b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.Annotations.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.AspNetCore.dll b/Knots/bin/Debug/net8.0/NSwag.AspNetCore.dll
new file mode 100755
index 0000000..4ab1a50
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.AspNetCore.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.Core.Yaml.dll b/Knots/bin/Debug/net8.0/NSwag.Core.Yaml.dll
new file mode 100755
index 0000000..8b36fde
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.Core.Yaml.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.Core.dll b/Knots/bin/Debug/net8.0/NSwag.Core.dll
new file mode 100755
index 0000000..32d8ec1
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.Core.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.Generation.AspNetCore.dll b/Knots/bin/Debug/net8.0/NSwag.Generation.AspNetCore.dll
new file mode 100755
index 0000000..f7702ba
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.Generation.AspNetCore.dll differ
diff --git a/Knots/bin/Debug/net8.0/NSwag.Generation.dll b/Knots/bin/Debug/net8.0/NSwag.Generation.dll
new file mode 100755
index 0000000..488bf16
Binary files /dev/null and b/Knots/bin/Debug/net8.0/NSwag.Generation.dll differ
diff --git a/Knots/bin/Debug/net8.0/Namotion.Reflection.dll b/Knots/bin/Debug/net8.0/Namotion.Reflection.dll
new file mode 100755
index 0000000..cb1edae
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Namotion.Reflection.dll differ
diff --git a/Knots/bin/Debug/net8.0/Newtonsoft.Json.dll b/Knots/bin/Debug/net8.0/Newtonsoft.Json.dll
new file mode 100755
index 0000000..d035c38
Binary files /dev/null and b/Knots/bin/Debug/net8.0/Newtonsoft.Json.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.ClientModel.dll b/Knots/bin/Debug/net8.0/System.ClientModel.dll
new file mode 100755
index 0000000..00a3380
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.ClientModel.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.CodeDom.dll b/Knots/bin/Debug/net8.0/System.CodeDom.dll
new file mode 100755
index 0000000..3128b6a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.CodeDom.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/Knots/bin/Debug/net8.0/System.Composition.AttributedModel.dll
new file mode 100755
index 0000000..d37283b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Composition.AttributedModel.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Composition.Convention.dll b/Knots/bin/Debug/net8.0/System.Composition.Convention.dll
new file mode 100755
index 0000000..b6fa4ab
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Composition.Convention.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Composition.Hosting.dll b/Knots/bin/Debug/net8.0/System.Composition.Hosting.dll
new file mode 100755
index 0000000..c67f1c0
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Composition.Hosting.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Composition.Runtime.dll b/Knots/bin/Debug/net8.0/System.Composition.Runtime.dll
new file mode 100755
index 0000000..2a4b38c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Composition.Runtime.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Composition.TypedParts.dll b/Knots/bin/Debug/net8.0/System.Composition.TypedParts.dll
new file mode 100755
index 0000000..7c0c780
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Composition.TypedParts.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll b/Knots/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
new file mode 100755
index 0000000..14f8ef6
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll b/Knots/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll
new file mode 100755
index 0000000..22a7c9b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Drawing.Common.dll b/Knots/bin/Debug/net8.0/System.Drawing.Common.dll
new file mode 100755
index 0000000..be6915e
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Drawing.Common.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/Knots/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
new file mode 100755
index 0000000..2311025
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Memory.Data.dll b/Knots/bin/Debug/net8.0/System.Memory.Data.dll
new file mode 100755
index 0000000..6f2a3e0
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Memory.Data.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Runtime.Caching.dll b/Knots/bin/Debug/net8.0/System.Runtime.Caching.dll
new file mode 100755
index 0000000..14826eb
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Runtime.Caching.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/Knots/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100755
index 0000000..1ba8770
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Security.Permissions.dll b/Knots/bin/Debug/net8.0/System.Security.Permissions.dll
new file mode 100755
index 0000000..39dd4df
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Security.Permissions.dll differ
diff --git a/Knots/bin/Debug/net8.0/System.Windows.Extensions.dll b/Knots/bin/Debug/net8.0/System.Windows.Extensions.dll
new file mode 100755
index 0000000..c3e8844
Binary files /dev/null and b/Knots/bin/Debug/net8.0/System.Windows.Extensions.dll differ
diff --git a/Knots/bin/Debug/net8.0/YamlDotNet.dll b/Knots/bin/Debug/net8.0/YamlDotNet.dll
new file mode 100755
index 0000000..07454d5
Binary files /dev/null and b/Knots/bin/Debug/net8.0/YamlDotNet.dll differ
diff --git a/Knots/bin/Debug/net8.0/appsettings.Development.json b/Knots/bin/Debug/net8.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/Knots/bin/Debug/net8.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/Knots/bin/Debug/net8.0/appsettings.json b/Knots/bin/Debug/net8.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/Knots/bin/Debug/net8.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..b08ba21
Binary files /dev/null and b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..eba2a5a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..ff203e1
Binary files /dev/null and b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..fe89036
Binary files /dev/null and b/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..3dda417
Binary files /dev/null and b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..4d3bd0a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..c41bb1f
Binary files /dev/null and b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..05845f2
Binary files /dev/null and b/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..1e5038d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..456ac85
Binary files /dev/null and b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..7bb3187
Binary files /dev/null and b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..01edef3
Binary files /dev/null and b/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..de36d31
Binary files /dev/null and b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..71d6443
Binary files /dev/null and b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..23107b9
Binary files /dev/null and b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..291cf9b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..ef0d337
Binary files /dev/null and b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..f266330
Binary files /dev/null and b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..6affe5c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..263bd04
Binary files /dev/null and b/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..a94da35
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..c94e8e6
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..6e0e837
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..212267a
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..1fae94d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..b2e573c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..fdbe6ff
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..5fee24c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..9533b36
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..fa25298
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..1297d58
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..8af36a3
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..197797b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..0fd342c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..c09c2ab
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..d6eaab6
Binary files /dev/null and b/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..ecfe483
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..e9133a5
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..baa7776
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..74714d8
Binary files /dev/null and b/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
new file mode 100755
index 0000000..c7b9d3f
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
new file mode 100755
index 0000000..9e26473
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/Knots/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100755
index 0000000..bbb6df3
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/Knots/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100755
index 0000000..fdd773d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/Knots/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100755
index 0000000..d807f4c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/Knots/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100755
index 0000000..b6dab4e
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
new file mode 100755
index 0000000..3540360
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
new file mode 100755
index 0000000..66af198
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
new file mode 100755
index 0000000..7c9e87b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
new file mode 100755
index 0000000..bdca76d
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100755
index 0000000..332dbfa
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll
new file mode 100755
index 0000000..69f0d1b
Binary files /dev/null and b/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ
diff --git a/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..2fbf86e
Binary files /dev/null and b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..4c57b04
Binary files /dev/null and b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..b551e37
Binary files /dev/null and b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..8758fff
Binary files /dev/null and b/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..de4fe51
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..67b261c
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..c6b8d86
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..a14ec60
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100755
index 0000000..2d39791
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100755
index 0000000..86802cf
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100755
index 0000000..691a8fa
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
new file mode 100755
index 0000000..e8e4ee0
Binary files /dev/null and b/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/Knots/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Knots/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs b/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs
new file mode 100644
index 0000000..cfdf90a
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Knots")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+db76d50079bd8ba155bd61dd1e6de2e36e26ec1b")]
+[assembly: System.Reflection.AssemblyProductAttribute("Knots")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Knots")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache b/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..ed20e17
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+779fa9ee144195dcfe3057aa46e3c8c1c55ddffa9229c6d8635ec11d69b98c0b
diff --git a/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig b/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..b85789e
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,19 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Knots
+build_property.RootNamespace = Knots
+build_property.ProjectDir = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 8.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots
+build_property._RazorSourceGeneratorDebug =
diff --git a/Knots/obj/Debug/net8.0/Knots.GlobalUsings.g.cs b/Knots/obj/Debug/net8.0/Knots.GlobalUsings.g.cs
new file mode 100644
index 0000000..025530a
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+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;
diff --git a/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cache b/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cs b/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..93130de
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,20 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FastEndpoints")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FastEndpoints.Swagger")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("NSwag.AspNetCore")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("NSwag.Generation.AspNetCore")]
+
+// Généré par la classe MSBuild WriteCodeFragment.
+
diff --git a/Knots/obj/Debug/net8.0/Knots.assets.cache b/Knots/obj/Debug/net8.0/Knots.assets.cache
new file mode 100644
index 0000000..128d04d
Binary files /dev/null and b/Knots/obj/Debug/net8.0/Knots.assets.cache differ
diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache b/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..05cce69
Binary files /dev/null and b/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache differ
diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache b/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..48884fc
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+5b8b152649e71ab820604f710301a89982ad8186b0ea1461de7b451e817c32a7
diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt b/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e51055d
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt
@@ -0,0 +1,168 @@
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cs
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.MvcApplicationPartsAssemblyInfo.cache
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/appsettings.Development.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/appsettings.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Knots
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Knots.deps.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Knots.runtimeconfig.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Knots.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Knots.pdb
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Azure.Core.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Azure.Identity.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.Attributes.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.Core.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.JobQueues.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.Messaging.Core.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FastEndpoints.Swagger.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/FluentValidation.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Humanizer.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.OpenApi.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Mono.TextTemplating.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Namotion.Reflection.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/Newtonsoft.Json.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NJsonSchema.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NJsonSchema.Annotations.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NJsonSchema.NewtonsoftJson.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NJsonSchema.Yaml.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.Annotations.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.AspNetCore.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.Core.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.Core.Yaml.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.Generation.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/NSwag.Generation.AspNetCore.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.ClientModel.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.CodeDom.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Composition.AttributedModel.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Composition.Convention.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Composition.Hosting.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Composition.Runtime.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Composition.TypedParts.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Drawing.Common.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Memory.Data.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Runtime.Caching.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Security.Permissions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/System.Windows.Extensions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/YamlDotNet.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets.build.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets.development.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets/msbuild.Knots.Microsoft.AspNetCore.StaticWebAssets.props
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets/msbuild.build.Knots.props
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Knots.props
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Knots.props
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/staticwebassets.pack.json
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/scopedcss/bundle/Knots.styles.css
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.csproj.Up2Date
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/refint/Knots.dll
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.pdb
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.genruntimeconfig.cache
+/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/ref/Knots.dll
diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.Up2Date b/Knots/obj/Debug/net8.0/Knots.csproj.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/Knots/obj/Debug/net8.0/Knots.dll b/Knots/obj/Debug/net8.0/Knots.dll
new file mode 100644
index 0000000..a7f6cb1
Binary files /dev/null and b/Knots/obj/Debug/net8.0/Knots.dll differ
diff --git a/Knots/obj/Debug/net8.0/Knots.genruntimeconfig.cache b/Knots/obj/Debug/net8.0/Knots.genruntimeconfig.cache
new file mode 100644
index 0000000..19e1034
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/Knots.genruntimeconfig.cache
@@ -0,0 +1 @@
+6e5777d041c0b41bcf10ec6ec712ecf1738b5af101ae6bc5ba969c11868edc63
diff --git a/Knots/obj/Debug/net8.0/Knots.pdb b/Knots/obj/Debug/net8.0/Knots.pdb
new file mode 100644
index 0000000..9ab75ac
Binary files /dev/null and b/Knots/obj/Debug/net8.0/Knots.pdb differ
diff --git a/Knots/obj/Debug/net8.0/SwaggerExportPathInitializer.g.cs b/Knots/obj/Debug/net8.0/SwaggerExportPathInitializer.g.cs
new file mode 100644
index 0000000..0808e58
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/SwaggerExportPathInitializer.g.cs
@@ -0,0 +1,7 @@
+using System.Runtime.CompilerServices;
+namespace FastEndpoints.Swagger;
+internal static class SwaggerExportPathInitializer
+{
+ [ModuleInitializer]
+ internal static void Initialize() => DocumentOptions.SwaggerExportPath = "wwwroot/openapi";
+}
diff --git a/Knots/obj/Debug/net8.0/apphost b/Knots/obj/Debug/net8.0/apphost
new file mode 100755
index 0000000..616fa01
Binary files /dev/null and b/Knots/obj/Debug/net8.0/apphost differ
diff --git a/Knots/obj/Debug/net8.0/ref/Knots.dll b/Knots/obj/Debug/net8.0/ref/Knots.dll
new file mode 100644
index 0000000..b3546b5
Binary files /dev/null and b/Knots/obj/Debug/net8.0/ref/Knots.dll differ
diff --git a/Knots/obj/Debug/net8.0/refint/Knots.dll b/Knots/obj/Debug/net8.0/refint/Knots.dll
new file mode 100644
index 0000000..b3546b5
Binary files /dev/null and b/Knots/obj/Debug/net8.0/refint/Knots.dll differ
diff --git a/Knots/obj/Debug/net8.0/staticwebassets.build.json b/Knots/obj/Debug/net8.0/staticwebassets.build.json
new file mode 100644
index 0000000..25490e1
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/staticwebassets.build.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "Hash": "+nE4IDeJd55Wel7SElROqXHGHu0G30ht1J+kUy01YEM=",
+ "Source": "Knots",
+ "BasePath": "_content/Knots",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": []
+}
\ No newline at end of file
diff --git a/Knots/obj/Debug/net8.0/staticwebassets/msbuild.build.Knots.props b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.build.Knots.props
new file mode 100644
index 0000000..5a6032a
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.build.Knots.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Knots.props b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Knots.props
new file mode 100644
index 0000000..e625f36
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Knots.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Knots.props b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Knots.props
new file mode 100644
index 0000000..d35e72f
--- /dev/null
+++ b/Knots/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Knots.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs b/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs
index ef75dd3..cfdf90a 100644
--- a/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs
+++ b/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Knots")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+747cb84f883d7a7c2bec1f2b214de7b1218908ae")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+db76d50079bd8ba155bd61dd1e6de2e36e26ec1b")]
[assembly: System.Reflection.AssemblyProductAttribute("Knots")]
[assembly: System.Reflection.AssemblyTitleAttribute("Knots")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache b/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache
index 3f70543..ed20e17 100644
--- a/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache
+++ b/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache
@@ -1 +1 @@
-24ed5b64fb7def1bc849d59ad0bbd7ac0548dd62d095101b06edd438ba621217
+779fa9ee144195dcfe3057aa46e3c8c1c55ddffa9229c6d8635ec11d69b98c0b
diff --git a/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig b/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
index 34ced87..df7b57e 100644
--- a/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,19 +1,11 @@
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 = Knots
build_property.RootNamespace = Knots
diff --git a/Knots/obj/Debug/net9.0/Knots.assets.cache b/Knots/obj/Debug/net9.0/Knots.assets.cache
index 9dae977..8d92f52 100644
Binary files a/Knots/obj/Debug/net9.0/Knots.assets.cache and b/Knots/obj/Debug/net9.0/Knots.assets.cache differ
diff --git a/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache b/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache
index b3aaecf..c06c637 100644
Binary files a/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache and b/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache differ
diff --git a/Knots/obj/Knots.csproj.EntityFrameworkCore.targets b/Knots/obj/Knots.csproj.EntityFrameworkCore.targets
new file mode 100644
index 0000000..7d6485d
--- /dev/null
+++ b/Knots/obj/Knots.csproj.EntityFrameworkCore.targets
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Knots/obj/Knots.csproj.nuget.dgspec.json b/Knots/obj/Knots.csproj.nuget.dgspec.json
index 27bdf58..1427b6f 100644
--- a/Knots/obj/Knots.csproj.nuget.dgspec.json
+++ b/Knots/obj/Knots.csproj.nuget.dgspec.json
@@ -17,15 +17,15 @@
"/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
- "net9.0"
+ "net8.0"
],
"sources": {
"/usr/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
+ "net8.0": {
+ "targetAlias": "net8.0",
"projectReferences": {}
}
},
@@ -41,8 +41,8 @@
}
},
"frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
+ "net8.0": {
+ "targetAlias": "net8.0",
"dependencies": {
"FastEndpoints": {
"target": "Package",
@@ -54,21 +54,21 @@
},
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
- "version": "[9.0.8, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore.Design": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore.SqlServer": {
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
}
},
"imports": [
diff --git a/Knots/obj/Knots.csproj.nuget.g.props b/Knots/obj/Knots.csproj.nuget.g.props
index 208ec6e..25c5688 100644
--- a/Knots/obj/Knots.csproj.nuget.g.props
+++ b/Knots/obj/Knots.csproj.nuget.g.props
@@ -13,11 +13,10 @@
-
-
-
+
+
- /home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4
+ /home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
\ No newline at end of file
diff --git a/Knots/obj/Knots.csproj.nuget.g.targets b/Knots/obj/Knots.csproj.nuget.g.targets
index 3014802..ba8eb80 100644
--- a/Knots/obj/Knots.csproj.nuget.g.targets
+++ b/Knots/obj/Knots.csproj.nuget.g.targets
@@ -1,11 +1,8 @@
-
-
-
\ No newline at end of file
diff --git a/Knots/obj/project.assets.json b/Knots/obj/project.assets.json
index 6e53ee6..c7a8639 100644
--- a/Knots/obj/project.assets.json
+++ b/Knots/obj/project.assets.json
@@ -1,7 +1,7 @@
{
"version": 3,
"targets": {
- "net9.0": {
+ "net8.0": {
"Azure.Core/1.38.0": {
"type": "package",
"dependencies": {
@@ -56,12 +56,12 @@
"FluentValidation": "12.1.1"
},
"compile": {
- "lib/net9.0/FastEndpoints.dll": {
+ "lib/net8.0/FastEndpoints.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.dll": {
+ "lib/net8.0/FastEndpoints.dll": {
"related": ".xml"
}
},
@@ -72,15 +72,15 @@
"FastEndpoints.Attributes/8.0.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.13"
+ "Microsoft.Extensions.Primitives": "8.0.0"
},
"compile": {
- "lib/net9.0/FastEndpoints.Attributes.dll": {
+ "lib/net8.0/FastEndpoints.Attributes.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.Attributes.dll": {
+ "lib/net8.0/FastEndpoints.Attributes.dll": {
"related": ".xml"
}
}
@@ -92,12 +92,12 @@
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
},
"compile": {
- "lib/net9.0/FastEndpoints.Core.dll": {
+ "lib/net8.0/FastEndpoints.Core.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.Core.dll": {
+ "lib/net8.0/FastEndpoints.Core.dll": {
"related": ".xml"
}
}
@@ -110,12 +110,12 @@
"Microsoft.Extensions.Hosting.Abstractions": "10.0.3"
},
"compile": {
- "lib/net9.0/FastEndpoints.JobQueues.dll": {
+ "lib/net8.0/FastEndpoints.JobQueues.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.JobQueues.dll": {
+ "lib/net8.0/FastEndpoints.JobQueues.dll": {
"related": ".xml"
}
}
@@ -128,12 +128,12 @@
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
},
"compile": {
- "lib/net9.0/FastEndpoints.Messaging.dll": {
+ "lib/net8.0/FastEndpoints.Messaging.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.Messaging.dll": {
+ "lib/net8.0/FastEndpoints.Messaging.dll": {
"related": ".xml"
}
}
@@ -141,12 +141,12 @@
"FastEndpoints.Messaging.Core/8.0.1": {
"type": "package",
"compile": {
- "lib/net9.0/FastEndpoints.Messaging.Core.dll": {
+ "lib/net8.0/FastEndpoints.Messaging.Core.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.Messaging.Core.dll": {
+ "lib/net8.0/FastEndpoints.Messaging.Core.dll": {
"related": ".xml"
}
}
@@ -158,12 +158,12 @@
"NSwag.AspNetCore": "14.6.3"
},
"compile": {
- "lib/net9.0/FastEndpoints.Swagger.dll": {
+ "lib/net8.0/FastEndpoints.Swagger.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/FastEndpoints.Swagger.dll": {
+ "lib/net8.0/FastEndpoints.Swagger.dll": {
"related": ".xml"
}
},
@@ -230,18 +230,18 @@
}
}
},
- "Microsoft.AspNetCore.OpenApi/9.0.8": {
+ "Microsoft.AspNetCore.OpenApi/8.0.25": {
"type": "package",
"dependencies": {
- "Microsoft.OpenApi": "1.6.17"
+ "Microsoft.OpenApi": "1.4.3"
},
"compile": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
"related": ".xml"
}
},
@@ -249,7 +249,7 @@
"Microsoft.AspNetCore.App"
]
},
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
"type": "package",
"compile": {
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
@@ -262,336 +262,248 @@
}
}
},
- "Microsoft.Build.Framework/17.8.43": {
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
"type": "package",
- "compile": {
- "ref/net8.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Build.Locator/1.7.8": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/Microsoft.Build.Locator.dll": {}
- },
"build": {
"build/_._": {}
}
},
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {},
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
"type": "package",
"dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
- "System.Collections.Immutable": "7.0.0",
- "System.Reflection.Metadata": "7.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
+ "System.Collections.Immutable": "6.0.0",
+ "System.Reflection.Metadata": "6.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/netcoreapp3.1/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.dll": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
"locale": "cs"
},
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
"locale": "de"
},
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
"locale": "es"
},
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "fr"
},
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
"locale": "it"
},
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ja"
},
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ko"
},
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pl"
},
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pt-BR"
},
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ru"
},
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "tr"
},
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hans"
},
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
"type": "package",
"dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.8.0]"
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/netcoreapp3.1/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "cs"
},
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "de"
},
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "es"
},
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "fr"
},
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "it"
},
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ja"
},
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ko"
},
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pl"
},
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pt-BR"
},
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ru"
},
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "tr"
},
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hans"
},
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.8.0]",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]"
+ "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/netcoreapp3.1/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "cs"
},
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "de"
},
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "es"
},
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "fr"
},
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "it"
},
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ja"
},
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ko"
},
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "pl"
},
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "pt-BR"
},
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ru"
},
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "tr"
},
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "zh-Hans"
},
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "System.Composition": "7.0.0",
- "System.IO.Pipelines": "7.0.0",
- "System.Threading.Channels": "7.0.0"
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]",
+ "System.Composition": "6.0.0",
+ "System.IO.Pipelines": "6.0.3",
+ "System.Threading.Channels": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/netcoreapp3.1/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "cs"
},
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "de"
},
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "es"
},
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "fr"
},
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "it"
},
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ja"
},
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ko"
},
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "pl"
},
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "pt-BR"
},
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ru"
},
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "tr"
},
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "zh-Hans"
},
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "16.10.0",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]",
- "System.Text.Json": "7.0.3"
- },
- "compile": {
- "lib/net7.0/_._": {
- "related": ".pdb;.runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {
- "related": ".pdb;.runtimeconfig.json;.xml"
- },
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
- "related": ".BuildHost.pdb;.BuildHost.runtimeconfig.json;.BuildHost.xml;.pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "zh-Hant"
}
}
@@ -605,11 +517,11 @@
"lib/netcoreapp2.0/_._": {}
}
},
- "Microsoft.Data.SqlClient/5.1.6": {
+ "Microsoft.Data.SqlClient/5.1.7": {
"type": "package",
"dependencies": {
"Azure.Identity": "1.11.4",
- "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
+ "Microsoft.Data.SqlClient.SNI.runtime": "5.1.2",
"Microsoft.Identity.Client": "4.61.3",
"Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
@@ -620,7 +532,7 @@
"System.Security.Cryptography.Cng": "5.0.0",
"System.Security.Principal.Windows": "5.0.0",
"System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Encodings.Web": "6.0.0"
+ "System.Text.Encodings.Web": "6.0.1"
},
"compile": {
"ref/net6.0/Microsoft.Data.SqlClient.dll": {
@@ -643,7 +555,7 @@
}
}
},
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
+ "Microsoft.Data.SqlClient.SNI.runtime/5.1.2": {
"type": "package",
"runtimeTargets": {
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
@@ -664,13 +576,13 @@
}
}
},
- "Microsoft.EntityFrameworkCore/9.0.14": {
+ "Microsoft.EntityFrameworkCore/8.0.25": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "9.0.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "9.0.14",
- "Microsoft.Extensions.Caching.Memory": "9.0.14",
- "Microsoft.Extensions.Logging": "9.0.14"
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.25",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.25",
+ "Microsoft.Extensions.Caching.Memory": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.1"
},
"compile": {
"lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
@@ -686,7 +598,7 @@
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
}
},
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.14": {
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.25": {
"type": "package",
"compile": {
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
@@ -699,25 +611,23 @@
}
}
},
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.14": {
- "type": "package"
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.25": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
},
- "Microsoft.EntityFrameworkCore.Design/9.0.14": {
+ "Microsoft.EntityFrameworkCore.Design/8.0.25": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.Build.Framework": "17.8.43",
- "Microsoft.Build.Locator": "1.7.8",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.14",
- "Microsoft.Extensions.Caching.Memory": "9.0.14",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.14",
- "Microsoft.Extensions.DependencyModel": "9.0.14",
- "Microsoft.Extensions.Logging": "9.0.14",
- "Mono.TextTemplating": "3.0.0",
- "System.Text.Json": "9.0.14"
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.25",
+ "Microsoft.Extensions.DependencyModel": "8.0.2",
+ "Mono.TextTemplating": "2.2.1"
},
"compile": {
"lib/net8.0/_._": {
@@ -733,13 +643,11 @@
"build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/9.0.14": {
+ "Microsoft.EntityFrameworkCore.Relational/8.0.25": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.14",
- "Microsoft.Extensions.Caching.Memory": "9.0.14",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.14",
- "Microsoft.Extensions.Logging": "9.0.14"
+ "Microsoft.EntityFrameworkCore": "8.0.25",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
},
"compile": {
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
@@ -752,16 +660,12 @@
}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.14": {
+ "Microsoft.EntityFrameworkCore.SqlServer/8.0.25": {
"type": "package",
"dependencies": {
- "Microsoft.Data.SqlClient": "5.1.6",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.14",
- "Microsoft.Extensions.Caching.Memory": "9.0.14",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.14",
- "Microsoft.Extensions.Logging": "9.0.14",
- "System.Formats.Asn1": "9.0.14",
- "System.Text.Json": "9.0.14"
+ "Microsoft.Data.SqlClient": "5.1.7",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.25",
+ "System.Formats.Asn1": "8.0.2"
},
"compile": {
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
@@ -774,46 +678,46 @@
}
}
},
- "Microsoft.Extensions.Caching.Abstractions/9.0.14": {
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.14"
+ "Microsoft.Extensions.Primitives": "8.0.0"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
- "Microsoft.Extensions.Caching.Memory/9.0.14": {
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "9.0.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.14",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.14",
- "Microsoft.Extensions.Options": "9.0.14",
- "Microsoft.Extensions.Primitives": "9.0.14"
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2",
+ "Microsoft.Extensions.Primitives": "8.0.0"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
@@ -822,12 +726,12 @@
"Microsoft.Extensions.Primitives": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"related": ".xml"
}
},
@@ -835,34 +739,34 @@
"buildTransitive/net8.0/_._": {}
}
},
- "Microsoft.Extensions.DependencyInjection/9.0.14": {
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.14"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
"type": "package",
"compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"related": ".xml"
}
},
@@ -870,20 +774,20 @@
"buildTransitive/net8.0/_._": {}
}
},
- "Microsoft.Extensions.DependencyModel/9.0.14": {
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
"type": "package",
"compile": {
- "lib/net9.0/_._": {
+ "lib/net8.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
@@ -894,12 +798,12 @@
"System.Diagnostics.DiagnosticSource": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
"related": ".xml"
}
},
@@ -913,12 +817,12 @@
"Microsoft.Extensions.Primitives": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"related": ".xml"
}
},
@@ -936,12 +840,12 @@
"Microsoft.Extensions.Logging.Abstractions": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
"related": ".xml"
}
},
@@ -949,25 +853,25 @@
"buildTransitive/net8.0/_._": {}
}
},
- "Microsoft.Extensions.Logging/9.0.14": {
+ "Microsoft.Extensions.Logging/8.0.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.14",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.14",
- "Microsoft.Extensions.Options": "9.0.14"
+ "Microsoft.Extensions.DependencyInjection": "8.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/10.0.3": {
@@ -977,12 +881,12 @@
"System.Diagnostics.DiagnosticSource": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"related": ".xml"
}
},
@@ -997,12 +901,12 @@
"Microsoft.Extensions.Primitives": "10.0.3"
},
"compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
"related": ".xml"
}
},
@@ -1013,12 +917,12 @@
"Microsoft.Extensions.Primitives/10.0.3": {
"type": "package",
"compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
"related": ".xml"
}
},
@@ -1178,7 +1082,7 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.OpenApi/1.6.17": {
+ "Microsoft.OpenApi/1.4.3": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
@@ -1226,19 +1130,16 @@
}
}
},
- "Mono.TextTemplating/3.0.0": {
+ "Mono.TextTemplating/2.2.1": {
"type": "package",
"dependencies": {
- "System.CodeDom": "6.0.0"
+ "System.CodeDom": "4.4.0"
},
"compile": {
- "lib/net6.0/_._": {}
+ "lib/netstandard2.0/_._": {}
},
"runtime": {
- "lib/net6.0/Mono.TextTemplating.dll": {}
- },
- "build": {
- "buildTransitive/Mono.TextTemplating.targets": {}
+ "lib/netstandard2.0/Mono.TextTemplating.dll": {}
}
},
"Namotion.Reflection/3.4.3": {
@@ -1358,12 +1259,12 @@
"Newtonsoft.Json": "13.0.3"
},
"compile": {
- "lib/net9.0/NSwag.AspNetCore.dll": {
+ "lib/net8.0/NSwag.AspNetCore.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/NSwag.AspNetCore.dll": {
+ "lib/net8.0/NSwag.AspNetCore.dll": {
"related": ".xml"
}
},
@@ -1438,12 +1339,12 @@
"Newtonsoft.Json": "13.0.3"
},
"compile": {
- "lib/net9.0/NSwag.Generation.AspNetCore.dll": {
+ "lib/net8.0/NSwag.Generation.AspNetCore.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/NSwag.Generation.AspNetCore.dll": {
+ "lib/net8.0/NSwag.Generation.AspNetCore.dll": {
"related": ".xml"
}
},
@@ -1468,15 +1369,29 @@
}
}
},
- "System.CodeDom/6.0.0": {
+ "System.CodeDom/4.4.0": {
"type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {}
+ }
+ },
+ "System.Collections.Immutable/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
"compile": {
"lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.CodeDom.dll": {
+ "lib/net6.0/System.Collections.Immutable.dll": {
"related": ".xml"
}
},
@@ -1484,130 +1399,108 @@
"buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Collections.Immutable/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition/7.0.0": {
+ "System.Composition/6.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Convention": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0",
- "System.Composition.TypedParts": "7.0.0"
- },
- "compile": {
- "lib/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Convention": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0",
+ "System.Composition.TypedParts": "6.0.0"
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Composition.AttributedModel/7.0.0": {
+ "System.Composition.AttributedModel/6.0.0": {
"type": "package",
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Composition.AttributedModel.dll": {
+ "lib/net6.0/System.Composition.AttributedModel.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Composition.Convention/7.0.0": {
+ "System.Composition.Convention/6.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "7.0.0"
+ "System.Composition.AttributedModel": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Composition.Convention.dll": {
+ "lib/net6.0/System.Composition.Convention.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Composition.Hosting/7.0.0": {
+ "System.Composition.Hosting/6.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.Runtime": "7.0.0"
+ "System.Composition.Runtime": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Composition.Hosting.dll": {
+ "lib/net6.0/System.Composition.Hosting.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Composition.Runtime/7.0.0": {
+ "System.Composition.Runtime/6.0.0": {
"type": "package",
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Composition.Runtime.dll": {
+ "lib/net6.0/System.Composition.Runtime.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
- "System.Composition.TypedParts/7.0.0": {
+ "System.Composition.TypedParts/6.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0"
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Composition.TypedParts.dll": {
+ "lib/net6.0/System.Composition.TypedParts.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Configuration.ConfigurationManager/6.0.1": {
@@ -1633,12 +1526,12 @@
"System.Diagnostics.DiagnosticSource/10.0.3": {
"type": "package",
"compile": {
- "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
+ "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/System.Diagnostics.DiagnosticSource.dll": {
+ "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
"related": ".xml"
}
},
@@ -1675,20 +1568,20 @@
}
}
},
- "System.Formats.Asn1/9.0.14": {
+ "System.Formats.Asn1/8.0.2": {
"type": "package",
"compile": {
- "lib/net9.0/_._": {
+ "lib/net8.0/System.Formats.Asn1.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/System.Formats.Asn1.dll": {
+ "lib/net8.0/System.Formats.Asn1.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net8.0/_._": {}
+ "buildTransitive/net6.0/_._": {}
}
},
"System.IdentityModel.Tokens.Jwt/6.35.0": {
@@ -1708,20 +1601,20 @@
}
}
},
- "System.IO.Pipelines/7.0.0": {
+ "System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.IO.Pipelines.dll": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Memory/4.5.4": {
@@ -1759,23 +1652,23 @@
"lib/netcoreapp2.0/_._": {}
}
},
- "System.Reflection.Metadata/7.0.0": {
+ "System.Reflection.Metadata/6.0.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "7.0.0"
+ "System.Collections.Immutable": "6.0.0"
},
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Reflection.Metadata.dll": {
+ "lib/net6.0/System.Reflection.Metadata.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Runtime/4.3.0": {
@@ -2000,36 +1893,33 @@
}
}
},
- "System.Text.Json/9.0.14": {
+ "System.Text.Json/4.7.2": {
"type": "package",
"compile": {
- "lib/net9.0/System.Text.Json.dll": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net9.0/System.Text.Json.dll": {
+ "lib/netcoreapp3.0/System.Text.Json.dll": {
"related": ".xml"
}
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
}
},
- "System.Threading.Channels/7.0.0": {
+ "System.Threading.Channels/6.0.0": {
"type": "package",
"compile": {
- "lib/net7.0/_._": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/System.Threading.Channels.dll": {
+ "lib/net6.0/System.Threading.Channels.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -2310,97 +2200,52 @@
"microsoft.aspnetcore.http.features.nuspec"
]
},
- "Microsoft.AspNetCore.OpenApi/9.0.8": {
- "sha512": "BwF9sQCKmvu93C/pmKxJjPhF5fFB23MEcgTsGL+7W3wKLYawS4lyFSL5/qh00IJzuADLf+1SmvxMaphbyZYqQQ==",
+ "Microsoft.AspNetCore.OpenApi/8.0.25": {
+ "sha512": "tdgVJejEelJ13udqJW+fHw9ZVHI8LjdeYrWdoD+nlsnKU4SMajpmx1sQEoqzb1tr9oWdD87agIkB5+x7VO3Lkw==",
"type": "package",
- "path": "microsoft.aspnetcore.openapi/9.0.8",
+ "path": "microsoft.aspnetcore.openapi/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll",
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml",
- "microsoft.aspnetcore.openapi.9.0.8.nupkg.sha512",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.8.0.25.nupkg.sha512",
"microsoft.aspnetcore.openapi.nuspec"
]
},
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
"type": "package",
- "path": "microsoft.bcl.asyncinterfaces/7.0.0",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
- "buildTransitive/net462/_._",
- "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
"microsoft.bcl.asyncinterfaces.nuspec",
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Build.Framework/17.8.43": {
- "sha512": "TA6fCbd9qFSyhIKcUn5BhDN3/JrqpspO9KYsZKUvHyQpQrHVdzy4Hk6egjjBP3T0L562TLZuHEzQwJziyRBEkw==",
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
"type": "package",
- "path": "microsoft.build.framework/17.8.43",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net472/Microsoft.Build.Framework.dll",
- "lib/net472/Microsoft.Build.Framework.pdb",
- "lib/net472/Microsoft.Build.Framework.xml",
- "lib/net8.0/Microsoft.Build.Framework.dll",
- "lib/net8.0/Microsoft.Build.Framework.pdb",
- "lib/net8.0/Microsoft.Build.Framework.xml",
- "microsoft.build.framework.17.8.43.nupkg.sha512",
- "microsoft.build.framework.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net472/Microsoft.Build.Framework.dll",
- "ref/net472/Microsoft.Build.Framework.xml",
- "ref/net8.0/Microsoft.Build.Framework.dll",
- "ref/net8.0/Microsoft.Build.Framework.xml",
- "ref/netstandard2.0/Microsoft.Build.Framework.dll",
- "ref/netstandard2.0/Microsoft.Build.Framework.xml"
- ]
- },
- "Microsoft.Build.Locator/1.7.8": {
- "sha512": "sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==",
- "type": "package",
- "path": "microsoft.build.locator/1.7.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "build/Microsoft.Build.Locator.props",
- "build/Microsoft.Build.Locator.targets",
- "lib/net46/Microsoft.Build.Locator.dll",
- "lib/net6.0/Microsoft.Build.Locator.dll",
- "microsoft.build.locator.1.7.8.nupkg.sha512",
- "microsoft.build.locator.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.4",
+ "path": "microsoft.codeanalysis.analyzers/3.3.3",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "ThirdPartyNotices.txt",
+ "ThirdPartyNotices.rtf",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
"analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
@@ -2431,508 +2276,158 @@
"analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props",
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets",
- "buildTransitive/config/analysislevel_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_all.globalconfig",
- "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_default.globalconfig",
- "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_none.globalconfig",
- "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig",
+ "build/Microsoft.CodeAnalysis.Analyzers.props",
+ "build/Microsoft.CodeAnalysis.Analyzers.targets",
+ "build/config/analysislevel_2_9_8_all.editorconfig",
+ "build/config/analysislevel_2_9_8_default.editorconfig",
+ "build/config/analysislevel_2_9_8_minimum.editorconfig",
+ "build/config/analysislevel_2_9_8_none.editorconfig",
+ "build/config/analysislevel_2_9_8_recommended.editorconfig",
+ "build/config/analysislevel_3_3_all.editorconfig",
+ "build/config/analysislevel_3_3_default.editorconfig",
+ "build/config/analysislevel_3_3_minimum.editorconfig",
+ "build/config/analysislevel_3_3_none.editorconfig",
+ "build/config/analysislevel_3_3_recommended.editorconfig",
+ "build/config/analysislevel_3_all.editorconfig",
+ "build/config/analysislevel_3_default.editorconfig",
+ "build/config/analysislevel_3_minimum.editorconfig",
+ "build/config/analysislevel_3_none.editorconfig",
+ "build/config/analysislevel_3_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_all.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_default.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_none.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_3_all.editorconfig",
+ "build/config/analysislevelcorrectness_3_default.editorconfig",
+ "build/config/analysislevelcorrectness_3_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_3_none.editorconfig",
+ "build/config/analysislevelcorrectness_3_recommended.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_all.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_default.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_none.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
+ "build/config/analysislevellibrary_3_3_all.editorconfig",
+ "build/config/analysislevellibrary_3_3_default.editorconfig",
+ "build/config/analysislevellibrary_3_3_minimum.editorconfig",
+ "build/config/analysislevellibrary_3_3_none.editorconfig",
+ "build/config/analysislevellibrary_3_3_recommended.editorconfig",
+ "build/config/analysislevellibrary_3_all.editorconfig",
+ "build/config/analysislevellibrary_3_default.editorconfig",
+ "build/config/analysislevellibrary_3_minimum.editorconfig",
+ "build/config/analysislevellibrary_3_none.editorconfig",
+ "build/config/analysislevellibrary_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
"documentation/Analyzer Configuration.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
@@ -2961,7 +2456,7 @@
"editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
"editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
"editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
+ "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
"microsoft.codeanalysis.analyzers.nuspec",
"rulesets/AllRulesDefault.ruleset",
"rulesets/AllRulesDisabled.ruleset",
@@ -2992,47 +2487,31 @@
"tools/uninstall.ps1"
]
},
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
"type": "package",
- "path": "microsoft.codeanalysis.common/4.8.0",
+ "path": "microsoft.codeanalysis.common/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
@@ -3049,51 +2528,35 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.4.8.0.nupkg.sha512",
+ "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
"microsoft.codeanalysis.common.nuspec"
]
},
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
"type": "package",
- "path": "microsoft.codeanalysis.csharp/4.8.0",
+ "path": "microsoft.codeanalysis.csharp/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
@@ -3110,51 +2573,35 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.nuspec"
]
},
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
"type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
@@ -3171,51 +2618,35 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.workspaces.nuspec"
]
},
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
"type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
+ "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
@@ -3232,82 +2663,10 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512",
+ "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
"microsoft.codeanalysis.workspaces.common.nuspec"
]
},
- "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": {
- "sha512": "IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
- "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
- "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll",
- "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.msbuild.nuspec"
- ]
- },
"Microsoft.CSharp/4.5.0": {
"sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"type": "package",
@@ -3376,10 +2735,10 @@
"version.txt"
]
},
- "Microsoft.Data.SqlClient/5.1.6": {
- "sha512": "+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==",
+ "Microsoft.Data.SqlClient/5.1.7": {
+ "sha512": "awBwR6pCRyiFqB5z1iu+eMaFmt986JWgaA1+LR+vsdIRBgeBI5X8f3u+ZPnTqlHUwfTugl6ptIObzalWeAPugQ==",
"type": "package",
- "path": "microsoft.data.sqlclient/5.1.6",
+ "path": "microsoft.data.sqlclient/5.1.7",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3406,7 +2765,7 @@
"lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
"lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
"lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "microsoft.data.sqlclient.5.1.6.nupkg.sha512",
+ "microsoft.data.sqlclient.5.1.7.nupkg.sha512",
"microsoft.data.sqlclient.nuspec",
"ref/net462/Microsoft.Data.SqlClient.dll",
"ref/net462/Microsoft.Data.SqlClient.pdb",
@@ -3436,16 +2795,16 @@
"runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
]
},
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
- "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
+ "Microsoft.Data.SqlClient.SNI.runtime/5.1.2": {
+ "sha512": "Q3mjL/oG7rYKDI1D34HLxf0FvhEAwOGzbiDfwv9/HaGP9f9yNV8KeXAS6ehxOaoBNqBRM6sTA19f9XVtf8rvLA==",
"type": "package",
- "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
+ "path": "microsoft.data.sqlclient.sni.runtime/5.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"dotnet.png",
- "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
+ "microsoft.data.sqlclient.sni.runtime.5.1.2.nupkg.sha512",
"microsoft.data.sqlclient.sni.runtime.nuspec",
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
@@ -3453,10 +2812,10 @@
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
]
},
- "Microsoft.EntityFrameworkCore/9.0.14": {
- "sha512": "Bxw540n++gVwFbrh3NyxwV4ZwPonhbBmhiq7JdDyBUibLAPGvqvsu73Us3LGfRoLbQrhPEgu6cKSvQq+5ABAJA==",
+ "Microsoft.EntityFrameworkCore/8.0.25": {
+ "sha512": "1seNis+YnJwiQpwzBCQVWTlyfnlfwotQUkCC0MINwS6yt5Gco4XZ/xOz1fB5uwAWjO/TrDzL/sIMk2hXPxeHbg==",
"type": "package",
- "path": "microsoft.entityframeworkcore/9.0.14",
+ "path": "microsoft.entityframeworkcore/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3465,14 +2824,14 @@
"buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
"lib/net8.0/Microsoft.EntityFrameworkCore.dll",
"lib/net8.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.9.0.14.nupkg.sha512",
+ "microsoft.entityframeworkcore.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.14": {
- "sha512": "lU0DBe/uZ5hNW1G6tQcikcJhjmDE4eRjRQzaiFi41zxXUMndtZQaGGVNVWXeW6M9K6T212WnBA5cwydzBYmKNA==",
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.25": {
+ "sha512": "YGJD4/P34LsQetSH5R0J58nAWSFGn7BE11zThfCkILTW8wy+9/kwqM2P0ciHhuzlPzwApputDfQ5u35+fH6BGQ==",
"type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/9.0.14",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3480,28 +2839,29 @@
"PACKAGE.md",
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
"lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.9.0.14.nupkg.sha512",
+ "microsoft.entityframeworkcore.abstractions.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.abstractions.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.14": {
- "sha512": "u7j9NgArLjf3OzeXX1jx9K59Ytki0CfhMloXxons/cIhq/35QilP6R+NfPlQy/nMax+edeGRRfEg9hWFsjqsXA==",
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.25": {
+ "sha512": "jHtsaYPDBoNsIA085ZbqrZGidG+rnoZGJ/0JTL6QHR0XV4JLnLoJgPao7zVsqhEVJUnS7JOfVClr0UThAxoiuQ==",
"type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/9.0.14",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
"docs/PACKAGE.md",
- "microsoft.entityframeworkcore.analyzers.9.0.14.nupkg.sha512",
+ "lib/netstandard2.0/_._",
+ "microsoft.entityframeworkcore.analyzers.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.analyzers.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Design/9.0.14": {
- "sha512": "+7ojPX5p3NYCRPJoLSiimdmHpDpLH8S93XXnDKeFwRnD6GirJS2E0UxYnRZ3ovqtsIzsDHiRAkPl7N5XjM2BAw==",
+ "Microsoft.EntityFrameworkCore.Design/8.0.25": {
+ "sha512": "f/cgXiK0rJs95yE0A+7eYF29hW+P66frX1QVguM8rBhAooXFzeVT9WHPkEAkQbYXExpTRQk9B8JGPDfLs3ze5w==",
"type": "package",
- "path": "microsoft.entityframeworkcore.design/9.0.14",
+ "path": "microsoft.entityframeworkcore.design/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3510,14 +2870,14 @@
"build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
"lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
"lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.9.0.14.nupkg.sha512",
+ "microsoft.entityframeworkcore.design.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.design.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Relational/9.0.14": {
- "sha512": "R73NifQ3oiAEmvQokCrUtDaVMRO9UQXp52cpwosTZkAmpK2XtmJbHIrZRUjvLWkCzTlwjTDP27bH04PlyNeJoA==",
+ "Microsoft.EntityFrameworkCore.Relational/8.0.25": {
+ "sha512": "/6S+I5PvmlzDeLMCXZGCXmnUNiJdLyucUrnwkItNhNRZB8ftVYXdyM0omNwm3UDvRSQVMnb3e5s7+YusLvvYeg==",
"type": "package",
- "path": "microsoft.entityframeworkcore.relational/9.0.14",
+ "path": "microsoft.entityframeworkcore.relational/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3525,14 +2885,14 @@
"PACKAGE.md",
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.9.0.14.nupkg.sha512",
+ "microsoft.entityframeworkcore.relational.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.relational.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.14": {
- "sha512": "61dCO899upHGw+nMTU5GxsheExdhOxmi3E+dB6EwK7VYeh1VImCWJbRkPBRZ+VYChz6Vqi2KySkdZ6GuIBnLvQ==",
+ "Microsoft.EntityFrameworkCore.SqlServer/8.0.25": {
+ "sha512": "qYjeibwlmipHm75Xh+4R1xbBoGaVY0wHqZx3IxNYiyROeHZAqNVrdR6Wb5HkT8h9zJkIMUp+F3fq4v2DcjrRpA==",
"type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/9.0.14",
+ "path": "microsoft.entityframeworkcore.sqlserver/8.0.25",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3540,14 +2900,14 @@
"PACKAGE.md",
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
"lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
- "microsoft.entityframeworkcore.sqlserver.9.0.14.nupkg.sha512",
+ "microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512",
"microsoft.entityframeworkcore.sqlserver.nuspec"
]
},
- "Microsoft.Extensions.Caching.Abstractions/9.0.14": {
- "sha512": "fnHxSqrDnPRTO/AbHR6N5mZOY9NmP14rx8aZiresGF27ypqH+J8ZEgXsiXbHVe8az2IGrZWP2a+uNUGBlzVlHQ==",
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
"type": "package",
- "path": "microsoft.extensions.caching.abstractions/9.0.14",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3557,25 +2917,27 @@
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
"lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
"lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.9.0.14.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
"microsoft.extensions.caching.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Extensions.Caching.Memory/9.0.14": {
- "sha512": "VoOzKJaoQZ0pe9RKKEunAO5v37HA/WWBxxiYIOThmHb+OnQPk/+ZvdR5zcbF0XedIUK/agAYORkrb08AQ4ywrQ==",
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
"type": "package",
- "path": "microsoft.extensions.caching.memory/9.0.14",
+ "path": "microsoft.extensions.caching.memory/8.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3585,17 +2947,19 @@
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
"lib/net462/Microsoft.Extensions.Caching.Memory.dll",
"lib/net462/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
"lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
"lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.9.0.14.nupkg.sha512",
+ "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
"microsoft.extensions.caching.memory.nuspec",
"useSharedDesignerContext.txt"
]
@@ -3629,10 +2993,10 @@
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Extensions.DependencyInjection/9.0.14": {
- "sha512": "p6qFGRiZK2kSNWf/smkpb2qrnwMGb5WX9RV7MV9TKxmhEjgB6fx8kjRT5CbKsF1kaTzJU6q/P/8YxfEDO2Hb8g==",
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
"type": "package",
- "path": "microsoft.extensions.dependencyinjection/9.0.14",
+ "path": "microsoft.extensions.dependencyinjection/8.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3642,19 +3006,21 @@
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
"lib/net462/Microsoft.Extensions.DependencyInjection.dll",
"lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.9.0.14.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
"microsoft.extensions.dependencyinjection.nuspec",
"useSharedDesignerContext.txt"
]
@@ -3690,10 +3056,10 @@
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Extensions.DependencyModel/9.0.14": {
- "sha512": "3KI67cvKZqHMBffWushySB0FqrFphIK3mnxnN9YoBdjsTPzSSIMYej4cqtHM4LgFMHcO33C5ObOHqzls+7eJng==",
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
+ "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
"type": "package",
- "path": "microsoft.extensions.dependencymodel/9.0.14",
+ "path": "microsoft.extensions.dependencymodel/8.0.2",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3703,17 +3069,19 @@
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
"lib/net462/Microsoft.Extensions.DependencyModel.dll",
"lib/net462/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
"lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
"lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
- "microsoft.extensions.dependencymodel.9.0.14.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
"microsoft.extensions.dependencymodel.nuspec",
"useSharedDesignerContext.txt"
]
@@ -3806,10 +3174,10 @@
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Extensions.Logging/9.0.14": {
- "sha512": "z1VeGpJzXezF8DJScU7q4NS30NC/X5tnmv/F6t8AWu4PG4oGX2cVGcfaRRxaFLS1Kq77hd4f8xqySj5F8VZImQ==",
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
"type": "package",
- "path": "microsoft.extensions.logging/9.0.14",
+ "path": "microsoft.extensions.logging/8.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -3819,19 +3187,21 @@
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.Logging.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
"lib/net462/Microsoft.Extensions.Logging.dll",
"lib/net462/Microsoft.Extensions.Logging.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.xml",
"lib/net8.0/Microsoft.Extensions.Logging.dll",
"lib/net8.0/Microsoft.Extensions.Logging.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.9.0.14.nupkg.sha512",
+ "microsoft.extensions.logging.8.0.1.nupkg.sha512",
"microsoft.extensions.logging.nuspec",
"useSharedDesignerContext.txt"
]
@@ -4188,18 +3558,17 @@
"runtime.json"
]
},
- "Microsoft.OpenApi/1.6.17": {
- "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
+ "Microsoft.OpenApi/1.4.3": {
+ "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
"type": "package",
- "path": "microsoft.openapi/1.6.17",
+ "path": "microsoft.openapi/1.4.3",
"files": [
".nupkg.metadata",
".signature.p7s",
- "README.md",
"lib/netstandard2.0/Microsoft.OpenApi.dll",
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
"lib/netstandard2.0/Microsoft.OpenApi.xml",
- "microsoft.openapi.1.6.17.nupkg.sha512",
+ "microsoft.openapi.1.4.3.nupkg.sha512",
"microsoft.openapi.nuspec"
]
},
@@ -4250,21 +3619,17 @@
"useSharedDesignerContext.txt"
]
},
- "Mono.TextTemplating/3.0.0": {
- "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
+ "Mono.TextTemplating/2.2.1": {
+ "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
"type": "package",
- "path": "mono.texttemplating/3.0.0",
+ "path": "mono.texttemplating/2.2.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "LICENSE.txt/LICENSE",
- "buildTransitive/Mono.TextTemplating.targets",
"lib/net472/Mono.TextTemplating.dll",
- "lib/net6.0/Mono.TextTemplating.dll",
"lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.3.0.0.nupkg.sha512",
- "mono.texttemplating.nuspec",
- "readme.md"
+ "mono.texttemplating.2.2.1.nupkg.sha512",
+ "mono.texttemplating.nuspec"
]
},
"Namotion.Reflection/3.4.3": {
@@ -4518,210 +3883,178 @@
"system.clientmodel.nuspec"
]
},
- "System.CodeDom/6.0.0": {
- "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
+ "System.CodeDom/4.4.0": {
+ "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
"type": "package",
- "path": "system.codedom/6.0.0",
+ "path": "system.codedom/4.4.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
- "buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.CodeDom.dll",
- "lib/net461/System.CodeDom.xml",
- "lib/net6.0/System.CodeDom.dll",
- "lib/net6.0/System.CodeDom.xml",
"lib/netstandard2.0/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.xml",
- "system.codedom.6.0.0.nupkg.sha512",
+ "ref/net461/System.CodeDom.dll",
+ "ref/net461/System.CodeDom.xml",
+ "ref/netstandard2.0/System.CodeDom.dll",
+ "ref/netstandard2.0/System.CodeDom.xml",
+ "system.codedom.4.4.0.nupkg.sha512",
"system.codedom.nuspec",
- "useSharedDesignerContext.txt"
+ "useSharedDesignerContext.txt",
+ "version.txt"
]
},
- "System.Collections.Immutable/7.0.0": {
- "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
+ "System.Collections.Immutable/6.0.0": {
+ "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
"type": "package",
- "path": "system.collections.immutable/7.0.0",
+ "path": "system.collections.immutable/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
- "README.md",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Collections.Immutable.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
- "lib/net462/System.Collections.Immutable.dll",
- "lib/net462/System.Collections.Immutable.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Collections.Immutable.dll",
+ "lib/net461/System.Collections.Immutable.xml",
"lib/net6.0/System.Collections.Immutable.dll",
"lib/net6.0/System.Collections.Immutable.xml",
- "lib/net7.0/System.Collections.Immutable.dll",
- "lib/net7.0/System.Collections.Immutable.xml",
"lib/netstandard2.0/System.Collections.Immutable.dll",
"lib/netstandard2.0/System.Collections.Immutable.xml",
- "system.collections.immutable.7.0.0.nupkg.sha512",
+ "system.collections.immutable.6.0.0.nupkg.sha512",
"system.collections.immutable.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition/7.0.0": {
- "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
+ "System.Composition/6.0.0": {
+ "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
"type": "package",
- "path": "system.composition/7.0.0",
+ "path": "system.composition/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.targets",
- "lib/net461/_._",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard2.0/_._",
- "system.composition.7.0.0.nupkg.sha512",
+ "buildTransitive/netcoreapp3.1/_._",
+ "system.composition.6.0.0.nupkg.sha512",
"system.composition.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition.AttributedModel/7.0.0": {
- "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
+ "System.Composition.AttributedModel/6.0.0": {
+ "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
"type": "package",
- "path": "system.composition.attributedmodel/7.0.0",
+ "path": "system.composition.attributedmodel/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.AttributedModel.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "lib/net462/System.Composition.AttributedModel.dll",
- "lib/net462/System.Composition.AttributedModel.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.AttributedModel.dll",
+ "lib/net461/System.Composition.AttributedModel.xml",
"lib/net6.0/System.Composition.AttributedModel.dll",
"lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/net7.0/System.Composition.AttributedModel.dll",
- "lib/net7.0/System.Composition.AttributedModel.xml",
"lib/netstandard2.0/System.Composition.AttributedModel.dll",
"lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.7.0.0.nupkg.sha512",
+ "system.composition.attributedmodel.6.0.0.nupkg.sha512",
"system.composition.attributedmodel.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition.Convention/7.0.0": {
- "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
+ "System.Composition.Convention/6.0.0": {
+ "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
"type": "package",
- "path": "system.composition.convention/7.0.0",
+ "path": "system.composition.convention/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Convention.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "lib/net462/System.Composition.Convention.dll",
- "lib/net462/System.Composition.Convention.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Convention.dll",
+ "lib/net461/System.Composition.Convention.xml",
"lib/net6.0/System.Composition.Convention.dll",
"lib/net6.0/System.Composition.Convention.xml",
- "lib/net7.0/System.Composition.Convention.dll",
- "lib/net7.0/System.Composition.Convention.xml",
"lib/netstandard2.0/System.Composition.Convention.dll",
"lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.7.0.0.nupkg.sha512",
+ "system.composition.convention.6.0.0.nupkg.sha512",
"system.composition.convention.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition.Hosting/7.0.0": {
- "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
+ "System.Composition.Hosting/6.0.0": {
+ "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
"type": "package",
- "path": "system.composition.hosting/7.0.0",
+ "path": "system.composition.hosting/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Hosting.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "lib/net462/System.Composition.Hosting.dll",
- "lib/net462/System.Composition.Hosting.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Hosting.dll",
+ "lib/net461/System.Composition.Hosting.xml",
"lib/net6.0/System.Composition.Hosting.dll",
"lib/net6.0/System.Composition.Hosting.xml",
- "lib/net7.0/System.Composition.Hosting.dll",
- "lib/net7.0/System.Composition.Hosting.xml",
"lib/netstandard2.0/System.Composition.Hosting.dll",
"lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.7.0.0.nupkg.sha512",
+ "system.composition.hosting.6.0.0.nupkg.sha512",
"system.composition.hosting.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition.Runtime/7.0.0": {
- "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
+ "System.Composition.Runtime/6.0.0": {
+ "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
"type": "package",
- "path": "system.composition.runtime/7.0.0",
+ "path": "system.composition.runtime/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Runtime.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "lib/net462/System.Composition.Runtime.dll",
- "lib/net462/System.Composition.Runtime.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Runtime.dll",
+ "lib/net461/System.Composition.Runtime.xml",
"lib/net6.0/System.Composition.Runtime.dll",
"lib/net6.0/System.Composition.Runtime.xml",
- "lib/net7.0/System.Composition.Runtime.dll",
- "lib/net7.0/System.Composition.Runtime.xml",
"lib/netstandard2.0/System.Composition.Runtime.dll",
"lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.7.0.0.nupkg.sha512",
+ "system.composition.runtime.6.0.0.nupkg.sha512",
"system.composition.runtime.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Composition.TypedParts/7.0.0": {
- "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
+ "System.Composition.TypedParts/6.0.0": {
+ "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
"type": "package",
- "path": "system.composition.typedparts/7.0.0",
+ "path": "system.composition.typedparts/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.TypedParts.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "lib/net462/System.Composition.TypedParts.dll",
- "lib/net462/System.Composition.TypedParts.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.TypedParts.dll",
+ "lib/net461/System.Composition.TypedParts.xml",
"lib/net6.0/System.Composition.TypedParts.dll",
"lib/net6.0/System.Composition.TypedParts.xml",
- "lib/net7.0/System.Composition.TypedParts.dll",
- "lib/net7.0/System.Composition.TypedParts.xml",
"lib/netstandard2.0/System.Composition.TypedParts.dll",
"lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.7.0.0.nupkg.sha512",
+ "system.composition.typedparts.6.0.0.nupkg.sha512",
"system.composition.typedparts.nuspec",
"useSharedDesignerContext.txt"
]
@@ -4818,30 +4151,31 @@
"useSharedDesignerContext.txt"
]
},
- "System.Formats.Asn1/9.0.14": {
- "sha512": "yVH5DlO8/wXO0/XzWN2dzjY3dWKc9W65FDhHeuWVsNnnnpXvp9D+9tR5Xcjp9BwEdJcaL07fxSom0MW0uFZ/kg==",
+ "System.Formats.Asn1/8.0.2": {
+ "sha512": "yUsFqNGa7tbwm5QOOnOR3VSoh8a0Yki39mTbhOnErdbg8hVSFtrK0EXerj286PXcegiF1LkE7lL++qqMZW5jIQ==",
"type": "package",
- "path": "system.formats.asn1/9.0.14",
+ "path": "system.formats.asn1/8.0.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
- "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Formats.Asn1.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
+ "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
"lib/net462/System.Formats.Asn1.dll",
"lib/net462/System.Formats.Asn1.xml",
+ "lib/net6.0/System.Formats.Asn1.dll",
+ "lib/net6.0/System.Formats.Asn1.xml",
+ "lib/net7.0/System.Formats.Asn1.dll",
+ "lib/net7.0/System.Formats.Asn1.xml",
"lib/net8.0/System.Formats.Asn1.dll",
"lib/net8.0/System.Formats.Asn1.xml",
- "lib/net9.0/System.Formats.Asn1.dll",
- "lib/net9.0/System.Formats.Asn1.xml",
"lib/netstandard2.0/System.Formats.Asn1.dll",
"lib/netstandard2.0/System.Formats.Asn1.xml",
- "system.formats.asn1.9.0.14.nupkg.sha512",
+ "system.formats.asn1.8.0.2.nupkg.sha512",
"system.formats.asn1.nuspec",
"useSharedDesignerContext.txt"
]
@@ -4869,29 +4203,27 @@
"system.identitymodel.tokens.jwt.nuspec"
]
},
- "System.IO.Pipelines/7.0.0": {
- "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
+ "System.IO.Pipelines/6.0.3": {
+ "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
"type": "package",
- "path": "system.io.pipelines/7.0.0",
+ "path": "system.io.pipelines/6.0.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.IO.Pipelines.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "lib/net462/System.IO.Pipelines.dll",
- "lib/net462/System.IO.Pipelines.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.IO.Pipelines.dll",
+ "lib/net461/System.IO.Pipelines.xml",
"lib/net6.0/System.IO.Pipelines.dll",
"lib/net6.0/System.IO.Pipelines.xml",
- "lib/net7.0/System.IO.Pipelines.dll",
- "lib/net7.0/System.IO.Pipelines.xml",
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll",
+ "lib/netcoreapp3.1/System.IO.Pipelines.xml",
"lib/netstandard2.0/System.IO.Pipelines.dll",
"lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.7.0.0.nupkg.sha512",
+ "system.io.pipelines.6.0.3.nupkg.sha512",
"system.io.pipelines.nuspec",
"useSharedDesignerContext.txt"
]
@@ -4984,30 +4316,25 @@
"version.txt"
]
},
- "System.Reflection.Metadata/7.0.0": {
- "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
+ "System.Reflection.Metadata/6.0.1": {
+ "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
"type": "package",
- "path": "system.reflection.metadata/7.0.0",
+ "path": "system.reflection.metadata/6.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
- "README.md",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Reflection.Metadata.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "lib/net462/System.Reflection.Metadata.dll",
- "lib/net462/System.Reflection.Metadata.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Reflection.Metadata.dll",
+ "lib/net461/System.Reflection.Metadata.xml",
"lib/net6.0/System.Reflection.Metadata.dll",
"lib/net6.0/System.Reflection.Metadata.xml",
- "lib/net7.0/System.Reflection.Metadata.dll",
- "lib/net7.0/System.Reflection.Metadata.xml",
"lib/netstandard2.0/System.Reflection.Metadata.dll",
"lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.7.0.0.nupkg.sha512",
+ "system.reflection.metadata.6.0.1.nupkg.sha512",
"system.reflection.metadata.nuspec",
"useSharedDesignerContext.txt"
]
@@ -5537,102 +4864,51 @@
"useSharedDesignerContext.txt"
]
},
- "System.Text.Json/9.0.14": {
- "sha512": "zahtYv0C3LAIUUSiEwuL9QAtal8X1cp32qua8JWMjgoik33BpRU9ziLT9QJukF39y/G43VeTn0XFcDujzeFMMA==",
+ "System.Text.Json/4.7.2": {
+ "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
"type": "package",
- "path": "system.text.json/9.0.14",
+ "path": "system.text.json/4.7.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
- "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "buildTransitive/net461/System.Text.Json.targets",
- "buildTransitive/net462/System.Text.Json.targets",
- "buildTransitive/net8.0/System.Text.Json.targets",
- "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
- "buildTransitive/netstandard2.0/System.Text.Json.targets",
- "lib/net462/System.Text.Json.dll",
- "lib/net462/System.Text.Json.xml",
- "lib/net8.0/System.Text.Json.dll",
- "lib/net8.0/System.Text.Json.xml",
- "lib/net9.0/System.Text.Json.dll",
- "lib/net9.0/System.Text.Json.xml",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
"lib/netstandard2.0/System.Text.Json.dll",
"lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.9.0.14.nupkg.sha512",
+ "system.text.json.4.7.2.nupkg.sha512",
"system.text.json.nuspec",
- "useSharedDesignerContext.txt"
+ "useSharedDesignerContext.txt",
+ "version.txt"
]
},
- "System.Threading.Channels/7.0.0": {
- "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
+ "System.Threading.Channels/6.0.0": {
+ "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
"type": "package",
- "path": "system.threading.channels/7.0.0",
+ "path": "system.threading.channels/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Threading.Channels.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
- "lib/net462/System.Threading.Channels.dll",
- "lib/net462/System.Threading.Channels.xml",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Threading.Channels.dll",
+ "lib/net461/System.Threading.Channels.xml",
"lib/net6.0/System.Threading.Channels.dll",
"lib/net6.0/System.Threading.Channels.xml",
- "lib/net7.0/System.Threading.Channels.dll",
- "lib/net7.0/System.Threading.Channels.xml",
+ "lib/netcoreapp3.1/System.Threading.Channels.dll",
+ "lib/netcoreapp3.1/System.Threading.Channels.xml",
"lib/netstandard2.0/System.Threading.Channels.dll",
"lib/netstandard2.0/System.Threading.Channels.xml",
"lib/netstandard2.1/System.Threading.Channels.dll",
"lib/netstandard2.1/System.Threading.Channels.xml",
- "system.threading.channels.7.0.0.nupkg.sha512",
+ "system.threading.channels.6.0.0.nupkg.sha512",
"system.threading.channels.nuspec",
"useSharedDesignerContext.txt"
]
@@ -5722,13 +4998,13 @@
}
},
"projectFileDependencyGroups": {
- "net9.0": [
+ "net8.0": [
"FastEndpoints >= 8.0.1",
"FastEndpoints.Swagger >= 8.0.1",
- "Microsoft.AspNetCore.OpenApi >= 9.0.8",
- "Microsoft.EntityFrameworkCore >= 9.0.14",
- "Microsoft.EntityFrameworkCore.Design >= 9.0.14",
- "Microsoft.EntityFrameworkCore.SqlServer >= 9.0.14"
+ "Microsoft.AspNetCore.OpenApi >= 8.0.25",
+ "Microsoft.EntityFrameworkCore >= 8.0.25",
+ "Microsoft.EntityFrameworkCore.Design >= 8.0.25",
+ "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.25"
]
},
"packageFolders": {
@@ -5747,15 +5023,15 @@
"/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
- "net9.0"
+ "net8.0"
],
"sources": {
"/usr/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
+ "net8.0": {
+ "targetAlias": "net8.0",
"projectReferences": {}
}
},
@@ -5771,8 +5047,8 @@
}
},
"frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
+ "net8.0": {
+ "targetAlias": "net8.0",
"dependencies": {
"FastEndpoints": {
"target": "Package",
@@ -5784,21 +5060,21 @@
},
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
- "version": "[9.0.8, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore.Design": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
},
"Microsoft.EntityFrameworkCore.SqlServer": {
"target": "Package",
- "version": "[9.0.14, )"
+ "version": "[8.0.25, )"
}
},
"imports": [
diff --git a/Knots/obj/project.nuget.cache b/Knots/obj/project.nuget.cache
index 064a8f9..d1877a1 100644
--- a/Knots/obj/project.nuget.cache
+++ b/Knots/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "Nt+4I15/agA=",
+ "dgSpecHash": "lsp1T+UmcqI=",
"success": true,
"projectFilePath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj",
"expectedPackageFiles": [
@@ -17,35 +17,32 @@
"/home/carteronm@stsio.lan/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.3.9/microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.features/2.3.0/microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/9.0.8/microsoft.aspnetcore.openapi.9.0.8.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.build.framework/17.8.43/microsoft.build.framework.17.8.43.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/8.0.25/microsoft.aspnetcore.openapi.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.common/4.5.0/microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp/4.5.0/microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.5.0/microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.5.0/microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.csharp/4.5.0/microsoft.csharp.4.5.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient/5.1.6/microsoft.data.sqlclient.5.1.6.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.1/microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore/9.0.14/microsoft.entityframeworkcore.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.14/microsoft.entityframeworkcore.abstractions.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.14/microsoft.entityframeworkcore.analyzers.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.design/9.0.14/microsoft.entityframeworkcore.design.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.14/microsoft.entityframeworkcore.relational.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.sqlserver/9.0.14/microsoft.entityframeworkcore.sqlserver.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.14/microsoft.extensions.caching.abstractions.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.memory/9.0.14/microsoft.extensions.caching.memory.9.0.14.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient/5.1.7/microsoft.data.sqlclient.5.1.7.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.2/microsoft.data.sqlclient.sni.runtime.5.1.2.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore/8.0.25/microsoft.entityframeworkcore.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.25/microsoft.entityframeworkcore.abstractions.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.25/microsoft.entityframeworkcore.analyzers.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.design/8.0.25/microsoft.entityframeworkcore.design.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.25/microsoft.entityframeworkcore.relational.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.sqlserver/8.0.25/microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.3/microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.14/microsoft.extensions.dependencyinjection.9.0.14.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencymodel/9.0.14/microsoft.extensions.dependencymodel.9.0.14.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencymodel/8.0.2/microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.3/microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.3/microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.3/microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging/9.0.14/microsoft.extensions.logging.9.0.14.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging/8.0.1/microsoft.extensions.logging.8.0.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512",
@@ -59,10 +56,10 @@
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/microsoft.openapi/1.4.3/microsoft.openapi.1.4.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512",
@@ -76,24 +73,24 @@
"/home/carteronm@stsio.lan/.nuget/packages/nswag.generation/14.6.3/nswag.generation.14.6.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/nswag.generation.aspnetcore/14.6.3/nswag.generation.aspnetcore.14.6.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.collections.immutable/7.0.0/system.collections.immutable.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition.attributedmodel/6.0.0/system.composition.attributedmodel.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition.convention/6.0.0/system.composition.convention.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.diagnostics.diagnosticsource/10.0.3/system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.formats.asn1/9.0.14/system.formats.asn1.9.0.14.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.formats.asn1/8.0.2/system.formats.asn1.8.0.2.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.io.pipelines/6.0.3/system.io.pipelines.6.0.3.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.reflection.metadata/7.0.0/system.reflection.metadata.7.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
@@ -105,8 +102,8 @@
"/home/carteronm@stsio.lan/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.text.json/9.0.14/system.text.json.9.0.14.nupkg.sha512",
- "/home/carteronm@stsio.lan/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.text.json/4.7.2/system.text.json.4.7.2.nupkg.sha512",
+ "/home/carteronm@stsio.lan/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512",
"/home/carteronm@stsio.lan/.nuget/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512"
diff --git a/Knots/obj/project.packagespec.json b/Knots/obj/project.packagespec.json
index b290ab6..acd18be 100644
--- a/Knots/obj/project.packagespec.json
+++ b/Knots/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","projectName":"Knots","projectPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","outputPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"/usr/share/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[9.0.8, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[9.0.14, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","projectName":"Knots","projectPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","outputPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"/usr/share/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[8.0.25, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/Knots/obj/rider.project.model.nuget.info b/Knots/obj/rider.project.model.nuget.info
index f6a5f94..07fd173 100644
--- a/Knots/obj/rider.project.model.nuget.info
+++ b/Knots/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17733290789208518
\ No newline at end of file
+17733306544048221
\ No newline at end of file
diff --git a/Knots/obj/rider.project.restore.info b/Knots/obj/rider.project.restore.info
index cee48b2..7008409 100644
--- a/Knots/obj/rider.project.restore.info
+++ b/Knots/obj/rider.project.restore.info
@@ -1 +1 @@
-17733301429768317
\ No newline at end of file
+17733307741808199
\ No newline at end of file