diff --git a/docs/task-02-create-database-models.md b/docs/task-02-create-database-models.md new file mode 100644 index 0000000..6279770 --- /dev/null +++ b/docs/task-02-create-database-models.md @@ -0,0 +1,128 @@ +# Task 2: Create Database Models + +## Task Description + +**Files:** +- Create: `src/Fengling.AuthService/Data/ApplicationDbContext.cs` +- Create: `src/Fengling.AuthService/Models/ApplicationUser.cs` +- Create: `src/Fengling.AuthService/Models/ApplicationRole.cs` +- Create: `src/Fengling.AuthService/Data/Migrations/20250201_InitialCreate.cs` + +## Implementation Steps + +### Step 1: Create ApplicationUser model + +Create: `src/Fengling.AuthService/Models/ApplicationUser.cs` + +```csharp +using Microsoft.AspNetCore.Identity; + +namespace Fengling.AuthService.Models; + +public class ApplicationUser : IdentityUser +{ + public string? RealName { get; set; } + public string? Phone { get; set; } + public long TenantId { get; set; } + public DateTime CreatedTime { get; set; } = DateTime.UtcNow; + public DateTime? UpdatedTime { get; set; } + public bool IsDeleted { get; set; } +} +``` + +### Step 2: Create ApplicationRole model + +Create: `src/Fengling.AuthService/Models/ApplicationRole.cs` + +```csharp +using Microsoft.AspNetCore.Identity; + +namespace Fengling.AuthService.Models; + +public class ApplicationRole : IdentityRole +{ + public string? Description { get; set; } + public DateTime CreatedTime { get; set; } = DateTime.UtcNow; +} +``` + +### Step 3: Create ApplicationDbContext + +Create: `src/Fengling.AuthService/Data/ApplicationDbContext.cs` + +```csharp +using Fengling.AuthService.Models; +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; + +namespace Fengling.AuthService.Data; + +public class ApplicationDbContext : IdentityDbContext +{ + public ApplicationDbContext(DbContextOptions options) + : base(options) + { + } + + protected override void OnModelCreating(ModelBuilder builder) + { + base.OnModelCreating(builder); + + builder.Entity(entity => + { + entity.Property(e => e.RealName).HasMaxLength(100); + entity.Property(e => e.Phone).HasMaxLength(20); + entity.HasIndex(e => e.TenantId); + entity.HasIndex(e => e.Phone).IsUnique(); + }); + + builder.Entity(entity => + { + entity.Property(e => e.Description).HasMaxLength(200); + }); + } +} +``` + +### Step 4: Add migration + +Run: +```bash +cd /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService +dotnet ef migrations add InitialCreate -o Data/Migrations +``` + +### Step 5: Update database + +Run: +```bash +dotnet ef database update +``` + +### Step 6: Commit + +```bash +git add src/Fengling.AuthService/Models/ src/Fengling.AuthService/Data/ +git commit -m "feat(auth): add user and role models with EF Core migrations" +``` + +## Context + +This task creates the database models for users and roles with multi-tenant support. We're using ASP.NET Core Identity with long primary keys (IdentityUser) and adding custom properties like RealName, Phone, and TenantId for multi-tenant isolation. + +**Tech Stack**: EF Core 9.0, PostgreSQL, ASP.NET Core Identity + +## Verification + +- [ ] ApplicationUser model created with long key type and custom properties +- [ ] ApplicationRole model created with description property +- [ ] ApplicationDbContext configured with proper entity configurations +- [ ] EF Core migration generated successfully +- [ ] Database updated with schema +- [ ] Committed to git + +## Notes + +- Using long (Int64) as key type for better scalability +- TenantId added to ApplicationUser for multi-tenant support +- Phone number has unique index constraint diff --git a/src/Fengling.AuthService/Data/ApplicationDbContext.cs b/src/Fengling.AuthService/Data/ApplicationDbContext.cs new file mode 100644 index 0000000..ab98f4a --- /dev/null +++ b/src/Fengling.AuthService/Data/ApplicationDbContext.cs @@ -0,0 +1,31 @@ +using Fengling.AuthService.Models; +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; + +namespace Fengling.AuthService.Data; + +public class ApplicationDbContext : IdentityDbContext +{ + public ApplicationDbContext(DbContextOptions options) + : base(options) + { + } + + protected override void OnModelCreating(ModelBuilder builder) + { + base.OnModelCreating(builder); + + builder.Entity(entity => + { + entity.Property(e => e.RealName).HasMaxLength(100); + entity.Property(e => e.Phone).HasMaxLength(20); + entity.HasIndex(e => e.TenantId); + entity.HasIndex(e => e.Phone).IsUnique(); + }); + + builder.Entity(entity => + { + entity.Property(e => e.Description).HasMaxLength(200); + }); + } +} diff --git a/src/Fengling.AuthService/Data/ApplicationDbContextFactory.cs b/src/Fengling.AuthService/Data/ApplicationDbContextFactory.cs new file mode 100644 index 0000000..62c3423 --- /dev/null +++ b/src/Fengling.AuthService/Data/ApplicationDbContextFactory.cs @@ -0,0 +1,16 @@ +using Fengling.AuthService.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Design; + +namespace Fengling.AuthService.Data; + +public class ApplicationDbContextFactory : IDesignTimeDbContextFactory +{ + public ApplicationDbContext CreateDbContext(string[] args) + { + var optionsBuilder = new DbContextOptionsBuilder(); + optionsBuilder.UseNpgsql("Host=192.168.100.10;Port=5432;Database=fengling_auth;Username=movingsam;Password=sl52788542"); + + return new ApplicationDbContext(optionsBuilder.Options); + } +} diff --git a/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.Designer.cs b/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.Designer.cs new file mode 100644 index 0000000..42966cb --- /dev/null +++ b/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.Designer.cs @@ -0,0 +1,312 @@ +// +using System; +using Fengling.AuthService.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Fengling.AuthService.Data.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + [Migration("20260201153600_InitialCreate")] + partial class InitialCreate + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.10") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Fengling.AuthService.Models.ApplicationRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("CreatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("Description") + .HasMaxLength(200) + .HasColumnType("character varying(200)"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + }); + + modelBuilder.Entity("Fengling.AuthService.Models.ApplicationUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("CreatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("Phone") + .HasMaxLength(20) + .HasColumnType("character varying(20)"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("RealName") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("bigint"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UpdatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.HasIndex("Phone") + .IsUnique(); + + b.HasIndex("TenantId"); + + b.ToTable("AspNetUsers", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("bigint"); + + b.Property("RoleId") + .HasColumnType("bigint"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("bigint"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.cs b/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.cs new file mode 100644 index 0000000..d9e4db8 --- /dev/null +++ b/src/Fengling.AuthService/Data/Migrations/20260201153600_InitialCreate.cs @@ -0,0 +1,244 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Fengling.AuthService.Data.Migrations +{ + /// + public partial class InitialCreate : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "AspNetRoles", + columns: table => new + { + Id = table.Column(type: "bigint", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Description = table.Column(type: "character varying(200)", maxLength: 200, nullable: true), + CreatedTime = table.Column(type: "timestamp with time zone", nullable: false), + Name = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + ConcurrencyStamp = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetRoles", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AspNetUsers", + columns: table => new + { + Id = table.Column(type: "bigint", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + RealName = table.Column(type: "character varying(100)", maxLength: 100, nullable: true), + Phone = table.Column(type: "character varying(20)", maxLength: 20, nullable: true), + TenantId = table.Column(type: "bigint", nullable: false), + CreatedTime = table.Column(type: "timestamp with time zone", nullable: false), + UpdatedTime = table.Column(type: "timestamp with time zone", nullable: true), + IsDeleted = table.Column(type: "boolean", nullable: false), + UserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedUserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + Email = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedEmail = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + EmailConfirmed = table.Column(type: "boolean", nullable: false), + PasswordHash = table.Column(type: "text", nullable: true), + SecurityStamp = table.Column(type: "text", nullable: true), + ConcurrencyStamp = table.Column(type: "text", nullable: true), + PhoneNumber = table.Column(type: "text", nullable: true), + PhoneNumberConfirmed = table.Column(type: "boolean", nullable: false), + TwoFactorEnabled = table.Column(type: "boolean", nullable: false), + LockoutEnd = table.Column(type: "timestamp with time zone", nullable: true), + LockoutEnabled = table.Column(type: "boolean", nullable: false), + AccessFailedCount = table.Column(type: "integer", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUsers", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AspNetRoleClaims", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + RoleId = table.Column(type: "bigint", nullable: false), + ClaimType = table.Column(type: "text", nullable: true), + ClaimValue = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id); + table.ForeignKey( + name: "FK_AspNetRoleClaims_AspNetRoles_RoleId", + column: x => x.RoleId, + principalTable: "AspNetRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserClaims", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + UserId = table.Column(type: "bigint", nullable: false), + ClaimType = table.Column(type: "text", nullable: true), + ClaimValue = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserClaims", x => x.Id); + table.ForeignKey( + name: "FK_AspNetUserClaims_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserLogins", + columns: table => new + { + LoginProvider = table.Column(type: "text", nullable: false), + ProviderKey = table.Column(type: "text", nullable: false), + ProviderDisplayName = table.Column(type: "text", nullable: true), + UserId = table.Column(type: "bigint", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey }); + table.ForeignKey( + name: "FK_AspNetUserLogins_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserRoles", + columns: table => new + { + UserId = table.Column(type: "bigint", nullable: false), + RoleId = table.Column(type: "bigint", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId }); + table.ForeignKey( + name: "FK_AspNetUserRoles_AspNetRoles_RoleId", + column: x => x.RoleId, + principalTable: "AspNetRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_AspNetUserRoles_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserTokens", + columns: table => new + { + UserId = table.Column(type: "bigint", nullable: false), + LoginProvider = table.Column(type: "text", nullable: false), + Name = table.Column(type: "text", nullable: false), + Value = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); + table.ForeignKey( + name: "FK_AspNetUserTokens_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_AspNetRoleClaims_RoleId", + table: "AspNetRoleClaims", + column: "RoleId"); + + migrationBuilder.CreateIndex( + name: "RoleNameIndex", + table: "AspNetRoles", + column: "NormalizedName", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserClaims_UserId", + table: "AspNetUserClaims", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserLogins_UserId", + table: "AspNetUserLogins", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserRoles_RoleId", + table: "AspNetUserRoles", + column: "RoleId"); + + migrationBuilder.CreateIndex( + name: "EmailIndex", + table: "AspNetUsers", + column: "NormalizedEmail"); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUsers_Phone", + table: "AspNetUsers", + column: "Phone", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUsers_TenantId", + table: "AspNetUsers", + column: "TenantId"); + + migrationBuilder.CreateIndex( + name: "UserNameIndex", + table: "AspNetUsers", + column: "NormalizedUserName", + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "AspNetRoleClaims"); + + migrationBuilder.DropTable( + name: "AspNetUserClaims"); + + migrationBuilder.DropTable( + name: "AspNetUserLogins"); + + migrationBuilder.DropTable( + name: "AspNetUserRoles"); + + migrationBuilder.DropTable( + name: "AspNetUserTokens"); + + migrationBuilder.DropTable( + name: "AspNetRoles"); + + migrationBuilder.DropTable( + name: "AspNetUsers"); + } + } +} diff --git a/src/Fengling.AuthService/Data/Migrations/ApplicationDbContextModelSnapshot.cs b/src/Fengling.AuthService/Data/Migrations/ApplicationDbContextModelSnapshot.cs new file mode 100644 index 0000000..9c3b690 --- /dev/null +++ b/src/Fengling.AuthService/Data/Migrations/ApplicationDbContextModelSnapshot.cs @@ -0,0 +1,309 @@ +// +using System; +using Fengling.AuthService.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Fengling.AuthService.Data.Migrations +{ + [DbContext(typeof(ApplicationDbContext))] + partial class ApplicationDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.10") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Fengling.AuthService.Models.ApplicationRole", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("CreatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("Description") + .HasMaxLength(200) + .HasColumnType("character varying(200)"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + }); + + modelBuilder.Entity("Fengling.AuthService.Models.ApplicationUser", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("CreatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("IsDeleted") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("Phone") + .HasMaxLength(20) + .HasColumnType("character varying(20)"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("RealName") + .HasMaxLength(100) + .HasColumnType("character varying(100)"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TenantId") + .HasColumnType("bigint"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UpdatedTime") + .HasColumnType("timestamp with time zone"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.HasIndex("Phone") + .IsUnique(); + + b.HasIndex("TenantId"); + + b.ToTable("AspNetUsers", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .HasColumnType("bigint"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("bigint"); + + b.Property("RoleId") + .HasColumnType("bigint"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("bigint"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Fengling.AuthService.Models.ApplicationUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/src/Fengling.AuthService/Fengling.AuthService.csproj b/src/Fengling.AuthService/Fengling.AuthService.csproj index f9aee7d..e647633 100644 --- a/src/Fengling.AuthService/Fengling.AuthService.csproj +++ b/src/Fengling.AuthService/Fengling.AuthService.csproj @@ -7,6 +7,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Fengling.AuthService/Models/ApplicationRole.cs b/src/Fengling.AuthService/Models/ApplicationRole.cs new file mode 100644 index 0000000..612de44 --- /dev/null +++ b/src/Fengling.AuthService/Models/ApplicationRole.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Identity; + +namespace Fengling.AuthService.Models; + +public class ApplicationRole : IdentityRole +{ + public string? Description { get; set; } + public DateTime CreatedTime { get; set; } = DateTime.UtcNow; +} diff --git a/src/Fengling.AuthService/Models/ApplicationUser.cs b/src/Fengling.AuthService/Models/ApplicationUser.cs new file mode 100644 index 0000000..d1b4fa5 --- /dev/null +++ b/src/Fengling.AuthService/Models/ApplicationUser.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Identity; + +namespace Fengling.AuthService.Models; + +public class ApplicationUser : IdentityUser +{ + public string? RealName { get; set; } + public string? Phone { get; set; } + public long TenantId { get; set; } + public DateTime CreatedTime { get; set; } = DateTime.UtcNow; + public DateTime? UpdatedTime { get; set; } + public bool IsDeleted { get; set; } +} diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService new file mode 100755 index 0000000..e2e97cc Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.deps.json b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.deps.json new file mode 100644 index 0000000..52e74e6 --- /dev/null +++ b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.deps.json @@ -0,0 +1,2202 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Fengling.AuthService/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.1", + "Microsoft.AspNetCore.OpenApi": "9.0.1", + "Microsoft.EntityFrameworkCore.Design": "9.0.3", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.3", + "OpenIddict.AspNetCore": "7.2.0", + "OpenIddict.EntityFrameworkCore": "7.2.0", + "OpenTelemetry": "1.11.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.11.0", + "OpenTelemetry.Extensions.Hosting": "1.11.0", + "OpenTelemetry.Instrumentation.AspNetCore": "1.11.0", + "Serilog.AspNetCore": "9.0.0", + "Serilog.Sinks.Console": "6.0.0" + }, + "runtime": { + "Fengling.AuthService.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.1": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Microsoft.Extensions.Identity.Stores": "9.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.1.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.1": { + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.1.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.EntityFrameworkCore.Design/9.0.3": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "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.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.3", + "Microsoft.Extensions.Logging": "9.0.10", + "Mono.TextTemplating": "3.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.325.11202" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47514" + } + } + }, + "Microsoft.Extensions.AmbientMetadata.Application/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Compliance.Abstractions/9.10.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.ObjectPool": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.3": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.3", + "fileVersion": "9.0.325.11113" + } + } + }, + "Microsoft.Extensions.Diagnostics/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/9.10.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.10", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Http/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Diagnostics": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Http.Diagnostics/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Http": "9.0.10", + "Microsoft.Extensions.Telemetry": "9.10.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Http.Diagnostics.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Http.Polly/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Http": "9.0.10", + "Polly": "7.2.4", + "Polly.Extensions.Http": "3.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.Extensions.Http.Resilience/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Http.Diagnostics": "9.10.0", + "Microsoft.Extensions.ObjectPool": "9.0.10", + "Microsoft.Extensions.Resilience": "9.10.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Http.Resilience.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.1", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.10", + "Microsoft.Extensions.Identity.Core": "9.0.1", + "Microsoft.Extensions.Logging": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.124.61009" + } + } + }, + "Microsoft.Extensions.Logging/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.ObjectPool/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.Extensions.Options/9.0.10": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.10", + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47515" + } + } + }, + "Microsoft.Extensions.Resilience/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics": "9.0.10", + "Microsoft.Extensions.Diagnostics.ExceptionSummarization": "9.10.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.10", + "Microsoft.Extensions.Telemetry.Abstractions": "9.10.0", + "Polly.Extensions": "8.4.2", + "Polly.RateLimiting": "8.4.2" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Resilience.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Telemetry/9.10.0": { + "dependencies": { + "Microsoft.Extensions.AmbientMetadata.Application": "9.10.0", + "Microsoft.Extensions.DependencyInjection.AutoActivation": "9.10.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.10", + "Microsoft.Extensions.ObjectPool": "9.0.10", + "Microsoft.Extensions.Telemetry.Abstractions": "9.10.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Telemetry.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.Extensions.Telemetry.Abstractions/9.10.0": { + "dependencies": { + "Microsoft.Extensions.Compliance.Abstractions": "9.10.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.ObjectPool": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll": { + "assemblyVersion": "9.10.0.0", + "fileVersion": "9.1000.25.51303" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.14.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.IdentityModel.Logging": "8.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.14.0.0", + "fileVersion": "8.14.0.60815" + } + } + }, + "Microsoft.Net.Http.Headers/9.0.10": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.10" + }, + "runtime": { + "lib/net9.0/Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.OpenApi/1.6.17": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.17.0", + "fileVersion": "1.6.17.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.2": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.10" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.2.0", + "fileVersion": "9.0.2.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.10", + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "Npgsql": "9.0.2" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "OpenIddict/7.2.0": { + "dependencies": { + "OpenIddict.Abstractions": "7.2.0", + "OpenIddict.Client": "7.2.0", + "OpenIddict.Client.SystemIntegration": "7.2.0", + "OpenIddict.Client.SystemNetHttp": "7.2.0", + "OpenIddict.Client.WebIntegration": "7.2.0", + "OpenIddict.Core": "7.2.0", + "OpenIddict.Server": "7.2.0", + "OpenIddict.Validation": "7.2.0", + "OpenIddict.Validation.ServerIntegration": "7.2.0", + "OpenIddict.Validation.SystemNetHttp": "7.2.0" + } + }, + "OpenIddict.Abstractions/7.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Primitives": "9.0.10", + "Microsoft.IdentityModel.Tokens": "8.14.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Abstractions.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.AspNetCore/7.2.0": { + "dependencies": { + "OpenIddict": "7.2.0", + "OpenIddict.Client.AspNetCore": "7.2.0", + "OpenIddict.Client.DataProtection": "7.2.0", + "OpenIddict.Server.AspNetCore": "7.2.0", + "OpenIddict.Server.DataProtection": "7.2.0", + "OpenIddict.Validation.AspNetCore": "7.2.0", + "OpenIddict.Validation.DataProtection": "7.2.0" + } + }, + "OpenIddict.Client/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", + "Microsoft.IdentityModel.Protocols": "8.14.0", + "OpenIddict.Abstractions": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Client.AspNetCore/7.2.0": { + "dependencies": { + "OpenIddict.Client": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.AspNetCore.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Client.DataProtection/7.2.0": { + "dependencies": { + "OpenIddict.Client": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.DataProtection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Client.SystemIntegration/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "9.0.10", + "Microsoft.Net.Http.Headers": "9.0.10", + "OpenIddict.Client": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.SystemIntegration.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Client.SystemNetHttp/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Http.Polly": "9.0.10", + "Microsoft.Extensions.Http.Resilience": "9.10.0", + "OpenIddict.Client": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.SystemNetHttp.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Client.WebIntegration/7.2.0": { + "dependencies": { + "OpenIddict.Client": "7.2.0", + "OpenIddict.Client.SystemNetHttp": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Client.WebIntegration.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Core/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Memory": "9.0.10", + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "OpenIddict.Abstractions": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Core.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.EntityFrameworkCore/7.2.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.10", + "OpenIddict.Core": "7.2.0", + "OpenIddict.EntityFrameworkCore.Models": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.EntityFrameworkCore.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.EntityFrameworkCore.Models/7.2.0": { + "runtime": { + "lib/net9.0/OpenIddict.EntityFrameworkCore.Models.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Server/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", + "OpenIddict.Abstractions": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Server.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Server.AspNetCore/7.2.0": { + "dependencies": { + "OpenIddict.Server": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Server.AspNetCore.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Server.DataProtection/7.2.0": { + "dependencies": { + "OpenIddict.Server": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Server.DataProtection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Validation/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.10", + "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", + "Microsoft.IdentityModel.Protocols": "8.14.0", + "OpenIddict.Abstractions": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Validation.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Validation.AspNetCore/7.2.0": { + "dependencies": { + "OpenIddict.Validation": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Validation.AspNetCore.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Validation.DataProtection/7.2.0": { + "dependencies": { + "OpenIddict.Validation": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Validation.DataProtection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Validation.ServerIntegration/7.2.0": { + "dependencies": { + "OpenIddict.Server": "7.2.0", + "OpenIddict.Validation": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Validation.ServerIntegration.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenIddict.Validation.SystemNetHttp/7.2.0": { + "dependencies": { + "Microsoft.Extensions.Http.Polly": "9.0.10", + "Microsoft.Extensions.Http.Resilience": "9.10.0", + "OpenIddict.Validation": "7.2.0" + }, + "runtime": { + "lib/net9.0/OpenIddict.Validation.SystemNetHttp.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.200.25.56183" + } + } + }, + "OpenTelemetry/1.11.0": { + "dependencies": { + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Configuration": "9.0.10", + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.11.1" + }, + "runtime": { + "lib/net9.0/OpenTelemetry.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.11.0.1535" + } + } + }, + "OpenTelemetry.Api/1.11.1": { + "runtime": { + "lib/net9.0/OpenTelemetry.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.11.1.1544" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.11.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "OpenTelemetry.Api": "1.11.1" + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.11.1.1544" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.11.0": { + "dependencies": { + "OpenTelemetry": "1.11.0" + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.11.0.1535" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.11.0": { + "dependencies": { + "Microsoft.Extensions.Hosting.Abstractions": "9.0.10", + "OpenTelemetry": "1.11.0" + }, + "runtime": { + "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.11.0.1535" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.11.0": { + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.11.1" + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "assemblyVersion": "1.11.0.340", + "fileVersion": "1.11.0.340" + } + } + }, + "Polly/7.2.4": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.2.4.982" + } + } + }, + "Polly.Core/8.4.2": { + "runtime": { + "lib/net8.0/Polly.Core.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.Extensions/8.4.2": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Microsoft.Extensions.Options": "9.0.10", + "Polly.Core": "8.4.2" + }, + "runtime": { + "lib/net8.0/Polly.Extensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Polly.Extensions.Http/3.0.0": { + "dependencies": { + "Polly": "7.2.4" + }, + "runtime": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Polly.RateLimiting/8.4.2": { + "dependencies": { + "Polly.Core": "8.4.2" + }, + "runtime": { + "lib/net8.0/Polly.RateLimiting.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.2.3950" + } + } + }, + "Serilog/4.2.0": { + "runtime": { + "lib/net9.0/Serilog.dll": { + "assemblyVersion": "4.2.0.0", + "fileVersion": "4.2.0.0" + } + } + }, + "Serilog.AspNetCore/9.0.0": { + "dependencies": { + "Serilog": "4.2.0", + "Serilog.Extensions.Hosting": "9.0.0", + "Serilog.Formatting.Compact": "3.0.0", + "Serilog.Settings.Configuration": "9.0.0", + "Serilog.Sinks.Console": "6.0.0", + "Serilog.Sinks.Debug": "3.0.0", + "Serilog.Sinks.File": "6.0.0" + }, + "runtime": { + "lib/net9.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.10", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.10", + "Microsoft.Extensions.Logging.Abstractions": "9.0.10", + "Serilog": "4.2.0", + "Serilog.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net9.0/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "9.0.10", + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net9.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Formatting.Compact/3.0.0": { + "dependencies": { + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net8.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "9.0.10", + "Microsoft.Extensions.DependencyModel": "9.0.3", + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net9.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Sinks.Console/6.0.0": { + "dependencies": { + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Serilog.Sinks.Debug/3.0.0": { + "dependencies": { + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "Serilog.Sinks.File/6.0.0": { + "dependencies": { + "Serilog": "4.2.0" + }, + "runtime": { + "lib/net8.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "Fengling.AuthService/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leaw8hC6wCKfAg2kAYT4plnaHI7o6bKB9IQy0yLWHmgV0GjE449pu0SEnnl7loEzdLgyQrKyVQvfz7wRErqmxQ==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.1", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/ibWvFYnxjCfOmtQtLTFUN9L70CrQH0daom6tE8/hlxTllUDeXM95fE45dC4u2tBOrfDqB6TPAkUzd/vWaAusA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.1", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yZyj/m7nBsrx6JDIv5KSYH44lJsQ4K5RLEWaYRFQVoIRvGXQxMZ/TUCa7PKFtR/o6nz1fmy6bVciV/eN/NmjUw==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.1", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xRJe8UrLnOGs6hOBrT/4r74q97626H0mABb/DV0smlReIx6uQCENAe+TUqF6hD3NtT4sB+qrvWhAej6kxPxgew==", + "path": "microsoft.aspnetcore.openapi/9.0.1", + "hashPath": "microsoft.aspnetcore.openapi.9.0.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WjjxVyOTVs85V7SUe+lZjtGOEeVzF4RO8amrqL4adgbyThNq7vGCFzPw8buZj44gHeQYD5V/uZ/6XuqG9Jq+kA==", + "path": "microsoft.entityframeworkcore/9.0.10", + "hashPath": "microsoft.entityframeworkcore.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3TWAs5Lbzmzu8S0T6qXhzBiO3CznYLrfE59W0npkqNHfWGH8CgA66LrHMWxWOXVTD4145QwYqiWNCdLwpJ1Ew==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n5ZrAZ4RFELxYjJxN74lzmFlRrtSpYEYZfZcIJIWPGjSigwJsbya2CnOdjSVDPyfx3rKl9rzbd72D2DNHBJWeA==", + "path": "microsoft.entityframeworkcore.design/9.0.3", + "hashPath": "microsoft.entityframeworkcore.design.9.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IJNrG5vdmFUvHR8FLLFg9AWpuE8qW1DTEN+fNLGbNTu6cnpZzzqU6+aknAGtTSAEVWosJ3BZ3TOO9wpifUvv3A==", + "path": "microsoft.entityframeworkcore.relational/9.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.AmbientMetadata.Application/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ndm/eoOzk61Csn+ojv5z3Kt7YWAdUNR8ruFaf1b69kSbeqDPoV96f1GR1OWTIrCN9bm83V8CSkhvnnG+LrLTvg==", + "path": "microsoft.extensions.ambientmetadata.application/9.10.0", + "hashPath": "microsoft.extensions.ambientmetadata.application.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cL6iTxgJ4u5zP3eFOdBiDAtmE/B2WKTRhyJfEne7n6qvHpsMwwIDxljs210mWSO1ucBy7lR1Lo7/7kjeZeLcqQ==", + "path": "microsoft.extensions.caching.abstractions/9.0.10", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iuzwIoCoqZJfH2VLk1xvlQS4PQDEuhj4dWiGb+Qpt1vHFHyffp497cTO6ucsV54W/h4JmM1vzDBv8pVAFazZg==", + "path": "microsoft.extensions.caching.memory/9.0.10", + "hashPath": "microsoft.extensions.caching.memory.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Compliance.Abstractions/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Tgu40iIg2Kr8s+BoOhb8r8kQfcagwm1VnpnMZA9fd/sD8Hlj13cNpyCfLRrYEBP+VmfmaoficQvRNEUqH+F4mw==", + "path": "microsoft.extensions.compliance.abstractions/9.10.0", + "hashPath": "microsoft.extensions.compliance.abstractions.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UAm3SLGAMlJdowbN+/xnh2UGJkdJoXVm4MsdhZ60dAMS8jteoyCx5WfIab5DKv0TCYpdhVecLJVUjEO3abs9UQ==", + "path": "microsoft.extensions.configuration/9.0.10", + "hashPath": "microsoft.extensions.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ad3JxmFj0uxuFa1CT6oxTCC1lQ0xeRuOvzBRFT/I/ofIXVOnNsH/v2GZkAJWhlpZqKUvSexQZzp3EEAB2CdtJg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.10", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D6Kng+9I+w1SQPxJybc6wzw9nnnyUQPutycjtI0svv1RHaWOpUk9PPlwIRfhhoQZ3yihejkEI2wNv/7VnVtkGA==", + "path": "microsoft.extensions.configuration.binder/9.0.10", + "hashPath": "microsoft.extensions.configuration.binder.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iEtXCkNd5XhjNJAOb/wO4IhDRdLIE2CsPxZggZQWJ/q2+sa8dmEPC393nnsiqdH8/4KV8Xn25IzgKPR1UEQ0og==", + "path": "microsoft.extensions.dependencyinjection/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r9waLiOPe9ZF1PvzUT+RDoHvpMmY8MW+lb4lqjYGObwKpnyPMLI3odVvlmshwuZcdoHynsGWOrCPA0hxZ63lIA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.10", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.AutoActivation/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qk5+lY0MUl7Y77TjM6HzfQPOY4CqoTg281OddyDC5iU2hf+cIxhx0VbNuJH77vqB6qyCP1OsuQmCzvlpf9yxBQ==", + "path": "microsoft.extensions.dependencyinjection.autoactivation/9.10.0", + "hashPath": "microsoft.extensions.dependencyinjection.autoactivation.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-194P+NOekDXrPHmM2R8678T4bRfZ2isQXDDAsXKE5qI0QLUnXbwB0upljAkyxk+Kkt1DV1tV+9tHOtHEEh3ksw==", + "path": "microsoft.extensions.dependencymodel/9.0.3", + "hashPath": "microsoft.extensions.dependencymodel.9.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-01x2vz0AbIdfNUzEVYFq2HSeq1BmrSDpiG7nTmwjfd0d39sahQ8T7dhSXhH+YnZyaLWyMBudOq0vVa/voyNWjg==", + "path": "microsoft.extensions.diagnostics/9.0.10", + "hashPath": "microsoft.extensions.diagnostics.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwVnYi+gNKrr5riw8YFCoLCN4s0dmHtzfUmV99RIhrz8R4d6C/bsKzXhIhZWDIxJOhVzB+idSOQeRGj1/oMF+Q==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.10", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.ExceptionSummarization/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SRJgt408OA/+v2o47Kjx8Wf+rbCJMmTsbsnkuzVzeP9xfcn4dIoMJXLCKiRlDNzJ3pXLYrXmkyOSY81BehoVHw==", + "path": "microsoft.extensions.diagnostics.exceptionsummarization/9.10.0", + "hashPath": "microsoft.extensions.diagnostics.exceptionsummarization.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+cLxZKUWBbpfIXLLuKcEok9C91PsV1h5xxfUsEnLSXXLNMiPDfrhpb1xajNFcejFPs9Ck/Fi3z71hYDqFBwYg==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.10", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-spfXydiEQENFwxdgr3Y57wwys/FRjfmq5VjHGPh6ct1FJK7X+qNEWYbnZJCMqq0B0oJTMvnItAReOv4mi2Idog==", + "path": "microsoft.extensions.hosting.abstractions/9.0.10", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Http/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xg+P2o+fUyI38up8lpT2M/xNnSMc1M49nN42NcfJHGn5gUrpEHOg9XopcYMM6BOgglCcnYtT6PAb1aASPNA/4A==", + "path": "microsoft.extensions.http/9.0.10", + "hashPath": "microsoft.extensions.http.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Diagnostics/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3IJjOPm4CRmv7zzjPV+RCyvS4kWJ9BNr1k/MWgRTQds6LcIhAgwh+ToZ8O4fKMFlme0EGLvTm27ARKqp468pQw==", + "path": "microsoft.extensions.http.diagnostics/9.10.0", + "hashPath": "microsoft.extensions.http.diagnostics.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Polly/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5wCmeUMoe/p0nRfDCJcUwkfhVoXeKmh9f2cx2zrWzqwLxfeBLT/xOSPtg0HwsYTCJYkN6oup6WmaLQg2aXme2Q==", + "path": "microsoft.extensions.http.polly/9.0.10", + "hashPath": "microsoft.extensions.http.polly.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Resilience/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4Bt58q+Oqpj4VYm3T7hcmsb1zVhmUTNNggDkjlWBIv3bv6MVRPGqIokK2tRHsD8bM4i3GkJLRWe8lQwbsWS6PQ==", + "path": "microsoft.extensions.http.resilience/9.10.0", + "hashPath": "microsoft.extensions.http.resilience.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dbvAQhwSyBbgB2BuVJ8PMVx7BK6WZHWhV/vsSnXl6sRLs9D7yXiIiRpgcPVvN5E/UkzRGW1EPXyc3t1EDxWSzg==", + "path": "microsoft.extensions.identity.core/9.0.1", + "hashPath": "microsoft.extensions.identity.core.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBErjDqd7i2RGpDr040lGm/HbMvxG/1Ta1aSFh91vYtSwEY2rtMI9o7xIDWgNmBKu8ko+XBxt0WcQh6TNFVe7g==", + "path": "microsoft.extensions.identity.stores/9.0.1", + "hashPath": "microsoft.extensions.identity.stores.9.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBXHqE9vyptVhaFnT1R7YJKCve7TqVI10yjjUZBNGMlW2lZ4c031Slt9hxsOzWCzlpPxxIFyf1Yk4a6Iubxx7w==", + "path": "microsoft.extensions.logging/9.0.10", + "hashPath": "microsoft.extensions.logging.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MFUPv/nN1rAQ19w43smm6bbf0JDYN/1HEPHoiMYY50pvDMFpglzWAuoTavByDmZq7UuhjaxwrET3joU69ZHoHQ==", + "path": "microsoft.extensions.logging.abstractions/9.0.10", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwTRpxrmLOXZrbgQHRZ9wS2AtVa/61DFIYk8k1rBCCgA5qW0MBxxQC4BjkaI0wSoHHOv/IUXBeFNK+Y59qe/Ug==", + "path": "microsoft.extensions.logging.configuration/9.0.10", + "hashPath": "microsoft.extensions.logging.configuration.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tw0jYoEdRp2AQMBYTkdCy0OKWcNaazaFQgo4KzdayTkX2N00g2hAacGd9mls4nBz6clP+87eeD0ucWyDrz+VKg==", + "path": "microsoft.extensions.objectpool/9.0.10", + "hashPath": "microsoft.extensions.objectpool.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zMNABt8eBv0B0XrWjFy9nZNgddavaOeq3ZdaD5IlHhRH65MrU7HM+Hd8GjWE3e2VDGFPZFfSAc6XVXC17f9fOA==", + "path": "microsoft.extensions.options/9.0.10", + "hashPath": "microsoft.extensions.options.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLsf2TyVFFxWQPv0PRJj365it1ngIt8utlHJWSZ9OJ2k+NDa/PtBIRsGlF/NkoLwm1m+1vOePNl2MiKfk6lYfQ==", + "path": "microsoft.extensions.options.configurationextensions/9.0.10", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3pl8D1O5ZwMpDkZAT2uXrhQ6NipkwEgDLMFuURiHTf72TvkoMP61QYH3Vk1yrzVHnHBdNZk3cQACz8Zc7YGNhQ==", + "path": "microsoft.extensions.primitives/9.0.10", + "hashPath": "microsoft.extensions.primitives.9.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Resilience/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tNptjYbHq73emZok4HBbpV41Afwoclga5LaKux8RV27lOA2lyQxeJFKNTWYQauJmWxxwXmwG7bgitbnIDh4eXA==", + "path": "microsoft.extensions.resilience/9.10.0", + "hashPath": "microsoft.extensions.resilience.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FGEOTEjMB+1T69PLp5GrG4UOsIjcdNQcoiXpC+KV9NRejl6vSMLhVqQ6g6c+cxLXzx8xc2J90GAMhD1wPHjKHg==", + "path": "microsoft.extensions.telemetry/9.10.0", + "hashPath": "microsoft.extensions.telemetry.9.10.0.nupkg.sha512" + }, + "Microsoft.Extensions.Telemetry.Abstractions/9.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hJflG5if8NqElmybxXDf38d4EPopOo9H+Qg6l5LKTsavqE4CFdA5DIPb9+jjAeL22FN+rs6KuuEIuBPS4PNXvw==", + "path": "microsoft.extensions.telemetry.abstractions/9.10.0", + "hashPath": "microsoft.extensions.telemetry.abstractions.9.10.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", + "path": "microsoft.identitymodel.abstractions/8.14.0", + "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", + "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", + "path": "microsoft.identitymodel.logging/8.14.0", + "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rLr9HmibIpwkrOnsYyF3SGKx+6q2ewKDc3xzITngydqflG3TDVqAaby7yFRbP8du43If2S44fseoAkaL8A0Ivg==", + "path": "microsoft.identitymodel.protocols/8.14.0", + "hashPath": "microsoft.identitymodel.protocols.8.14.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", + "path": "microsoft.identitymodel.tokens/8.14.0", + "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXpDefQ1RXKxdXc3QutP9JywZgXXzLhyB7cYAOQ4Y7JdRczdYTvTZpXMPlKDKzMCQMH5MXIYigh3xW2CV7JQw==", + "path": "microsoft.net.http.headers/9.0.10", + "hashPath": "microsoft.net.http.headers.9.0.10.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "path": "microsoft.openapi/1.6.17", + "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hCbO8box7i/XXiTFqCJ3GoowyLqx3JXxyrbOJ6om7dr+eAknvBNhhUHeJVGAQo44sySZTfdVffp4BrtPeLZOAA==", + "path": "npgsql/9.0.2", + "hashPath": "npgsql.9.0.2.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1A6HpMPbzK+quxdtug1aDHI4BSRTgpi7OaDt8WQh7SFJd2sSQ0nNTZ7sYrwyxVf4AdKdN7XJL9tpiiJjRUaa4g==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.3", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512" + }, + "OpenIddict/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mZecydAF6cXoMMr2Ergk8y08+L6YHAtg5YfrjHSs/ETfTTT56oBY0GfK7ijc4ijrv6idmClcDtf3qUlAY35dGA==", + "path": "openiddict/7.2.0", + "hashPath": "openiddict.7.2.0.nupkg.sha512" + }, + "OpenIddict.Abstractions/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0HB2Eps8shrRx7n3/QkwusiCPcnzcMi2JF16GZqff9Jx2PS3t3VyiOaW54cxPDIESNH3/VcguT+VrQPQrnRtQ==", + "path": "openiddict.abstractions/7.2.0", + "hashPath": "openiddict.abstractions.7.2.0.nupkg.sha512" + }, + "OpenIddict.AspNetCore/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BY8MOSxdz1k5y2XfzEqeHRIE2jXvrrP0XINAEZJMRnvqbt3vQALO+8a6dkJQv/7TWYrhQVKc5GiLoVFi82q/yw==", + "path": "openiddict.aspnetcore/7.2.0", + "hashPath": "openiddict.aspnetcore.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tpCHS8TKABHV+k+cA3jtgxEMdnLopQ2m/wZzSyhO+RTUF91cl99zHM1qedyEzYisQRNkgeHh42d7xmmcJCrL2g==", + "path": "openiddict.client/7.2.0", + "hashPath": "openiddict.client.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client.AspNetCore/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+FdWuk/rWL9ZXS2nteR7c5qAu2YpXLgcQi0wAPO9HJtnd8R9oVQY3PKyoguAEFOHX/9Z9owsdinOzNs9ie4T4g==", + "path": "openiddict.client.aspnetcore/7.2.0", + "hashPath": "openiddict.client.aspnetcore.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client.DataProtection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d5YlnFsa0R23oMaJBdyVraFtw1+GBlvmAHTE7HCb+t1cRpX3q6ljAfQEGQU4uxsEat7q1P3l2j02cAVBavUiWA==", + "path": "openiddict.client.dataprotection/7.2.0", + "hashPath": "openiddict.client.dataprotection.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client.SystemIntegration/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ROHYcM0btCn4ti5iPVcWDQubqFghDHOhmA4PAfSZzPll9I1Y6uGioIg0x3vtcflMuuCWVBM51U7blKW5/4y01w==", + "path": "openiddict.client.systemintegration/7.2.0", + "hashPath": "openiddict.client.systemintegration.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client.SystemNetHttp/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-83oATOHQzA2FN4mi9dMpbsyPL7c++xvNeoHPKshDtSFxhoTw5+RL+1o1RZuDHcIkqAGvdiAxEO2L/vCrbjrzlw==", + "path": "openiddict.client.systemnethttp/7.2.0", + "hashPath": "openiddict.client.systemnethttp.7.2.0.nupkg.sha512" + }, + "OpenIddict.Client.WebIntegration/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vWGoJJc6nIJAQD4wkQO6+uiJTJUW5H6fpUbxUikUprkXMqseKpZRKYqJs97MhEisifRCBC8dNswmyDDbpzhC9g==", + "path": "openiddict.client.webintegration/7.2.0", + "hashPath": "openiddict.client.webintegration.7.2.0.nupkg.sha512" + }, + "OpenIddict.Core/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6TI7+8CRT5MXjK+Qp+8kOdiaKJ724/nmbpuEYSxg1CZsbKmR7doGeP/6KZkh2l0xeonFshSRQr0D0ZeoFFb0SA==", + "path": "openiddict.core/7.2.0", + "hashPath": "openiddict.core.7.2.0.nupkg.sha512" + }, + "OpenIddict.EntityFrameworkCore/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dvahXEFDIYRPH3xy5ZqHklyLQNca4NG6YRPx8f1FWHs+mGCJ1FtM8gqJw3KzUkiRTtKUYzlM8NEcD3BqslEP7g==", + "path": "openiddict.entityframeworkcore/7.2.0", + "hashPath": "openiddict.entityframeworkcore.7.2.0.nupkg.sha512" + }, + "OpenIddict.EntityFrameworkCore.Models/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zZ/0T2fIHV2Yr0YjOj7VKDDUQ0NTlSNTkoSoBEph1Pb26wPolf/fsdCEbdxxXKvuBAmnwMiO5ivIe1Y8Cz8SPw==", + "path": "openiddict.entityframeworkcore.models/7.2.0", + "hashPath": "openiddict.entityframeworkcore.models.7.2.0.nupkg.sha512" + }, + "OpenIddict.Server/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g1YVuxZbmfT7bRB6734JqSMxjBW/MJQSkjeB5RGv3LrvFAU8qVtWu3sNY0OPus5wcSziz2uBW3qqSNdcYLwWog==", + "path": "openiddict.server/7.2.0", + "hashPath": "openiddict.server.7.2.0.nupkg.sha512" + }, + "OpenIddict.Server.AspNetCore/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eOstjA0C09+ujFMSFQ4Z+q6Aq+v7E9W2ZCuW7o0zP5cLz6A1CerT6mWLtnmtRQlR5iMJlRdBVNbVB1v+rkCwbg==", + "path": "openiddict.server.aspnetcore/7.2.0", + "hashPath": "openiddict.server.aspnetcore.7.2.0.nupkg.sha512" + }, + "OpenIddict.Server.DataProtection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1VrQ+hQwgfH0Kic6vvj21V/xYFFTE7PYDZmthrX7V6NhOU5BDsjKQBeJLITiAS3GKij2yI2jH/PXIV6UMGcYfQ==", + "path": "openiddict.server.dataprotection/7.2.0", + "hashPath": "openiddict.server.dataprotection.7.2.0.nupkg.sha512" + }, + "OpenIddict.Validation/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BoBRtCtVLoCXaEXRXRFCCUv4DYOmodqVOivzUEfF4CvRAQYoAeOjdJ3IDYAj3oGRzrir3FCwS/yzXgGjTqOv0w==", + "path": "openiddict.validation/7.2.0", + "hashPath": "openiddict.validation.7.2.0.nupkg.sha512" + }, + "OpenIddict.Validation.AspNetCore/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-416QEbweO7nQFQDVOR1ZScOTWvaPop00Awbi8zygw2axR9Bq6towXsOOjDxNBH4rsytUBJR8MALoKWeQS4TvqQ==", + "path": "openiddict.validation.aspnetcore/7.2.0", + "hashPath": "openiddict.validation.aspnetcore.7.2.0.nupkg.sha512" + }, + "OpenIddict.Validation.DataProtection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-grBOJRBlVi7tOWnzjjDE8kn258SriR4qzZqvnM2BW9etjTBDq8WmK+KJuhiX+x4gcid2GRJpLsGXjyT6SKKxWA==", + "path": "openiddict.validation.dataprotection/7.2.0", + "hashPath": "openiddict.validation.dataprotection.7.2.0.nupkg.sha512" + }, + "OpenIddict.Validation.ServerIntegration/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4i60PqI6vhK3+IVYk/kJCWcs40p1Avh1qiN/feSCz/kco95HC78DmIQSZ5UsjyxycQj9y+ZaJ1pQQJz2V51V8A==", + "path": "openiddict.validation.serverintegration/7.2.0", + "hashPath": "openiddict.validation.serverintegration.7.2.0.nupkg.sha512" + }, + "OpenIddict.Validation.SystemNetHttp/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEUoJt6kk4xpXeC+ZIbE4g3mSkc7utay9GUvCv9xjT+tX0ooPJGWp7GVm+j9HJtfCE3YZAAlWrxXbjwTj6J32A==", + "path": "openiddict.validation.systemnethttp/7.2.0", + "hashPath": "openiddict.validation.systemnethttp.7.2.0.nupkg.sha512" + }, + "OpenTelemetry/1.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WVdOobTllpePASPpuyraV1k+rozdGL6bYPujDpla4MZtRH71m4sfZPbo+3pgqYiskDaK+M2cpGMvCvL6OIPOoQ==", + "path": "opentelemetry/1.11.0", + "hashPath": "opentelemetry.1.11.0.nupkg.sha512" + }, + "OpenTelemetry.Api/1.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaBjGMqrqQv41mIkvPUvmAG7yxDlI6qchKhjXlOF3ZwsdcRRLrdrkiDLIJ90iZgUoKVdP8fE1fCri9nc+ug0Cg==", + "path": "opentelemetry.api/1.11.1", + "hashPath": "opentelemetry.api.1.11.1.nupkg.sha512" + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.11.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMdNMQeW55jXIa/Kybec/br6jC+rWybniTi6DCW5lz1kGghKso+J+FC3uBgiq0/pTqusfeDbO5PEHGM/r5z8Ow==", + "path": "opentelemetry.api.providerbuilderextensions/1.11.1", + "hashPath": "opentelemetry.api.providerbuilderextensions.1.11.1.nupkg.sha512" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-owMYXg0WwbRKXgAZSQ7yoKwiOaz6j2bDozvm+p632fyUcIPr02yRqiRilO5uzTBvb2V6sUQppZ4I7mDRspwoYQ==", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.11.0", + "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.11.0.nupkg.sha512" + }, + "OpenTelemetry.Extensions.Hosting/1.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OuMjhxgIHPNvfZS44XXgNF3g6h460YR5c13duGgBHpsVknxV7d/rHyNi7E0C4sPzadBG6LaIxkVeAYRdqWjNvA==", + "path": "opentelemetry.extensions.hosting/1.11.0", + "hashPath": "opentelemetry.extensions.hosting.1.11.0.nupkg.sha512" + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pBTdlyIGZVfYyB9yizO393RyQgJk+4ViGt+vQb9JI3Qwk9LW6mXreL1oUfVqHCbbSJp2vyMacYxXVBSvtZiBXg==", + "path": "opentelemetry.instrumentation.aspnetcore/1.11.0", + "hashPath": "opentelemetry.instrumentation.aspnetcore.1.11.0.nupkg.sha512" + }, + "Polly/7.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", + "path": "polly/7.2.4", + "hashPath": "polly.7.2.4.nupkg.sha512" + }, + "Polly.Core/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BpE2I6HBYYA5tF0Vn4eoQOGYTYIK1BlF5EXVgkWGn3mqUUjbXAr13J6fZVbp7Q3epRR8yshacBMlsHMhpOiV3g==", + "path": "polly.core/8.4.2", + "hashPath": "polly.core.8.4.2.nupkg.sha512" + }, + "Polly.Extensions/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZ9vRVmR0jV2JtZavt+pGUsQ1O1cuRKG7R7VOZI6ZDy9y6RNPvRvXK1tuS4ffUrv8L0FTea59oEuQzgS0R7zSA==", + "path": "polly.extensions/8.4.2", + "hashPath": "polly.extensions.8.4.2.nupkg.sha512" + }, + "Polly.Extensions.Http/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-drrG+hB3pYFY7w1c3BD+lSGYvH2oIclH8GRSehgfyP5kjnFnHKQuuBhuHLv+PWyFuaTDyk/vfRpnxOzd11+J8g==", + "path": "polly.extensions.http/3.0.0", + "hashPath": "polly.extensions.http.3.0.0.nupkg.sha512" + }, + "Polly.RateLimiting/8.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehTImQ/eUyO07VYW2WvwSmU9rRH200SKJ/3jku9rOkyWE0A2JxNFmAVms8dSn49QLSjmjFRRSgfNyOgr/2PSmA==", + "path": "polly.ratelimiting/8.4.2", + "hashPath": "polly.ratelimiting.8.4.2.nupkg.sha512" + }, + "Serilog/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gmoWVOvKgbME8TYR+gwMf7osROiWAURterc6Rt2dQyX7wtjZYpqFiA/pY6ztjGQKKV62GGCyOcmtP1UKMHgSmA==", + "path": "serilog/4.2.0", + "hashPath": "serilog.4.2.0.nupkg.sha512" + }, + "Serilog.AspNetCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JslDajPlBsn3Pww1554flJFTqROvK9zz9jONNQgn0D8Lx2Trw8L0A8/n6zEQK1DAZWXrJwiVLw8cnTR3YFuYsg==", + "path": "serilog.aspnetcore/9.0.0", + "hashPath": "serilog.aspnetcore.9.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u2TRxuxbjvTAldQn7uaAwePkWxTHIqlgjelekBtilAGL5sYyF3+65NWctN4UrwwGLsDC7c3Vz3HnOlu+PcoxXg==", + "path": "serilog.extensions.hosting/9.0.0", + "hashPath": "serilog.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwSSYqPJeKNzl5AuXVHpGbr6PkZJFlNa14CdIebVjK3k/76kYj/mz5kiTRNVSsSaxM8kAIa1kpy/qyT9E4npRQ==", + "path": "serilog.extensions.logging/9.0.0", + "hashPath": "serilog.extensions.logging.9.0.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==", + "path": "serilog.formatting.compact/3.0.0", + "hashPath": "serilog.formatting.compact.3.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4/Et4Cqwa+F88l5SeFeNZ4c4Z6dEAIKbu3MaQb2Zz9F/g27T5a3wvfMcmCOaAiACjfUb4A6wrlTVfyYUZk3RRQ==", + "path": "serilog.settings.configuration/9.0.0", + "hashPath": "serilog.settings.configuration.9.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQGWqVMClCP2yEyTXPIinSr5c+CBGUvBybPxjAGcf7ctDhadFhrQw03Mv8rJ07/wR5PDfFjewf2LimvXCDzpbA==", + "path": "serilog.sinks.console/6.0.0", + "hashPath": "serilog.sinks.console.6.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Debug/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4BzXcdrgRX7wde9PmHuYd9U6YqycCC28hhpKonK7hx0wb19eiuRj16fPcPSVp0o/Y1ipJuNLYQ00R3q2Zs8FDA==", + "path": "serilog.sinks.debug/3.0.0", + "hashPath": "serilog.sinks.debug.3.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lxjg89Y8gJMmFxVkbZ+qDgjl+T4yC5F7WSLTvA+5q0R04tfKVLRL/EHpYoJ/MEQd2EeCKDuylBIVnAYMotmh2A==", + "path": "serilog.sinks.file/6.0.0", + "hashPath": "serilog.sinks.file.6.0.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.dll new file mode 100644 index 0000000..8939c7d Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.pdb b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.pdb new file mode 100644 index 0000000..1432add Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.pdb differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.runtimeconfig.json b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.staticwebassets.endpoints.json b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Humanizer.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Humanizer.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100755 index 0000000..68aa859 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100755 index 0000000..a4bda8a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll new file mode 100755 index 0000000..71e07fe Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..f5e7933 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..f5f1cee Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Build.Locator.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..446d341 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Build.Locator.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..2e99f76 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..8d56de1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..a17c676 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll new file mode 100755 index 0000000..f70a016 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7253875 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..7d537db Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..6b0db0a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..cfdc87f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..44d6a68 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..0c208db Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll new file mode 100755 index 0000000..37544be Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..cd83951 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..718d8f5 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll new file mode 100755 index 0000000..3c41075 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..e2e531d Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 0000000..8e792ac Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll new file mode 100755 index 0000000..738ad85 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..a73bda2 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll new file mode 100755 index 0000000..5caf94f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..a4b40dd Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..78a4691 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..55be9a8 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll new file mode 100755 index 0000000..f5527b2 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll new file mode 100755 index 0000000..b82955f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 0000000..b1a53fe Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100755 index 0000000..ba69018 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Diagnostics.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Diagnostics.dll new file mode 100755 index 0000000..782dbef Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Diagnostics.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Polly.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Polly.dll new file mode 100755 index 0000000..dfb6e0b Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Polly.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Resilience.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Resilience.dll new file mode 100755 index 0000000..8ae72a6 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Resilience.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.dll new file mode 100755 index 0000000..0d58fd7 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll new file mode 100755 index 0000000..1e4de8a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll new file mode 100755 index 0000000..0cda464 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..9e9c0a9 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll new file mode 100755 index 0000000..c2cc94c Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..ed6be27 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.ObjectPool.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.ObjectPool.dll new file mode 100755 index 0000000..f4a5bef Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100755 index 0000000..4e817d8 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..30994ba Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..c22ff4d Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Resilience.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Resilience.dll new file mode 100755 index 0000000..d1b8cbb Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Resilience.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll new file mode 100755 index 0000000..bd890d5 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.dll new file mode 100755 index 0000000..0d3b4df Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..f85ae59 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..4c4d3ab Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..170078a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..750ee81 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..009ce65 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Net.Http.Headers.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Net.Http.Headers.dll new file mode 100755 index 0000000..476377b Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Net.Http.Headers.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.OpenApi.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..d9f09da Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Mono.TextTemplating.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..4a76511 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Mono.TextTemplating.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100755 index 0000000..4b1283a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.dll new file mode 100755 index 0000000..6c143c0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Abstractions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Abstractions.dll new file mode 100755 index 0000000..6fde6eb Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Abstractions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.AspNetCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.AspNetCore.dll new file mode 100755 index 0000000..204bb51 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.AspNetCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.DataProtection.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.DataProtection.dll new file mode 100755 index 0000000..35eb05a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.DataProtection.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemIntegration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemIntegration.dll new file mode 100755 index 0000000..0968b07 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemIntegration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemNetHttp.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemNetHttp.dll new file mode 100755 index 0000000..0812c8e Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemNetHttp.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.WebIntegration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.WebIntegration.dll new file mode 100755 index 0000000..a28e520 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.WebIntegration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.dll new file mode 100755 index 0000000..74854e2 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Core.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Core.dll new file mode 100755 index 0000000..6471f73 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Core.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.Models.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.Models.dll new file mode 100755 index 0000000..7a50ab4 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.Models.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.dll new file mode 100755 index 0000000..cbd6e01 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.AspNetCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.AspNetCore.dll new file mode 100755 index 0000000..64787a0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.AspNetCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.DataProtection.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.DataProtection.dll new file mode 100755 index 0000000..eb7e7e0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.DataProtection.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.dll new file mode 100755 index 0000000..14fbbce Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.AspNetCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.AspNetCore.dll new file mode 100755 index 0000000..270246c Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.AspNetCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.DataProtection.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.DataProtection.dll new file mode 100755 index 0000000..8e5216f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.DataProtection.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.ServerIntegration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.ServerIntegration.dll new file mode 100755 index 0000000..d48410f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.ServerIntegration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.SystemNetHttp.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.SystemNetHttp.dll new file mode 100755 index 0000000..12ed3ce Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.SystemNetHttp.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.dll new file mode 100755 index 0000000..0dfae28 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll new file mode 100755 index 0000000..51c1599 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.dll new file mode 100755 index 0000000..b61e647 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll new file mode 100755 index 0000000..65011e6 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Extensions.Hosting.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Extensions.Hosting.dll new file mode 100755 index 0000000..1f53fb5 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Extensions.Hosting.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Instrumentation.AspNetCore.dll new file mode 100755 index 0000000..7fcaff0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Instrumentation.AspNetCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.dll b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.dll new file mode 100755 index 0000000..235d89b Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Core.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Core.dll new file mode 100755 index 0000000..bff5c91 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Core.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.Http.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.Http.dll new file mode 100755 index 0000000..ef47032 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.Http.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.dll new file mode 100755 index 0000000..312cf8e Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Polly.RateLimiting.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.RateLimiting.dll new file mode 100755 index 0000000..e29985e Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.RateLimiting.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Polly.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.dll new file mode 100755 index 0000000..31a93a1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Polly.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.AspNetCore.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.AspNetCore.dll new file mode 100755 index 0000000..f8155a1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.AspNetCore.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Hosting.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Hosting.dll new file mode 100755 index 0000000..cb1bd42 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Hosting.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Logging.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Logging.dll new file mode 100755 index 0000000..dbf62b2 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Logging.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Formatting.Compact.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Formatting.Compact.dll new file mode 100755 index 0000000..bbd2122 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Formatting.Compact.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Settings.Configuration.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Settings.Configuration.dll new file mode 100755 index 0000000..0b77828 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Settings.Configuration.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Console.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Console.dll new file mode 100755 index 0000000..96c89a0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Console.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Debug.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Debug.dll new file mode 100755 index 0000000..7c94015 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Debug.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.File.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.File.dll new file mode 100755 index 0000000..17d80f3 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.File.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.dll b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.dll new file mode 100755 index 0000000..1790bfa Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.CodeDom.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.CodeDom.dll new file mode 100755 index 0000000..54c82b6 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.CodeDom.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.AttributedModel.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..1431751 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.AttributedModel.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Convention.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Convention.dll new file mode 100755 index 0000000..e9dacb1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Convention.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Hosting.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..8381202 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Hosting.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Runtime.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..d583c3a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Runtime.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.TypedParts.dll b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..2b278d7 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.TypedParts.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.Development.json b/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.json b/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..b0df93d --- /dev/null +++ b/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,16 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_auth;Username=movingsam;Password=sl52788542" + }, + "OpenIddict": { + "Issuer": "https://auth.fengling.local", + "Audience": "fengling-api" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4e90e20 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8dcc1bd Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8ee4b4d Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..62b0422 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..180a8d9 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4b7bae7 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..05da79f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..bd0bb72 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e128407 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..6a98feb Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8e8ced1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..970399e Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..9e6afdd Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6cb47ac Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..76ddceb Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c41ed4c Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..5fe6dd8 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..6eb37cb Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..046c953 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..368bb7b Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..72bb9d5 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6051d99 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..ad0d2cd Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..829ed5d Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9890df1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eaded8c Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..47f3fd5 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28c43a1 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..203cc83 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..208b1d9 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..895ca11 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c712a37 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4d5b1a3 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..4790c29 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..05bc700 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eb61aff Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..ea192cc Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..08eaeab Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..fce2d36 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e142029 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7c20209 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..be86033 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4be51d2 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..768264c Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..0dc6fae Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..85dd902 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..dfd0a6b Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..f5e6b57 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cafdf21 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ace0504 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..9867f6f Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..2a4742e Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8977db0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..8012969 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9a06288 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e4b3c7a Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..b51ee57 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..d160925 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e27e8be Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..22b6e95 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..57e4d28 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..305dfbf Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28a5c18 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cef3ebc Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..dce3bc0 Binary files /dev/null and b/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs index 3191d4a..e1e5f34 100644 --- a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Fengling.AuthService")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+425bf3b243f3f374150824f1ac0f9cfb24cf27bc")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d52b7c9a46ded51a443127feb64c42410418f05e")] [assembly: System.Reflection.AssemblyProductAttribute("Fengling.AuthService")] [assembly: System.Reflection.AssemblyTitleAttribute("Fengling.AuthService")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfoInputs.cache b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfoInputs.cache index 85e60ea..d166f0e 100644 --- a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfoInputs.cache +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfoInputs.cache @@ -1 +1 @@ -f9ff9211c5a26884b60773f442ad06edc3b76ba0d052a8797ebfca4b405932d5 +b1ff18495fadc0824cf505584e274b7c8db232ffb3d0e074fde2e6db7887210a diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.GeneratedMSBuildEditorConfig.editorconfig b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.GeneratedMSBuildEditorConfig.editorconfig index eba826b..7915e96 100644 --- a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.GeneratedMSBuildEditorConfig.editorconfig +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.GeneratedMSBuildEditorConfig.editorconfig @@ -1,14 +1,22 @@ is_global = true build_property.TargetFramework = net9.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v9.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.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.0 build_property.RootNamespace = Fengling.AuthService build_property.RootNamespace = Fengling.AuthService build_property.ProjectDir = /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cs b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..f3ac3ef --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// 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("Microsoft.AspNetCore.OpenApi")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.assets.cache b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.assets.cache index 4aa4ce7..cb6c3ba 100644 Binary files a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.assets.cache and b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.assets.cache differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.AssemblyReference.cache b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.AssemblyReference.cache index 07c8bb3..da8aea6 100644 Binary files a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.AssemblyReference.cache and b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.AssemblyReference.cache differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache index e9094cb..d14769c 100644 --- a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -1e5c9d19a0ec74d446c11f5020e39413ba8be8e64442067cbf3d5a0dad5ef66c +59b31c9e3a549ff3d769e1284909cfed589b77d67830817f26c3bb82d969d727 diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.FileListAbsolute.txt b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.FileListAbsolute.txt index 3ae6c8d..f2797a2 100644 --- a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.FileListAbsolute.txt +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.FileListAbsolute.txt @@ -5,3 +5,195 @@ /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.AssemblyInfo.cs /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.csproj.CoreCompileInputs.cache /Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cache +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.Development.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/appsettings.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.staticwebassets.endpoints.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.deps.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.runtimeconfig.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Fengling.AuthService.pdb +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Humanizer.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.AmbientMetadata.Application.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Compliance.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.AutoActivation.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.ExceptionSummarization.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Diagnostics.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Polly.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Http.Resilience.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.ObjectPool.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Resilience.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Extensions.Telemetry.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.Net.Http.Headers.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Microsoft.OpenApi.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Mono.TextTemplating.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Abstractions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.AspNetCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.DataProtection.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemIntegration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.SystemNetHttp.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Client.WebIntegration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Core.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.EntityFrameworkCore.Models.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.AspNetCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Server.DataProtection.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.AspNetCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.DataProtection.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.ServerIntegration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenIddict.Validation.SystemNetHttp.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Extensions.Hosting.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/OpenTelemetry.Instrumentation.AspNetCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Polly.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Core.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Polly.Extensions.Http.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Polly.RateLimiting.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.AspNetCore.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Hosting.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Extensions.Logging.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Formatting.Compact.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Settings.Configuration.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Console.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.Debug.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/Serilog.Sinks.File.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.CodeDom.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Convention.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Hosting.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.Runtime.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/System.Composition.TypedParts.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.MvcApplicationPartsAssemblyInfo.cs +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/rjimswa.dswa.cache.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/scopedcss/bundle/Fengling.AuthService.styles.css +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json.cache +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.development.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/swae.build.ex.cache +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.EEA0070F.Up2Date +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/refint/Fengling.AuthService.dll +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.pdb +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.genruntimeconfig.cache +/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/obj/Debug/net9.0/ref/Fengling.AuthService.dll diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.dll b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.dll new file mode 100644 index 0000000..8939c7d Binary files /dev/null and b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.dll differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.genruntimeconfig.cache b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.genruntimeconfig.cache new file mode 100644 index 0000000..a057f56 --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.genruntimeconfig.cache @@ -0,0 +1 @@ +d2f78b93950e59eaa36eb44bc2c0ce108dbbec89d7e479f683b4286b73824ac3 diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.pdb b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.pdb new file mode 100644 index 0000000..1432add Binary files /dev/null and b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.AuthService.pdb differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.EEA0070F.Up2Date b/src/Fengling.AuthService/obj/Debug/net9.0/Fengling.EEA0070F.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/apphost b/src/Fengling.AuthService/obj/Debug/net9.0/apphost new file mode 100755 index 0000000..e2e97cc Binary files /dev/null and b/src/Fengling.AuthService/obj/Debug/net9.0/apphost differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/ref/Fengling.AuthService.dll b/src/Fengling.AuthService/obj/Debug/net9.0/ref/Fengling.AuthService.dll new file mode 100644 index 0000000..9ad8eba Binary files /dev/null and b/src/Fengling.AuthService/obj/Debug/net9.0/ref/Fengling.AuthService.dll differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/refint/Fengling.AuthService.dll b/src/Fengling.AuthService/obj/Debug/net9.0/refint/Fengling.AuthService.dll new file mode 100644 index 0000000..9ad8eba Binary files /dev/null and b/src/Fengling.AuthService/obj/Debug/net9.0/refint/Fengling.AuthService.dll differ diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/src/Fengling.AuthService/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..ad227b7 --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"kj0YdTIP9epXJ4ydBR9yaRr5OemJ36+FlRmnBdiGrUE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nGadCmuBEG\u002BKUP6Powa57G4ZzOO6ibT7XQKZuYm3g44=","elQhyiEcBZcCHMIxyXyx47S4otwc/MEXjAYU/dca/hQ=","QUvWOS2l6Gf\u002Bb29f7UDXsp99Km48zx\u002BXUkHxYrdP5O4=","587UMkRW9Duvi09dG2y/rsS2zVrz865mHwElGvidCDE=","QqAPznb43DBO6jzy8\u002B7Z33yoN6xWI1JSmSVZ/bi6CKo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/src/Fengling.AuthService/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..7d63a29 --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"cWEb6+iVjovCYrac7gX+Ogl5Z4cMpIEURSADGbv9ou0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["nGadCmuBEG\u002BKUP6Powa57G4ZzOO6ibT7XQKZuYm3g44=","elQhyiEcBZcCHMIxyXyx47S4otwc/MEXjAYU/dca/hQ=","QUvWOS2l6Gf\u002Bb29f7UDXsp99Km48zx\u002BXUkHxYrdP5O4=","587UMkRW9Duvi09dG2y/rsS2zVrz865mHwElGvidCDE=","QqAPznb43DBO6jzy8\u002B7Z33yoN6xWI1JSmSVZ/bi6CKo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..ac06e8c --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"xEuO/P20X15kuSBaUa9FroxUIWQVDbMAnZYR8twTV9Y=","Source":"Fengling.AuthService","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json.cache b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..7de3f25 --- /dev/null +++ b/src/Fengling.AuthService/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +xEuO/P20X15kuSBaUa9FroxUIWQVDbMAnZYR8twTV9Y= \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Debug/net9.0/swae.build.ex.cache b/src/Fengling.AuthService/obj/Debug/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.EntityFrameworkCore.targets b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json index bbd98ef..5153f04 100644 --- a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.dgspec.json @@ -49,6 +49,16 @@ "target": "Package", "version": "[9.0.1, )" }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.1, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.3, )" + }, "Npgsql.EntityFrameworkCore.PostgreSQL": { "target": "Package", "version": "[9.0.3, )" diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props index 8dda97d..78bee56 100644 --- a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.props @@ -15,5 +15,10 @@ + + + + /Users/movingsam/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets index b36ed12..33ad9ff 100644 --- a/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets +++ b/src/Fengling.AuthService/obj/Fengling.AuthService.csproj.nuget.g.targets @@ -1,10 +1,13 @@  + + + \ No newline at end of file diff --git a/src/Fengling.AuthService/obj/project.assets.json b/src/Fengling.AuthService/obj/project.assets.json index 010a5ec..dd2dc55 100644 --- a/src/Fengling.AuthService/obj/project.assets.json +++ b/src/Fengling.AuthService/obj/project.assets.json @@ -2,6 +2,19 @@ "version": 3, "targets": { "net9.0": { + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, "Microsoft.AspNetCore.Cryptography.Internal/9.0.1": { "type": "package", "compile": { @@ -48,6 +61,372 @@ } } }, + "Microsoft.AspNetCore.OpenApi/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Build.Framework/17.8.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": { + "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" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "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]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "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" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "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": { + "locale": "zh-Hant" + } + } + }, "Microsoft.EntityFrameworkCore/9.0.10": { "type": "package", "dependencies": { @@ -86,6 +465,37 @@ "Microsoft.EntityFrameworkCore.Analyzers/9.0.10": { "type": "package" }, + "Microsoft.EntityFrameworkCore.Design/9.0.3": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.3", + "Microsoft.Extensions.Caching.Memory": "9.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", + "Microsoft.Extensions.DependencyModel": "9.0.3", + "Microsoft.Extensions.Logging": "9.0.3", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.3" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, "Microsoft.EntityFrameworkCore.Relational/9.0.10": { "type": "package", "dependencies": { @@ -297,7 +707,7 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.Extensions.DependencyModel/9.0.0": { + "Microsoft.Extensions.DependencyModel/9.0.3": { "type": "package", "compile": { "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { @@ -836,6 +1246,34 @@ } } }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "build": { + "buildTransitive/Mono.TextTemplating.targets": {} + } + }, "Npgsql/9.0.2": { "type": "package", "dependencies": { @@ -1572,6 +2010,148 @@ } } }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "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": { + "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/_._": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Diagnostics.DiagnosticSource/9.0.0": { "type": "package", "compile": { @@ -1595,6 +2175,89 @@ "buildTransitive/net8.0/_._": {} } }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Json/9.0.3": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.Threading.RateLimiting/8.0.0": { "type": "package", "compile": { @@ -1614,6 +2277,24 @@ } }, "libraries": { + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, "Microsoft.AspNetCore.Cryptography.Internal/9.0.1": { "sha512": "leaw8hC6wCKfAg2kAYT4plnaHI7o6bKB9IQy0yLWHmgV0GjE449pu0SEnnl7loEzdLgyQrKyVQvfz7wRErqmxQ==", "type": "package", @@ -1667,6 +2348,1004 @@ "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" ] }, + "Microsoft.AspNetCore.OpenApi/9.0.1": { + "sha512": "xRJe8UrLnOGs6hOBrT/4r74q97626H0mABb/DV0smlReIx6uQCENAe+TUqF6hD3NtT4sB+qrvWhAej6kxPxgew==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/9.0.1", + "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.1.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/7.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/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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Build.Framework/17.8.3": { + "sha512": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "type": "package", + "path": "microsoft.build.framework/17.8.3", + "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.3.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", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "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", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.8.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/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "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.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.8.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/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "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.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.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/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "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.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.8.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/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "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.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.EntityFrameworkCore/9.0.10": { "sha512": "WjjxVyOTVs85V7SUe+lZjtGOEeVzF4RO8amrqL4adgbyThNq7vGCFzPw8buZj44gHeQYD5V/uZ/6XuqG9Jq+kA==", "type": "package", @@ -1712,6 +3391,22 @@ "microsoft.entityframeworkcore.analyzers.nuspec" ] }, + "Microsoft.EntityFrameworkCore.Design/9.0.3": { + "sha512": "n5ZrAZ4RFELxYjJxN74lzmFlRrtSpYEYZfZcIJIWPGjSigwJsbya2CnOdjSVDPyfx3rKl9rzbd72D2DNHBJWeA==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/9.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "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.3.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, "Microsoft.EntityFrameworkCore.Relational/9.0.10": { "sha512": "IJNrG5vdmFUvHR8FLLFg9AWpuE8qW1DTEN+fNLGbNTu6cnpZzzqU6+aknAGtTSAEVWosJ3BZ3TOO9wpifUvv3A==", "type": "package", @@ -2003,10 +3698,10 @@ "microsoft.extensions.dependencyinjection.autoactivation.nuspec" ] }, - "Microsoft.Extensions.DependencyModel/9.0.0": { - "sha512": "saxr2XzwgDU77LaQfYFXmddEDRUKHF4DaGMZkNB3qjdVSZlax3//dGJagJkKrGMIPNZs2jVFXITyCCR6UHJNdA==", + "Microsoft.Extensions.DependencyModel/9.0.3": { + "sha512": "194P+NOekDXrPHmM2R8678T4bRfZ2isQXDDAsXKE5qI0QLUnXbwB0upljAkyxk+Kkt1DV1tV+9tHOtHEEh3ksw==", "type": "package", - "path": "microsoft.extensions.dependencymodel/9.0.0", + "path": "microsoft.extensions.dependencymodel/9.0.3", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -2026,7 +3721,7 @@ "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.9.0.3.nupkg.sha512", "microsoft.extensions.dependencymodel.nuspec", "useSharedDesignerContext.txt" ] @@ -2751,6 +4446,38 @@ "microsoft.net.http.headers.nuspec" ] }, + "Microsoft.OpenApi/1.6.17": { + "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "type": "package", + "path": "microsoft.openapi/1.6.17", + "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.nuspec" + ] + }, + "Mono.TextTemplating/3.0.0": { + "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "type": "package", + "path": "mono.texttemplating/3.0.0", + "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" + ] + }, "Npgsql/9.0.2": { "sha512": "hCbO8box7i/XXiTFqCJ3GoowyLqx3JXxyrbOJ6om7dr+eAknvBNhhUHeJVGAQo44sySZTfdVffp4BrtPeLZOAA==", "type": "package", @@ -3869,6 +5596,214 @@ "serilog.sinks.file.nuspec" ] }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections.Immutable/7.0.0": { + "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "type": "package", + "path": "system.collections.immutable/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/7.0.0": { + "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "type": "package", + "path": "system.composition/7.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", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/7.0.0": { + "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "type": "package", + "path": "system.composition.attributedmodel/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/7.0.0": { + "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "type": "package", + "path": "system.composition.convention/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/7.0.0": { + "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "type": "package", + "path": "system.composition.hosting/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/7.0.0": { + "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "type": "package", + "path": "system.composition.runtime/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/7.0.0": { + "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "type": "package", + "path": "system.composition.typedparts/7.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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Diagnostics.DiagnosticSource/9.0.0": { "sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", "type": "package", @@ -3901,6 +5836,186 @@ "useSharedDesignerContext.txt" ] }, + "System.IO.Pipelines/7.0.0": { + "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "type": "package", + "path": "system.io.pipelines/7.0.0", + "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", + "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/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.7.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.Metadata/7.0.0": { + "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "type": "package", + "path": "system.reflection.metadata/7.0.0", + "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", + "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.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/9.0.3": { + "sha512": "r2JRkLjsYrq5Dpo7+y3Wa73OfirZPdVhxiTJWwZ+oJM7FOAe0LkM3GlH+pgkNRdd1G1kwUbmRCdmh4uoaWwu1g==", + "type": "package", + "path": "system.text.json/9.0.3", + "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/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.9.0.3.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.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", + "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/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.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Threading.RateLimiting/8.0.0": { "sha512": "7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==", "type": "package", @@ -3934,6 +6049,8 @@ "projectFileDependencyGroups": { "net9.0": [ "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 9.0.1", + "Microsoft.AspNetCore.OpenApi >= 9.0.1", + "Microsoft.EntityFrameworkCore.Design >= 9.0.3", "Npgsql.EntityFrameworkCore.PostgreSQL >= 9.0.3", "OpenIddict.AspNetCore >= 7.2.0", "OpenIddict.EntityFrameworkCore >= 7.2.0", @@ -3993,6 +6110,16 @@ "target": "Package", "version": "[9.0.1, )" }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.1, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.3, )" + }, "Npgsql.EntityFrameworkCore.PostgreSQL": { "target": "Package", "version": "[9.0.3, )" diff --git a/src/Fengling.AuthService/obj/project.nuget.cache b/src/Fengling.AuthService/obj/project.nuget.cache index 50f87ce..6f24693 100644 --- a/src/Fengling.AuthService/obj/project.nuget.cache +++ b/src/Fengling.AuthService/obj/project.nuget.cache @@ -1,15 +1,27 @@ { "version": 2, - "dgSpecHash": "Jr54e1oeX7w=", + "dgSpecHash": "c8e0guGxU04=", "success": true, "projectFilePath": "/Users/movingsam/Fengling.Refactory.Buiding/src/Fengling.AuthService/Fengling.AuthService.csproj", "expectedPackageFiles": [ + "/Users/movingsam/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.1/microsoft.aspnetcore.cryptography.internal.9.0.1.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.1/microsoft.aspnetcore.cryptography.keyderivation.9.0.1.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.1/microsoft.aspnetcore.identity.entityframeworkcore.9.0.1.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.openapi/9.0.1/microsoft.aspnetcore.openapi.9.0.1.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.build.framework/17.8.3/microsoft.build.framework.17.8.3.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore/9.0.10/microsoft.entityframeworkcore.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.10/microsoft.entityframeworkcore.abstractions.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.10/microsoft.entityframeworkcore.analyzers.9.0.10.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.design/9.0.3/microsoft.entityframeworkcore.design.9.0.3.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.10/microsoft.entityframeworkcore.relational.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.ambientmetadata.application/9.10.0/microsoft.extensions.ambientmetadata.application.9.10.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.10/microsoft.extensions.caching.abstractions.9.0.10.nupkg.sha512", @@ -21,7 +33,7 @@ "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.10/microsoft.extensions.dependencyinjection.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.10/microsoft.extensions.dependencyinjection.abstractions.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencyinjection.autoactivation/9.10.0/microsoft.extensions.dependencyinjection.autoactivation.9.10.0.nupkg.sha512", - "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/9.0.0/microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.extensions.dependencymodel/9.0.3/microsoft.extensions.dependencymodel.9.0.3.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics/9.0.10/microsoft.extensions.diagnostics.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.10/microsoft.extensions.diagnostics.abstractions.9.0.10.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.extensions.diagnostics.exceptionsummarization/9.10.0/microsoft.extensions.diagnostics.exceptionsummarization.9.10.0.nupkg.sha512", @@ -49,6 +61,8 @@ "/Users/movingsam/.nuget/packages/microsoft.identitymodel.protocols/8.14.0/microsoft.identitymodel.protocols.8.14.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.identitymodel.tokens/8.14.0/microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.net.http.headers/9.0.10/microsoft.net.http.headers.9.0.10.nupkg.sha512", + "/Users/movingsam/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512", + "/Users/movingsam/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/npgsql/9.0.2/npgsql.9.0.2.nupkg.sha512", "/Users/movingsam/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.3/npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512", "/Users/movingsam/.nuget/packages/openiddict/7.2.0/openiddict.7.2.0.nupkg.sha512", @@ -91,7 +105,20 @@ "/Users/movingsam/.nuget/packages/serilog.sinks.console/6.0.0/serilog.sinks.console.6.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/serilog.sinks.debug/3.0.0/serilog.sinks.debug.3.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/serilog.sinks.file/6.0.0/serilog.sinks.file.6.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.collections.immutable/7.0.0/system.collections.immutable.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.reflection.metadata/7.0.0/system.reflection.metadata.7.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.text.json/9.0.3/system.text.json.9.0.3.nupkg.sha512", + "/Users/movingsam/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/system.threading.ratelimiting/8.0.0/system.threading.ratelimiting.8.0.0.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512", "/Users/movingsam/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512", diff --git a/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfo.cs b/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfo.cs index 8bb8ee2..f5756e1 100644 --- a/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfo.cs +++ b/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("YarpGateway")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+425bf3b243f3f374150824f1ac0f9cfb24cf27bc")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d52b7c9a46ded51a443127feb64c42410418f05e")] [assembly: System.Reflection.AssemblyProductAttribute("YarpGateway")] [assembly: System.Reflection.AssemblyTitleAttribute("YarpGateway")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfoInputs.cache b/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfoInputs.cache index b710f13..1758a04 100644 --- a/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfoInputs.cache +++ b/src/YarpGateway/obj/Debug/net10.0/YarpGateway.AssemblyInfoInputs.cache @@ -1 +1 @@ -fcca4a1412e299825e89c21922678728c6b3b40695c06967bfca5d3feb9abab8 +1eeba3ffadd654a1cb0f5a3d5c67778e6f01b8ed8162ae7982a98e3e3c44e84f