diff --git a/.idea/.idea.Knots/.idea/dataSources.xml b/.idea/.idea.Knots/.idea/dataSources.xml index 8801ab6..3a9d71a 100644 --- a/.idea/.idea.Knots/.idea/dataSources.xml +++ b/.idea/.idea.Knots/.idea/dataSources.xml @@ -1,7 +1,7 @@ - + sqlserver.jb true com.jetbrains.jdbc.sqlserver.SqlServerDriver diff --git a/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs b/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs index ae5e89f..5da231d 100644 --- a/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs +++ b/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs @@ -9,7 +9,7 @@ public class GetDiscussionEndpoint(KnotsDbContext db, AutoMapper.IMapper mapper) { public override void Configure() { - Get("/groups"); + Get("/discussions"); AllowAnonymous(); } diff --git a/Knots/Endpoints/Key/CreateKeyEndpoint.cs b/Knots/Endpoints/Key/CreateKeyEndpoint.cs index 404e6d8..47c4bd3 100644 --- a/Knots/Endpoints/Key/CreateKeyEndpoint.cs +++ b/Knots/Endpoints/Key/CreateKeyEndpoint.cs @@ -7,7 +7,7 @@ public class CreateKeyEndpoint(KnotsDbContext db, AutoMapper.IMapper mapper) : E { public override void Configure() { - Post("/groups"); + Post("/keys"); AllowAnonymous(); } diff --git a/Knots/Endpoints/Key/DeleteKeyEndpoint.cs b/Knots/Endpoints/Key/DeleteKeyEndpoint.cs index 428679b..d85aa39 100644 --- a/Knots/Endpoints/Key/DeleteKeyEndpoint.cs +++ b/Knots/Endpoints/Key/DeleteKeyEndpoint.cs @@ -7,7 +7,7 @@ public class DeleteKeyEndpoint(KnotsDbContext db, AutoMapper.IMapper mapper) : E { public override void Configure() { - Delete("/groups"); + Delete("/keys"); AllowAnonymous(); } diff --git a/Knots/Endpoints/User/PatchUserProfilePictureEndpoint.cs b/Knots/Endpoints/User/PatchUserProfilePictureEndpoint.cs index bc9ea93..6853b36 100644 --- a/Knots/Endpoints/User/PatchUserProfilePictureEndpoint.cs +++ b/Knots/Endpoints/User/PatchUserProfilePictureEndpoint.cs @@ -8,7 +8,7 @@ public class PatchUserProfilePictureEndpoint(KnotsDbContext db, AutoMapper.IMapp { public override void Configure() { - Patch("/users/{@Id}/profilepicture/", x => new {x.Id}); + Patch("/users/{@Id}/profilepicture/"); AllowAnonymous(); } diff --git a/Knots/KnotsDbContext.cs b/Knots/KnotsDbContext.cs index 0979af5..b06cd91 100644 --- a/Knots/KnotsDbContext.cs +++ b/Knots/KnotsDbContext.cs @@ -17,9 +17,9 @@ public class KnotsDbContext : DbContext //Infos de connexion à la base de données string connectionString = "Server=romaric-thibault.fr;" + - "Database=Knots;" + - "User Id=mathieu;" + - "Password=Onto9-Cage-Afflicted;" + + "Database=knots;" + + "User Id=knots;" + + "Password=knots;" + "TrustServerCertificate=true;"; optionsBuilder.UseSqlServer(connectionString); diff --git a/Knots/Migrations/20260312155557_Initial.Designer.cs b/Knots/Migrations/20260505083044_InitialDatabase.Designer.cs similarity index 69% rename from Knots/Migrations/20260312155557_Initial.Designer.cs rename to Knots/Migrations/20260505083044_InitialDatabase.Designer.cs index 4ecc52e..7b95bff 100644 --- a/Knots/Migrations/20260312155557_Initial.Designer.cs +++ b/Knots/Migrations/20260505083044_InitialDatabase.Designer.cs @@ -12,8 +12,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Knots.Migrations { [DbContext(typeof(KnotsDbContext))] - [Migration("20260312155557_Initial")] - partial class Initial + [Migration("20260505083044_InitialDatabase")] + partial class InitialDatabase { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -33,6 +33,9 @@ namespace Knots.Migrations SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + b.Property("KeyId") + .HasColumnType("int"); + b.HasKey("Id"); b.ToTable("Discussions"); @@ -46,14 +49,17 @@ namespace Knots.Migrations SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - b.Property("Nom") + b.Property("KeyId") + .HasColumnType("int"); + + b.Property("MembersAmount") + .HasColumnType("int"); + + b.Property("Name") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)"); - b.Property("NombreMembres") - .HasColumnType("int"); - b.Property("ProfilePicture") .HasColumnType("nvarchar(max)"); @@ -96,11 +102,31 @@ namespace Knots.Migrations b.Property("Date") .HasColumnType("datetime2"); + b.Property("DiscussionId") + .HasColumnType("int"); + + b.Property("GroupId") + .HasColumnType("int"); + + b.Property("KeyId") + .HasColumnType("int"); + b.Property("Type") .HasColumnType("bit"); + b.Property("UserId") + .HasColumnType("int"); + b.HasKey("Id"); + b.HasIndex("DiscussionId"); + + b.HasIndex("GroupId"); + + b.HasIndex("KeyId"); + + b.HasIndex("UserId"); + b.ToTable("Messages"); }); @@ -159,6 +185,47 @@ namespace Knots.Migrations b.ToTable("Users"); }); + + modelBuilder.Entity("Knots.Models.Message", b => + { + b.HasOne("Knots.Models.Discussion", null) + .WithMany("Messages") + .HasForeignKey("DiscussionId"); + + b.HasOne("Knots.Models.Group", "Group") + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Knots.Models.Key", "Key") + .WithMany() + .HasForeignKey("KeyId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Knots.Models.User", "User") + .WithMany("Messages") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Group"); + + b.Navigation("Key"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("Knots.Models.Discussion", b => + { + b.Navigation("Messages"); + }); + + modelBuilder.Entity("Knots.Models.User", b => + { + b.Navigation("Messages"); + }); #pragma warning restore 612, 618 } } diff --git a/Knots/Migrations/20260312155557_Initial.cs b/Knots/Migrations/20260505083044_InitialDatabase.cs similarity index 64% rename from Knots/Migrations/20260312155557_Initial.cs rename to Knots/Migrations/20260505083044_InitialDatabase.cs index 3f53e7e..96741b9 100644 --- a/Knots/Migrations/20260312155557_Initial.cs +++ b/Knots/Migrations/20260505083044_InitialDatabase.cs @@ -6,7 +6,7 @@ using Microsoft.EntityFrameworkCore.Migrations; namespace Knots.Migrations { /// - public partial class Initial : Migration + public partial class InitialDatabase : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) @@ -16,7 +16,8 @@ namespace Knots.Migrations columns: table => new { Id = table.Column(type: "int", nullable: false) - .Annotation("SqlServer:Identity", "1, 1") + .Annotation("SqlServer:Identity", "1, 1"), + KeyId = table.Column(type: "int", nullable: false) }, constraints: table => { @@ -29,9 +30,10 @@ namespace Knots.Migrations { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), - Nom = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), - NombreMembres = table.Column(type: "int", nullable: false), - ProfilePicture = table.Column(type: "nvarchar(max)", nullable: true) + Name = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), + MembersAmount = table.Column(type: "int", nullable: false), + ProfilePicture = table.Column(type: "nvarchar(max)", nullable: true), + KeyId = table.Column(type: "int", nullable: false) }, constraints: table => { @@ -51,21 +53,6 @@ namespace Knots.Migrations table.PrimaryKey("PK_Keys", x => x.Id); }); - migrationBuilder.CreateTable( - name: "Messages", - columns: table => new - { - Id = table.Column(type: "int", nullable: false) - .Annotation("SqlServer:Identity", "1, 1"), - Contenu = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: false), - Date = table.Column(type: "datetime2", nullable: false), - Type = table.Column(type: "bit", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Messages", x => x.Id); - }); - migrationBuilder.CreateTable( name: "Roles", columns: table => new @@ -96,11 +83,79 @@ namespace Knots.Migrations { table.PrimaryKey("PK_Users", x => x.Id); }); + + migrationBuilder.CreateTable( + name: "Messages", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("SqlServer:Identity", "1, 1"), + Contenu = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: false), + Date = table.Column(type: "datetime2", nullable: false), + Type = table.Column(type: "bit", nullable: false), + GroupId = table.Column(type: "int", nullable: false), + KeyId = table.Column(type: "int", nullable: false), + UserId = table.Column(type: "int", nullable: false), + DiscussionId = table.Column(type: "int", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Messages", x => x.Id); + table.ForeignKey( + name: "FK_Messages_Discussions_DiscussionId", + column: x => x.DiscussionId, + principalTable: "Discussions", + principalColumn: "Id"); + table.ForeignKey( + name: "FK_Messages_Groups_GroupId", + column: x => x.GroupId, + principalTable: "Groups", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Messages_Keys_KeyId", + column: x => x.KeyId, + principalTable: "Keys", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Messages_Users_UserId", + column: x => x.UserId, + principalTable: "Users", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_Messages_DiscussionId", + table: "Messages", + column: "DiscussionId"); + + migrationBuilder.CreateIndex( + name: "IX_Messages_GroupId", + table: "Messages", + column: "GroupId"); + + migrationBuilder.CreateIndex( + name: "IX_Messages_KeyId", + table: "Messages", + column: "KeyId"); + + migrationBuilder.CreateIndex( + name: "IX_Messages_UserId", + table: "Messages", + column: "UserId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { + migrationBuilder.DropTable( + name: "Messages"); + + migrationBuilder.DropTable( + name: "Roles"); + migrationBuilder.DropTable( name: "Discussions"); @@ -110,12 +165,6 @@ namespace Knots.Migrations migrationBuilder.DropTable( name: "Keys"); - migrationBuilder.DropTable( - name: "Messages"); - - migrationBuilder.DropTable( - name: "Roles"); - migrationBuilder.DropTable( name: "Users"); } diff --git a/Knots/Migrations/KnotsDbContextModelSnapshot.cs b/Knots/Migrations/KnotsDbContextModelSnapshot.cs index 121a9b3..d454a40 100644 --- a/Knots/Migrations/KnotsDbContextModelSnapshot.cs +++ b/Knots/Migrations/KnotsDbContextModelSnapshot.cs @@ -30,6 +30,9 @@ namespace Knots.Migrations SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + b.Property("KeyId") + .HasColumnType("int"); + b.HasKey("Id"); b.ToTable("Discussions"); @@ -43,14 +46,17 @@ namespace Knots.Migrations SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - b.Property("Nom") + b.Property("KeyId") + .HasColumnType("int"); + + b.Property("MembersAmount") + .HasColumnType("int"); + + b.Property("Name") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)"); - b.Property("NombreMembres") - .HasColumnType("int"); - b.Property("ProfilePicture") .HasColumnType("nvarchar(max)"); @@ -93,11 +99,31 @@ namespace Knots.Migrations b.Property("Date") .HasColumnType("datetime2"); + b.Property("DiscussionId") + .HasColumnType("int"); + + b.Property("GroupId") + .HasColumnType("int"); + + b.Property("KeyId") + .HasColumnType("int"); + b.Property("Type") .HasColumnType("bit"); + b.Property("UserId") + .HasColumnType("int"); + b.HasKey("Id"); + b.HasIndex("DiscussionId"); + + b.HasIndex("GroupId"); + + b.HasIndex("KeyId"); + + b.HasIndex("UserId"); + b.ToTable("Messages"); }); @@ -156,6 +182,47 @@ namespace Knots.Migrations b.ToTable("Users"); }); + + modelBuilder.Entity("Knots.Models.Message", b => + { + b.HasOne("Knots.Models.Discussion", null) + .WithMany("Messages") + .HasForeignKey("DiscussionId"); + + b.HasOne("Knots.Models.Group", "Group") + .WithMany() + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Knots.Models.Key", "Key") + .WithMany() + .HasForeignKey("KeyId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Knots.Models.User", "User") + .WithMany("Messages") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Group"); + + b.Navigation("Key"); + + b.Navigation("User"); + }); + + modelBuilder.Entity("Knots.Models.Discussion", b => + { + b.Navigation("Messages"); + }); + + modelBuilder.Entity("Knots.Models.User", b => + { + b.Navigation("Messages"); + }); #pragma warning restore 612, 618 } } diff --git a/Knots/Models/Discussion.cs b/Knots/Models/Discussion.cs index da7b4b2..618ea8f 100644 --- a/Knots/Models/Discussion.cs +++ b/Knots/Models/Discussion.cs @@ -7,5 +7,5 @@ public class Discussion [Key] public int Id { get; set; } public List Messages { get; set; } - public Key KeyId { get; set; } + public int KeyId { get; set; } } \ No newline at end of file diff --git a/Knots/Models/Group.cs b/Knots/Models/Group.cs index 3033285..0afc113 100644 --- a/Knots/Models/Group.cs +++ b/Knots/Models/Group.cs @@ -9,7 +9,7 @@ public class Group [Required, MaxLength(50)] public string? Name { get; set; } [Required] public int MembersAmount { get; set; } public string? ProfilePicture { get; set; } - public Key KeyId { get; set; } + public int KeyId { get; set; } List Messages { get; set; } List Users { get; set; } } \ No newline at end of file diff --git a/Knots/Profiles/MessageProfile.cs b/Knots/Profiles/MessageProfile.cs index 9aef675..cd72dcb 100644 --- a/Knots/Profiles/MessageProfile.cs +++ b/Knots/Profiles/MessageProfile.cs @@ -7,7 +7,7 @@ namespace Knots.Profiles; public class MessageProfile : Profile { - MessageProfile() + public MessageProfile() { CreateMap(); CreateMap(); diff --git a/Knots/Profiles/UserProfile.cs b/Knots/Profiles/UserProfile.cs index 941f786..58f77ad 100644 --- a/Knots/Profiles/UserProfile.cs +++ b/Knots/Profiles/UserProfile.cs @@ -7,7 +7,7 @@ namespace Knots.Profiles; public class UserProfile : Profile { - UserProfile() + public UserProfile() { CreateMap(); CreateMap(); diff --git a/Knots/Program.cs b/Knots/Program.cs index a102246..776caee 100644 --- a/Knots/Program.cs +++ b/Knots/Program.cs @@ -1,16 +1,9 @@ using Knots; using FastEndpoints; using FastEndpoints.Swagger; -using Microsoft.OpenApi; WebApplicationBuilder builder = WebApplication.CreateBuilder(args); -builder.Services.AddEndpointsApiExplorer(); -builder.Services.AddSwaggerGen(c => -{ - c.SwaggerDoc("v1", new OpenApiInfo { Title = "Knots", Version = "v1" }); -}); - // On ajoute ici la configuration de la base de données builder.Services.AddDbContext(); @@ -25,21 +18,17 @@ builder.Services.AddCors(options => }); }); +builder.Services.AddAutoMapper(cfg => { }, typeof(Program).Assembly); +builder.Services.AddFastEndpoints(); builder.Services.AddAuthentication(); builder.Services.AddAuthorization(); -builder.Services.AddAutoMapper(cfg => { }, typeof(Program).Assembly); + // On construit l'application en lui donnant vie WebApplication app = builder.Build(); app.UseCors(); -if (app.Environment.IsDevelopment()) -{ - app.UseSwagger(); - app.UseSwaggerUI(); -} - app.UseAuthentication() .UseAuthorization() .UseFastEndpoints(options => @@ -51,4 +40,6 @@ app.UseAuthentication() app.UseHttpsRedirection(); +app.UseCors(); + app.Run(); \ No newline at end of file diff --git a/Knots/bin/Debug/net8.0/AutoMapper.dll b/Knots/bin/Debug/net8.0/AutoMapper.dll new file mode 100755 index 0000000..4a2aaa3 Binary files /dev/null and b/Knots/bin/Debug/net8.0/AutoMapper.dll differ diff --git a/Knots/bin/Debug/net8.0/Knots.deps.json b/Knots/bin/Debug/net8.0/Knots.deps.json index 667caeb..f55787e 100644 --- a/Knots/bin/Debug/net8.0/Knots.deps.json +++ b/Knots/bin/Debug/net8.0/Knots.deps.json @@ -14,8 +14,7 @@ "Microsoft.AspNetCore.OpenApi": "8.0.25", "Microsoft.EntityFrameworkCore": "8.0.25", "Microsoft.EntityFrameworkCore.Design": "8.0.25", - "Microsoft.EntityFrameworkCore.SqlServer": "8.0.25", - "Swashbuckle.AspNetCore": "10.1.7" + "Microsoft.EntityFrameworkCore.SqlServer": "8.0.25" }, "runtime": { "Knots.dll": {} @@ -42,7 +41,7 @@ "System.Memory.Data": "1.0.2", "System.Numerics.Vectors": "4.5.0", "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.5", + "System.Text.Json": "4.7.2", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -59,7 +58,7 @@ "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", "System.Memory": "4.5.4", "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "8.0.5", + "System.Text.Json": "4.7.2", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { @@ -181,7 +180,7 @@ }, "Microsoft.AspNetCore.OpenApi/8.0.25": { "dependencies": { - "Microsoft.OpenApi": "2.4.1" + "Microsoft.OpenApi": "1.4.3" }, "runtime": { "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { @@ -461,22 +460,22 @@ "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { "rid": "win-arm", "assetType": "native", - "fileVersion": "5.12.0.0" + "fileVersion": "0.0.0.0" }, "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { "rid": "win-arm64", "assetType": "native", - "fileVersion": "5.12.0.0" + "fileVersion": "0.0.0.0" }, "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "5.12.0.0" + "fileVersion": "0.0.0.0" }, "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { "rid": "win-x86", "assetType": "native", - "fileVersion": "5.12.0.0" + "fileVersion": "0.0.0.0" } } }, @@ -543,7 +542,6 @@ } } }, - "Microsoft.Extensions.ApiDescription.Server/8.0.0": {}, "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "dependencies": { "Microsoft.Extensions.Primitives": "10.0.3" @@ -776,14 +774,11 @@ } } }, - "Microsoft.OpenApi/2.4.1": { - "dependencies": { - "System.Text.Json": "8.0.5" - }, + "Microsoft.OpenApi/1.4.3": { "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.4.3.0", + "fileVersion": "1.4.3.0" } } }, @@ -967,48 +962,10 @@ } } }, - "Swashbuckle.AspNetCore/10.1.7": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "8.0.0", - "Swashbuckle.AspNetCore.Swagger": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerGen": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerUI": "10.1.7" - } - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "dependencies": { - "Microsoft.OpenApi": "2.4.1" - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.1.7" - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, "System.ClientModel/1.0.0": { "dependencies": { "System.Memory.Data": "1.0.2", - "System.Text.Json": "8.0.5" + "System.Text.Json": "4.7.2" }, "runtime": { "lib/net6.0/System.ClientModel.dll": { @@ -1153,7 +1110,7 @@ "System.Memory.Data/1.0.2": { "dependencies": { "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.5" + "System.Text.Json": "4.7.2" }, "runtime": { "lib/netstandard2.0/System.Memory.Data.dll": { @@ -1229,7 +1186,7 @@ } }, "System.Text.Encodings.Web/8.0.0": {}, - "System.Text.Json/8.0.5": {}, + "System.Text.Json/4.7.2": {}, "System.Threading.Channels/6.0.0": {}, "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/6.0.0": { @@ -1470,13 +1427,6 @@ "path": "microsoft.entityframeworkcore.sqlserver/8.0.25", "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512" }, - "Microsoft.Extensions.ApiDescription.Server/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jDM3a95WerM8g6IcMiBXq1qRS9dqmEUpgnCk2DeMWpPkYtp1ia+CkXabOnK93JmhVlUmv8l9WMPsCSUm+WqkIA==", - "path": "microsoft.extensions.apidescription.server/8.0.0", - "hashPath": "microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512" - }, "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "type": "package", "serviceable": true, @@ -1624,12 +1574,12 @@ "path": "microsoft.identitymodel.tokens/8.14.0", "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" }, - "Microsoft.OpenApi/2.4.1": { + "Microsoft.OpenApi/1.4.3": { "type": "package", "serviceable": true, - "sha512": "sha512-u7QhXCISMQuab3flasb1hoaiERmUqyWsW7tmQODyILoQ7mJV5IRGM+2KKZYo0QUfC13evEOcHAb6TPWgqEQtrw==", - "path": "microsoft.openapi/2.4.1", - "hashPath": "microsoft.openapi.2.4.1.nupkg.sha512" + "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "path": "microsoft.openapi/1.4.3", + "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" }, "Microsoft.SqlServer.Server/1.0.0": { "type": "package", @@ -1736,34 +1686,6 @@ "path": "nswag.generation.aspnetcore/14.6.3", "hashPath": "nswag.generation.aspnetcore.14.6.3.nupkg.sha512" }, - "Swashbuckle.AspNetCore/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vgef8DPT411JU5JjHiDbr0WOxsIVuAvegPGtqmm4Na4JRl/264dfBJcGkiPHsAr5P+Vda+qN1rZKRtBl1rF9aA==", - "path": "swashbuckle.aspnetcore/10.1.7", - "hashPath": "swashbuckle.aspnetcore.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EjLibt/d/QuRv170GoihTbcPUpgzSFm2WKHhnGJFZQ03JYzfuitsM79azaAR8NBwRunU7yScSX6HRE5JUlrEMQ==", - "path": "swashbuckle.aspnetcore.swagger/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PuubO9BjvNn6U3D9kLpuWKY1JtziWw7SsGBq0age1E50uQjQ8Fzl8s0EwzrLfANqYJNgDnJi9l7N1QxcGVB2Zw==", - "path": "swashbuckle.aspnetcore.swaggergen/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iJo3ODyUb/M8Vm8AH1r9y9iAba0w95xsCn3zFVl96ISRHbTDWxi+l7oFVCZqUEdjd97B8VMDPnMliWAdomR8uw==", - "path": "swashbuckle.aspnetcore.swaggerui/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512" - }, "System.ClientModel/1.0.0": { "type": "package", "serviceable": true, @@ -1960,12 +1882,12 @@ "path": "system.text.encodings.web/8.0.0", "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" }, - "System.Text.Json/8.0.5": { + "System.Text.Json/4.7.2": { "type": "package", "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" + "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", + "path": "system.text.json/4.7.2", + "hashPath": "system.text.json.4.7.2.nupkg.sha512" }, "System.Threading.Channels/6.0.0": { "type": "package", diff --git a/Knots/bin/Debug/net8.0/Knots.dll b/Knots/bin/Debug/net8.0/Knots.dll index 16992ca..e633a23 100644 Binary files a/Knots/bin/Debug/net8.0/Knots.dll and b/Knots/bin/Debug/net8.0/Knots.dll differ diff --git a/Knots/bin/Debug/net8.0/Knots.pdb b/Knots/bin/Debug/net8.0/Knots.pdb index b64cc35..241e19b 100644 Binary files a/Knots/bin/Debug/net8.0/Knots.pdb and b/Knots/bin/Debug/net8.0/Knots.pdb differ diff --git a/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs b/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs index 145e6a6..2837c7a 100644 --- a/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs +++ b/Knots/obj/Debug/net8.0/Knots.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Knots")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1044e150f44f765cba1033b223fc3e8eff399bde")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c6914f401ccc044276844a616faf4eab3ed4e706")] [assembly: System.Reflection.AssemblyProductAttribute("Knots")] [assembly: System.Reflection.AssemblyTitleAttribute("Knots")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache b/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache index a2a6033..f9a5ab6 100644 --- a/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache +++ b/Knots/obj/Debug/net8.0/Knots.AssemblyInfoInputs.cache @@ -1 +1 @@ -2e02eac190e1dd301b36d6942613d33acfa20c0004c5c4da7aa15037371ccb28 +bfbdc003ba7092f8bfb2662d1caeb4e417330406c68574a615ad62a4b78ca32e diff --git a/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig b/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig index b13280d..b85789e 100644 --- a/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig +++ b/Knots/obj/Debug/net8.0/Knots.GeneratedMSBuildEditorConfig.editorconfig @@ -9,11 +9,11 @@ build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Knots build_property.RootNamespace = Knots -build_property.ProjectDir = C:\Users\oistig\RiderProjects\Knots\Knots\ +build_property.ProjectDir = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 8.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\oistig\RiderProjects\Knots\Knots +build_property.MSBuildProjectDirectory = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots build_property._RazorSourceGeneratorDebug = diff --git a/Knots/obj/Debug/net8.0/Knots.assets.cache b/Knots/obj/Debug/net8.0/Knots.assets.cache index ce368ef..fe4a2f3 100644 Binary files a/Knots/obj/Debug/net8.0/Knots.assets.cache and b/Knots/obj/Debug/net8.0/Knots.assets.cache differ diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache b/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache index 27255dd..615ec0c 100644 Binary files a/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache and b/Knots/obj/Debug/net8.0/Knots.csproj.AssemblyReference.cache differ diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache b/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache index e1ea814..6e81ce5 100644 --- a/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache +++ b/Knots/obj/Debug/net8.0/Knots.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ae525f2d28057965d029e497edcbfe6df6ff24e93bab7c2fe7d5ac8b6b081558 +48f22ff764b6fb55ab707d3173f08b77b56e040a0fb550a321d3513cebce58eb diff --git a/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt b/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt index 3eb1677..17a53da 100644 --- a/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt +++ b/Knots/obj/Debug/net8.0/Knots.csproj.FileListAbsolute.txt @@ -166,175 +166,4 @@ /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.pdb /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/Knots.genruntimeconfig.cache /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/Debug/net8.0/ref/Knots.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\appsettings.Development.json -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\appsettings.json -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Knots.exe -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Knots.deps.json -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Knots.runtimeconfig.json -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Knots.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Knots.pdb -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\AutoMapper.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Azure.Core.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Azure.Identity.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.Attributes.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.Core.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.JobQueues.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.Messaging.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.Messaging.Core.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FastEndpoints.Swagger.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\FluentValidation.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Humanizer.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.FileProviders.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Options.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Identity.Client.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.OpenApi.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Mono.TextTemplating.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Namotion.Reflection.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Newtonsoft.Json.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NJsonSchema.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NJsonSchema.Annotations.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NJsonSchema.NewtonsoftJson.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NJsonSchema.Yaml.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.Annotations.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.AspNetCore.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.Core.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.Core.Yaml.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.Generation.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\NSwag.Generation.AspNetCore.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.ClientModel.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.CodeDom.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Composition.AttributedModel.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Composition.Convention.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Composition.Hosting.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Composition.Runtime.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Composition.TypedParts.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Drawing.Common.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Memory.Data.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Runtime.Caching.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Security.Permissions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\System.Windows.Extensions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\YamlDotNet.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.csproj.AssemblyReference.cache -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.AssemblyInfoInputs.cache -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.AssemblyInfo.cs -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.csproj.CoreCompileInputs.cache -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.MvcApplicationPartsAssemblyInfo.cs -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.MvcApplicationPartsAssemblyInfo.cache -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets.build.json -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets.development.json -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets\msbuild.Knots.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets\msbuild.build.Knots.props -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Knots.props -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Knots.props -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\staticwebassets.pack.json -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\scopedcss\bundle\Knots.styles.css -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.csproj.Up2Date -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.dll -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\refint\Knots.dll -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.pdb -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\Knots.genruntimeconfig.cache -C:\Users\oistig\RiderProjects\Knots\Knots\obj\Debug\net8.0\ref\Knots.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\oistig\RiderProjects\Knots\Knots\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/bin/Debug/net8.0/AutoMapper.dll diff --git a/Knots/obj/Debug/net8.0/Knots.dll b/Knots/obj/Debug/net8.0/Knots.dll index 16992ca..e633a23 100644 Binary files a/Knots/obj/Debug/net8.0/Knots.dll and b/Knots/obj/Debug/net8.0/Knots.dll differ diff --git a/Knots/obj/Debug/net8.0/Knots.pdb b/Knots/obj/Debug/net8.0/Knots.pdb index b64cc35..241e19b 100644 Binary files a/Knots/obj/Debug/net8.0/Knots.pdb and b/Knots/obj/Debug/net8.0/Knots.pdb differ diff --git a/Knots/obj/Debug/net8.0/ref/Knots.dll b/Knots/obj/Debug/net8.0/ref/Knots.dll index 5bed71d..f7efbef 100644 Binary files a/Knots/obj/Debug/net8.0/ref/Knots.dll and b/Knots/obj/Debug/net8.0/ref/Knots.dll differ diff --git a/Knots/obj/Debug/net8.0/refint/Knots.dll b/Knots/obj/Debug/net8.0/refint/Knots.dll index 5bed71d..f7efbef 100644 Binary files a/Knots/obj/Debug/net8.0/refint/Knots.dll and b/Knots/obj/Debug/net8.0/refint/Knots.dll differ diff --git a/Knots/obj/Knots.csproj.nuget.dgspec.json b/Knots/obj/Knots.csproj.nuget.dgspec.json index ecc534d..84ec575 100644 --- a/Knots/obj/Knots.csproj.nuget.dgspec.json +++ b/Knots/obj/Knots.csproj.nuget.dgspec.json @@ -1,31 +1,26 @@ { "format": 1, "restore": { - "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj": {} + "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj": {} }, "projects": { - "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj": { + "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj", + "projectUniqueName": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", "projectName": "Knots", - "projectPath": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj", - "packagesPath": "C:\\Users\\oistig\\.nuget\\packages\\", - "outputPath": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\obj\\", + "projectPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", + "packagesPath": "/home/carteronm@stsio.lan/.nuget/packages/", + "outputPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\oistig\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "/usr/share/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -103,7 +98,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\oistig\\.dotnet\\sdk\\8.0.419/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Knots/obj/Knots.csproj.nuget.g.props b/Knots/obj/Knots.csproj.nuget.g.props index 0e77329..371bb99 100644 --- a/Knots/obj/Knots.csproj.nuget.g.props +++ b/Knots/obj/Knots.csproj.nuget.g.props @@ -4,23 +4,22 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\oistig\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + /home/carteronm@stsio.lan/.nuget/packages/ + /home/carteronm@stsio.lan/.nuget/packages/ PackageReference - 6.14.0 + 7.0.0 - - + - - - - + + + + - C:\Users\oistig\.nuget\packages\microsoft.extensions.apidescription.server\8.0.0 - C:\Users\oistig\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 + /home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.apidescription.server/8.0.0 + /home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3 \ No newline at end of file diff --git a/Knots/obj/Knots.csproj.nuget.g.targets b/Knots/obj/Knots.csproj.nuget.g.targets index 46b7485..db9c24e 100644 --- a/Knots/obj/Knots.csproj.nuget.g.targets +++ b/Knots/obj/Knots.csproj.nuget.g.targets @@ -1,10 +1,10 @@  - - - - - + + + + + \ No newline at end of file diff --git a/Knots/obj/project.assets.json b/Knots/obj/project.assets.json index 02aa4b6..c1759a5 100644 --- a/Knots/obj/project.assets.json +++ b/Knots/obj/project.assets.json @@ -5019,31 +5019,25 @@ ] }, "packageFolders": { - "C:\\Users\\oistig\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + "/home/carteronm@stsio.lan/.nuget/packages/": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj", + "projectUniqueName": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", "projectName": "Knots", - "projectPath": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj", - "packagesPath": "C:\\Users\\oistig\\.nuget\\packages\\", - "outputPath": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\obj\\", + "projectPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", + "packagesPath": "/home/carteronm@stsio.lan/.nuget/packages/", + "outputPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], "configFilePaths": [ - "C:\\Users\\oistig\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + "/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "/usr/share/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -5121,7 +5115,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\oistig\\.dotnet\\sdk\\8.0.419/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Knots/obj/project.nuget.cache b/Knots/obj/project.nuget.cache index 340c0ba..47011b2 100644 --- a/Knots/obj/project.nuget.cache +++ b/Knots/obj/project.nuget.cache @@ -1,113 +1,113 @@ { "version": 2, - "dgSpecHash": "6sMFyeO1jwc=", + "dgSpecHash": "6D+F9wEbhkI=", "success": true, - "projectFilePath": "C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj", + "projectFilePath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", "expectedPackageFiles": [ - "C:\\Users\\oistig\\.nuget\\packages\\automapper\\16.1.1\\automapper.16.1.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints\\8.0.1\\fastendpoints.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.attributes\\8.0.1\\fastendpoints.attributes.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.core\\8.0.1\\fastendpoints.core.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.jobqueues\\8.0.1\\fastendpoints.jobqueues.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.messaging\\8.0.1\\fastendpoints.messaging.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.messaging.core\\8.0.1\\fastendpoints.messaging.core.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fastendpoints.swagger\\8.0.1\\fastendpoints.swagger.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\fluentvalidation\\12.1.1\\fluentvalidation.12.1.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.3.9\\microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.3.0\\microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.25\\microsoft.aspnetcore.openapi.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.7\\microsoft.data.sqlclient.5.1.7.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.2\\microsoft.data.sqlclient.sni.runtime.5.1.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.25\\microsoft.entityframeworkcore.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.25\\microsoft.entityframeworkcore.abstractions.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.25\\microsoft.entityframeworkcore.analyzers.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.25\\microsoft.entityframeworkcore.design.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.25\\microsoft.entityframeworkcore.relational.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.25\\microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.apidescription.server\\8.0.0\\microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.3\\microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\10.0.3\\microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\10.0.3\\microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\10.0.3\\microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.3\\microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.options\\10.0.3\\microsoft.extensions.options.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.3\\microsoft.extensions.primitives.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.openapi\\2.4.1\\microsoft.openapi.2.4.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\namotion.reflection\\3.4.3\\namotion.reflection.3.4.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\njsonschema\\11.5.2\\njsonschema.11.5.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\njsonschema.annotations\\11.5.2\\njsonschema.annotations.11.5.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\njsonschema.newtonsoftjson\\11.5.2\\njsonschema.newtonsoftjson.11.5.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\njsonschema.yaml\\11.5.2\\njsonschema.yaml.11.5.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.annotations\\14.6.3\\nswag.annotations.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.aspnetcore\\14.6.3\\nswag.aspnetcore.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.core\\14.6.3\\nswag.core.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.core.yaml\\14.6.3\\nswag.core.yaml.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.generation\\14.6.3\\nswag.generation.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\nswag.generation.aspnetcore\\14.6.3\\nswag.generation.aspnetcore.14.6.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\swashbuckle.aspnetcore\\10.1.7\\swashbuckle.aspnetcore.10.1.7.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\10.1.7\\swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\10.1.7\\swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\10.1.7\\swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.3\\system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.formats.asn1\\8.0.2\\system.formats.asn1.8.0.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\oistig\\.nuget\\packages\\yamldotnet\\16.3.0\\yamldotnet.16.3.0.nupkg.sha512" + "/home/carteronm@stsio.lan/.nuget/packages/automapper/16.1.1/automapper.16.1.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints/8.0.1/fastendpoints.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.attributes/8.0.1/fastendpoints.attributes.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.core/8.0.1/fastendpoints.core.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.jobqueues/8.0.1/fastendpoints.jobqueues.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.messaging/8.0.1/fastendpoints.messaging.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.messaging.core/8.0.1/fastendpoints.messaging.core.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.swagger/8.0.1/fastendpoints.swagger.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/fluentvalidation/12.1.1/fluentvalidation.12.1.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.3.9/microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.features/2.3.0/microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/8.0.25/microsoft.aspnetcore.openapi.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.common/4.5.0/microsoft.codeanalysis.common.4.5.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp/4.5.0/microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.5.0/microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.5.0/microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient/5.1.7/microsoft.data.sqlclient.5.1.7.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.2/microsoft.data.sqlclient.sni.runtime.5.1.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore/8.0.25/microsoft.entityframeworkcore.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.25/microsoft.entityframeworkcore.abstractions.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.25/microsoft.entityframeworkcore.analyzers.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.design/8.0.25/microsoft.entityframeworkcore.design.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.25/microsoft.entityframeworkcore.relational.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.sqlserver/8.0.25/microsoft.entityframeworkcore.sqlserver.8.0.25.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.apidescription.server/8.0.0/microsoft.extensions.apidescription.server.8.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.3/microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencymodel/8.0.2/microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.3/microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.3/microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.3/microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging/8.0.1/microsoft.extensions.logging.8.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identity.client/4.61.3/microsoft.identity.client.4.61.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.14.0/microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.logging/8.14.0/microsoft.identitymodel.logging.8.14.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.tokens/8.14.0/microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.openapi/2.4.1/microsoft.openapi.2.4.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.annotations/11.5.2/njsonschema.annotations.11.5.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.newtonsoftjson/11.5.2/njsonschema.newtonsoftjson.11.5.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.yaml/11.5.2/njsonschema.yaml.11.5.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.annotations/14.6.3/nswag.annotations.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.aspnetcore/14.6.3/nswag.aspnetcore.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.core/14.6.3/nswag.core.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.core.yaml/14.6.3/nswag.core.yaml.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.generation/14.6.3/nswag.generation.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/nswag.generation.aspnetcore/14.6.3/nswag.generation.aspnetcore.14.6.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/swashbuckle.aspnetcore/10.1.7/swashbuckle.aspnetcore.10.1.7.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swagger/10.1.7/swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swaggergen/10.1.7/swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/swashbuckle.aspnetcore.swaggerui/10.1.7/swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition.attributedmodel/6.0.0/system.composition.attributedmodel.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition.convention/6.0.0/system.composition.convention.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.diagnostics.diagnosticsource/10.0.3/system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.formats.asn1/8.0.2/system.formats.asn1.8.0.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.io.pipelines/6.0.3/system.io.pipelines.6.0.3.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.text.json/8.0.5/system.text.json.8.0.5.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512", + "/home/carteronm@stsio.lan/.nuget/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/Knots/obj/project.packagespec.json b/Knots/obj/project.packagespec.json index b2ce824..63eab4d 100644 --- a/Knots/obj/project.packagespec.json +++ b/Knots/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj","projectName":"Knots","projectPath":"C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\Knots.csproj","outputPath":"C:\\Users\\oistig\\RiderProjects\\Knots\\Knots\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"AutoMapper":{"target":"Package","version":"[16.1.1, )"},"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[8.0.25, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[10.1.7, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\oistig\\.dotnet\\sdk\\8.0.419/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","projectName":"Knots","projectPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","packagesPath":"","outputPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"/usr/share/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"AutoMapper":{"target":"Package","version":"[16.1.1, )"},"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.25, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[8.0.25, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[10.1.7, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Knots/obj/rider.project.model.nuget.info b/Knots/obj/rider.project.model.nuget.info index 3d51061..02dbe04 100644 --- a/Knots/obj/rider.project.model.nuget.info +++ b/Knots/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17779706818033875 \ No newline at end of file +17779732663562446 \ No newline at end of file diff --git a/Knots/obj/rider.project.restore.info b/Knots/obj/rider.project.restore.info index 85f7ea9..756870d 100644 --- a/Knots/obj/rider.project.restore.info +++ b/Knots/obj/rider.project.restore.info @@ -1 +1 @@ -17779706824573779 \ No newline at end of file +17779733015682447 \ No newline at end of file