diff --git a/.gitignore b/.gitignore index 1e62d61..3b1c3fd 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,27 @@ SECURITY_AUDIT.md tmp/ .env.example + +apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/ + +apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/ + +apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/ + +apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/ + +apps/server-net/src/Modules/Chats/bin/ + +apps/server-net/src/Modules/Chats/obj/ + +apps/server-net/src/Modules/Identity/bin/ + +apps/server-net/src/Modules/Identity/obj/ + +apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/ + +apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/ + +apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/ + +apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/ diff --git a/apps/server-net/src/Modules/Chats/Application/Messages/React/AddReactionCommand.cs b/apps/server-net/src/Modules/Chats/Application/Messages/React/AddReactionCommand.cs index 6bc3b6c..4f1386b 100644 --- a/apps/server-net/src/Modules/Chats/Application/Messages/React/AddReactionCommand.cs +++ b/apps/server-net/src/Modules/Chats/Application/Messages/React/AddReactionCommand.cs @@ -1,9 +1,10 @@ -using Vortex.Modules.Chats.Domain; -using Vortex.Shared.Kernel; -using Vortex.Modules.Chats.Application.Abstractions; -using Microsoft.AspNetCore.SignalR; -using Vortex.Modules.Chats.Infrastructure.SignalR; using MediatR; +using Microsoft.AspNetCore.SignalR; +using Microsoft.Extensions.Logging; +using Vortex.Modules.Chats.Application.Abstractions; +using Vortex.Modules.Chats.Domain; +using Vortex.Modules.Chats.Infrastructure.SignalR; +using Vortex.Shared.Kernel; namespace Vortex.Modules.Chats.Application.Messages.React; @@ -19,46 +20,67 @@ public sealed class AddReactionCommandHandler : ICommandHandler _hubContext; private readonly IUserDisplayNameProvider _displayNameProvider; + private readonly ILogger _logger; public AddReactionCommandHandler( - IMessageRepository messageRepository, + IMessageRepository messageRepository, + IChatsUnitOfWork unitOfWork, IHubContext hubContext, - IUserDisplayNameProvider displayNameProvider) + IUserDisplayNameProvider displayNameProvider, + ILogger logger) { _messageRepository = messageRepository; _unitOfWork = unitOfWork; _hubContext = hubContext; _displayNameProvider = displayNameProvider; + _logger = logger; } public async Task Handle(AddReactionCommand request, CancellationToken cancellationToken) { - try + _logger.LogInformation("AddReaction: MessageId={MessageId}, UserId={UserId}, Emoji={Emoji}, ChatId={ChatId}", + + request.MessageId, request.UserId, request.Emoji, request.ChatId); + + + var success = await _messageRepository.AddReactionAsync( + request.MessageId, + + request.UserId, + + request.Emoji, + + cancellationToken); + + + if (!success) { - var message = await _messageRepository.GetByIdAsync(request.MessageId, cancellationToken); - if (message is null) return Result.Failure(new Error("Messages.NotFound", "Message not found.")); - - message.AddReaction(request.UserId, request.Emoji); - - await _unitOfWork.SaveChangesAsync(cancellationToken); - - var username = await _displayNameProvider.GetDisplayNameAsync(request.UserId, cancellationToken); - - await _hubContext.Clients.Group(request.ChatId.ToString()).SendAsync("reaction_added", new - { - messageId = request.MessageId, - chatId = request.ChatId, - userId = request.UserId, - username = username, - emoji = request.Emoji - }); - - return Result.Success(); + _logger.LogWarning("AddReaction: Message not found {MessageId}", request.MessageId); + return Result.Failure(new Error("Messages.NotFound", "Message not found.")); } - catch (Exception ex) + + await _unitOfWork.SaveChangesAsync(cancellationToken); + + + _logger.LogInformation("AddReaction: Reaction saved to database"); + + var username = await _displayNameProvider.GetDisplayNameAsync(request.UserId, cancellationToken); + + + _logger.LogInformation("AddReaction: Sending reaction_added to group {ChatId}", request.ChatId); + + await _hubContext.Clients.Group(request.ChatId.ToString()).SendAsync("reaction_added", new { - return Result.Failure(new Error("AddReaction.Error", ex.Message)); - } + messageId = request.MessageId, + chatId = request.ChatId, + userId = request.UserId, + username = username, + emoji = request.Emoji + }); + + _logger.LogInformation("AddReaction: reaction_added sent successfully"); + + return Result.Success(); } } diff --git a/apps/server-net/src/Modules/Chats/Application/Messages/React/RemoveReactionCommand.cs b/apps/server-net/src/Modules/Chats/Application/Messages/React/RemoveReactionCommand.cs index 090faeb..207e7ab 100644 --- a/apps/server-net/src/Modules/Chats/Application/Messages/React/RemoveReactionCommand.cs +++ b/apps/server-net/src/Modules/Chats/Application/Messages/React/RemoveReactionCommand.cs @@ -1,9 +1,10 @@ -using Vortex.Modules.Chats.Domain; -using Vortex.Shared.Kernel; -using Vortex.Modules.Chats.Application.Abstractions; -using Microsoft.AspNetCore.SignalR; -using Vortex.Modules.Chats.Infrastructure.SignalR; using MediatR; +using Microsoft.AspNetCore.SignalR; +using Microsoft.Extensions.Logging; +using Vortex.Modules.Chats.Application.Abstractions; +using Vortex.Modules.Chats.Domain; +using Vortex.Modules.Chats.Infrastructure.SignalR; +using Vortex.Shared.Kernel; namespace Vortex.Modules.Chats.Application.Messages.React; @@ -18,41 +19,52 @@ public sealed class RemoveReactionCommandHandler : ICommandHandler _hubContext; + private readonly ILogger _logger; public RemoveReactionCommandHandler( - IMessageRepository messageRepository, + IMessageRepository messageRepository, + IChatsUnitOfWork unitOfWork, - IHubContext hubContext) + IHubContext hubContext, + ILogger logger) { _messageRepository = messageRepository; _unitOfWork = unitOfWork; _hubContext = hubContext; + _logger = logger; } public async Task Handle(RemoveReactionCommand request, CancellationToken cancellationToken) { - try + _logger.LogInformation("RemoveReaction: MessageId={MessageId}, UserId={UserId}, Emoji={Emoji}, ChatId={ChatId}", + request.MessageId, request.UserId, request.Emoji, request.ChatId); + + var success = await _messageRepository.RemoveReactionAsync( + request.MessageId, + request.UserId, + request.Emoji, + cancellationToken); + + if (!success) { - var message = await _messageRepository.GetByIdAsync(request.MessageId, cancellationToken); - if (message is null) return Result.Failure(new Error("Messages.NotFound", "Message not found.")); - - message.RemoveReaction(request.UserId, request.Emoji); - - await _unitOfWork.SaveChangesAsync(cancellationToken); - - await _hubContext.Clients.Group(request.ChatId.ToString()).SendAsync("reaction_removed", new - { - messageId = request.MessageId, - chatId = request.ChatId, - userId = request.UserId, - emoji = request.Emoji - }); - - return Result.Success(); + _logger.LogWarning("RemoveReaction: Reaction not found"); + // Не возвращаем ошибку - реакция уже удалена или не существовала } - catch (Exception ex) + + await _unitOfWork.SaveChangesAsync(cancellationToken); + + _logger.LogInformation("RemoveReaction: Reaction removed from database"); + + await _hubContext.Clients.Group(request.ChatId.ToString()).SendAsync("reaction_removed", new { - return Result.Failure(new Error("RemoveReaction.Error", ex.Message)); - } + messageId = request.MessageId, + chatId = request.ChatId, + userId = request.UserId, + emoji = request.Emoji + }); + + _logger.LogInformation("RemoveReaction: reaction_removed sent successfully"); + + return Result.Success(); } } diff --git a/apps/server-net/src/Modules/Chats/Domain/IMessageRepository.cs b/apps/server-net/src/Modules/Chats/Domain/IMessageRepository.cs index 237e929..439cea4 100644 --- a/apps/server-net/src/Modules/Chats/Domain/IMessageRepository.cs +++ b/apps/server-net/src/Modules/Chats/Domain/IMessageRepository.cs @@ -9,4 +9,6 @@ public interface IMessageRepository Task> GetChatMessagesAsync(Guid chatId, int limit, int offset, CancellationToken cancellationToken); Task> SearchMessagesAsync(string query, Guid? chatId, CancellationToken cancellationToken); Task AddReadReceiptsAsync(Guid userId, List messageIds, CancellationToken cancellationToken); + Task AddReactionAsync(Guid messageId, Guid userId, string emoji, CancellationToken cancellationToken); + Task RemoveReactionAsync(Guid messageId, Guid userId, string emoji, CancellationToken cancellationToken); } diff --git a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/ChatsDbContext.cs b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/ChatsDbContext.cs index 714e785..b182279 100644 --- a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/ChatsDbContext.cs +++ b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/ChatsDbContext.cs @@ -1,11 +1,10 @@ +using MediatR; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Diagnostics; -using MediatR; +using Vortex.Modules.Chats.Application.Abstractions; using Vortex.Modules.Chats.Domain; using Vortex.Shared.Kernel; -using Vortex.Modules.Chats.Application.Abstractions; - namespace Vortex.Modules.Chats.Infrastructure.Persistence; /// @@ -15,8 +14,10 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork { private readonly IMediator _mediator; - public ChatsDbContext(DbContextOptions options, IMediator mediator) - : base(options) + public ChatsDbContext(DbContextOptions options, IMediator mediator) + + : base(options) + { _mediator = mediator; } @@ -24,7 +25,9 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork public DbSet Chats => Set(); public DbSet Messages => Set(); public DbSet ReadReceipts => Set(); - + public DbSet Reactions => Set(); + + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { base.OnConfiguring(optionsBuilder); @@ -40,7 +43,8 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork builder.ToTable("Chats"); builder.HasKey(c => c.Id); builder.Property(c => c.Type).HasConversion(); - + + builder.OwnsMany(c => c.Members, mb => { mb.ToTable("ChatMembers"); @@ -54,7 +58,8 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork { builder.ToTable("Messages"); builder.HasKey(m => m.Id); - + + builder.OwnsMany(m => m.Media, mb => { mb.ToTable("MessageMedia"); @@ -65,18 +70,21 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork .WithOne() .HasForeignKey(x => x.MessageId) .OnDelete(DeleteBehavior.Cascade); - + + builder.Navigation(m => m.Reactions).UsePropertyAccessMode(PropertyAccessMode.Field); builder.PrimitiveCollection(m => m.DeletedByUsers) .HasColumnName("DeletedByUsers") .UsePropertyAccessMode(PropertyAccessMode.Field); - + + builder.HasMany(m => m.ReadBy) .WithOne() .HasForeignKey(r => r.MessageId) .OnDelete(DeleteBehavior.Cascade); - + + builder.Navigation(m => m.ReadBy).UsePropertyAccessMode(PropertyAccessMode.Field); }); @@ -100,7 +108,8 @@ public sealed class ChatsDbContext : DbContext, IChatsUnitOfWork // 1. Получаем все события из агрегатов var domainEvents = ChangeTracker .Entries() - .SelectMany(x => + .SelectMany(x => + { if (x.Entity is AggregateRoot root) { diff --git a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/MessageRepository.cs b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/MessageRepository.cs index b713a4b..7aede53 100644 --- a/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/MessageRepository.cs +++ b/apps/server-net/src/Modules/Chats/Infrastructure/Persistence/MessageRepository.cs @@ -46,7 +46,8 @@ public sealed class MessageRepository : IMessageRepository { q = q.Where(m => m.ChatId == chatId.Value); } - + + return await q.Where(m => m.Content != null && m.Content.Contains(query)) .OrderByDescending(m => m.CreatedAt) .Take(50) @@ -71,4 +72,43 @@ public sealed class MessageRepository : IMessageRepository // SaveChangesAsync будет вызван в handlers или через UnitOfWork, но если мы здесь await _dbContext.SaveChangesAsync(cancellationToken); } + + public async Task AddReactionAsync(Guid messageId, Guid userId, string emoji, CancellationToken cancellationToken) + { + // Проверяем, существует ли сообщение + var messageExists = await _dbContext.Messages + .AnyAsync(m => m.Id == messageId, cancellationToken); + + + if (!messageExists) return false; + + // Проверяем, есть ли уже такая реакция + var existingReaction = await _dbContext.Reactions + .FirstOrDefaultAsync(r => r.MessageId == messageId && r.UserId == userId && r.Emoji == emoji, cancellationToken); + + + if (existingReaction != null) return true; // Уже существует + + // Добавляем новую реакцию напрямую + var reaction = new Reaction(messageId, userId, emoji); + _dbContext.Reactions.Add(reaction); + + + return true; + } + + public async Task RemoveReactionAsync(Guid messageId, Guid userId, string emoji, CancellationToken cancellationToken) + { + // Ищем реакцию + var reaction = await _dbContext.Reactions + .FirstOrDefaultAsync(r => r.MessageId == messageId && r.UserId == userId && r.Emoji == emoji, cancellationToken); + + + if (reaction == null) return false; + + _dbContext.Reactions.Remove(reaction); + + + return true; + } } diff --git a/apps/server-net/src/Modules/Chats/Infrastructure/SignalR/ChatHub.cs b/apps/server-net/src/Modules/Chats/Infrastructure/SignalR/ChatHub.cs index 5e0aa3f..e8c2e7f 100644 --- a/apps/server-net/src/Modules/Chats/Infrastructure/SignalR/ChatHub.cs +++ b/apps/server-net/src/Modules/Chats/Infrastructure/SignalR/ChatHub.cs @@ -1,11 +1,12 @@ -using Microsoft.AspNetCore.SignalR; +using System.Collections.Concurrent; +using System.Security.Claims; using MediatR; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.SignalR; +using Microsoft.Extensions.Logging; using Vortex.Modules.Chats.Application.Messages.Send; using Vortex.Modules.Chats.Domain; using Vortex.Shared.Kernel; -using Microsoft.AspNetCore.Authorization; -using System.Collections.Concurrent; -using System.Security.Claims; namespace Vortex.Modules.Chats.Infrastructure.SignalR; @@ -23,12 +24,14 @@ public sealed class ChatHub : Hub private readonly ISender _sender; private readonly IUserContext _userContext; private readonly IChatRepository _chatRepository; + private readonly ILogger _logger; - public ChatHub(ISender sender, IUserContext userContext, IChatRepository chatRepository) + public ChatHub(ISender sender, IUserContext userContext, IChatRepository chatRepository, ILogger logger) { _sender = sender; _userContext = userContext; _chatRepository = chatRepository; + _logger = logger; } public override async Task OnConnectedAsync() @@ -48,6 +51,10 @@ public sealed class ChatHub : Hub await Groups.AddToGroupAsync(Context.ConnectionId, chat.Id.ToString()); } + _logger.LogInformation("User {UserId} connected with {ConnectionId}, added to {ChatCount} chats", + + userId, Context.ConnectionId, userChats.Count); + await Clients.Others.SendAsync("user_online", new { userId }); } await base.OnConnectedAsync(); @@ -67,6 +74,7 @@ public sealed class ChatHub : Hub await Clients.Others.SendAsync("user_offline", new { userId, lastSeen = DateTime.UtcNow }); } } + _logger.LogInformation("User {UserId} disconnected", userId); } await base.OnDisconnectedAsync(exception); } @@ -78,7 +86,8 @@ public sealed class ChatHub : Hub [HubMethodName("send_message")] public async Task SendMessage(SendMessageHubRequest request) { - var attachments = request.Attachments?.Select(a => + var attachments = request.Attachments?.Select(a => + new AttachmentRequest(a.Type, a.Url, a.FileName, a.FileSize)).ToList(); var command = new SendMessageCommand( @@ -165,25 +174,43 @@ public sealed class ChatHub : Hub [HubMethodName("add_reaction")] public async Task AddReaction(AddReactionRequest request) { + _logger.LogInformation("AddReaction called: MessageId={MessageId}, ChatId={ChatId}, Emoji={Emoji}, UserId={UserId}", + + request.MessageId, request.ChatId, request.Emoji, _userContext.UserId); + + var command = new Vortex.Modules.Chats.Application.Messages.React.AddReactionCommand( request.MessageId, _userContext.UserId, request.Emoji, request.ChatId); var result = await _sender.Send(command); if (result.IsFailure) { + _logger.LogWarning("AddReaction failed: {Error}", result.Error.Description); throw new HubException(result.Error.Description); } + + + _logger.LogInformation("AddReaction completed successfully"); } [HubMethodName("remove_reaction")] public async Task RemoveReaction(RemoveReactionRequest request) { + _logger.LogInformation("RemoveReaction called: MessageId={MessageId}, ChatId={ChatId}, Emoji={Emoji}, UserId={UserId}", + + request.MessageId, request.ChatId, request.Emoji, _userContext.UserId); + + var command = new Vortex.Modules.Chats.Application.Messages.React.RemoveReactionCommand( request.MessageId, _userContext.UserId, request.Emoji, request.ChatId); var result = await _sender.Send(command); if (result.IsFailure) { + _logger.LogWarning("RemoveReaction failed: {Error}", result.Error.Description); throw new HubException(result.Error.Description); } + + + _logger.LogInformation("RemoveReaction completed successfully"); } // ──────────────────────────────────────────────────────────────── @@ -239,8 +266,9 @@ public sealed class ChatHub : Hub offer = request.Offer, callType = request.CallType, chatId = request.ChatId, - callerInfo = new - { + callerInfo = new + { + id = _userContext.UserId.ToString(), displayName = displayName, avatar = avatar, @@ -326,7 +354,8 @@ public sealed class ChatHub : Hub { var chatId = request.ChatId; var userId = _userContext.UserId.ToString(); - + + var displayName = Context.User?.FindFirstValue("name") ?? Context.User?.FindFirstValue(ClaimTypes.Name) ?? "User"; var avatar = Context.User?.FindFirstValue("avatar"); var username = Context.User?.FindFirstValue("unique_name") ?? Context.User?.Identity?.Name ?? "user"; @@ -337,7 +366,8 @@ public sealed class ChatHub : Hub participants.TryAdd(userId, userInfo); // Notify others - await Clients.Group(chatId).SendAsync("group_call_user_joined", new { + await Clients.Group(chatId).SendAsync("group_call_user_joined", new + { chatId = chatId, userId = userId, userInfo = userInfo @@ -345,7 +375,8 @@ public sealed class ChatHub : Hub // Send current participants to joiner (excluding self) var others = participants.Values.Where(p => p.Id != userId).ToList(); - await Clients.Caller.SendAsync("group_call_participants", new { + await Clients.Caller.SendAsync("group_call_participants", new + { chatId = chatId, participants = others }); @@ -364,7 +395,8 @@ public sealed class ChatHub : Hub } } - await Clients.Group(chatId).SendAsync("group_call_user_left", new { + await Clients.Group(chatId).SendAsync("group_call_user_left", new + { chatId = chatId, userId = userId }); @@ -437,7 +469,8 @@ public sealed class ChatHub : Hub } } - await Clients.Group(chatId).SendAsync("screen_share_started", new { + await Clients.Group(chatId).SendAsync("screen_share_started", new + { chatId = chatId, userId = userId }); @@ -455,7 +488,8 @@ public sealed class ChatHub : Hub } } - await Clients.Group(chatId).SendAsync("screen_share_stopped", new { + await Clients.Group(chatId).SendAsync("screen_share_stopped", new + { chatId = chatId, userId = userId }); @@ -467,9 +501,12 @@ public sealed class ChatHub : Hub public record AttachmentHubRequest(string Type, string Url, string? FileName, long? FileSize); public record SendMessageHubRequest( - Guid ChatId, - string? Content, - string Type, + Guid ChatId, + + string? Content, + + string Type, + List? Attachments = null, Guid? ReplyToId = null, string? Quote = null, diff --git a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.deps.json b/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.deps.json deleted file mode 100644 index 0f9b08e..0000000 --- a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.deps.json +++ /dev/null @@ -1,338 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Modules.Chats/1.0.0": { - "dependencies": { - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Modules.Chats.dll": {} - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Modules.Chats/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.dll b/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.dll deleted file mode 100644 index 4055ad9..0000000 Binary files a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.pdb b/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.pdb deleted file mode 100644 index 294411c..0000000 Binary files a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Modules.Chats.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index c28b7cf..0000000 Binary files a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 1300c10..0000000 Binary files a/apps/server-net/src/Modules/Chats/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.M.639B64A4.Up2Date b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.M.639B64A4.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs deleted file mode 100644 index affd176..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9daafae9c5956290dda1c718bb49ff72c77fafb8")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache deleted file mode 100644 index 31d4057..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a2ba88a9d7ac278056acbcb427c11fabed9db58aac98411359499b8b1b34811c diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0671bb0..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Chats -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.assets.cache b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.assets.cache deleted file mode 100644 index 124d5ab..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache deleted file mode 100644 index 8e7a9b1..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache deleted file mode 100644 index ef5380f..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b343bc938c4e02003d18f33f285c39da0e0ac9c0a7417a27b8b695b2e991a45e diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt deleted file mode 100644 index 4997a8d..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\bin\Debug\net10.0\Vortex.Modules.Chats.deps.json -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\bin\Debug\net10.0\Vortex.Modules.Chats.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\bin\Debug\net10.0\Vortex.Modules.Chats.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.M.639B64A4.Up2Date -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\refint\Vortex.Modules.Chats.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\Vortex.Modules.Chats.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Debug\net10.0\ref\Vortex.Modules.Chats.dll diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.dll b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.dll deleted file mode 100644 index 4055ad9..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.pdb b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.pdb deleted file mode 100644 index 294411c..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/Vortex.Modules.Chats.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/ref/Vortex.Modules.Chats.dll b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/ref/Vortex.Modules.Chats.dll deleted file mode 100644 index 4550cd8..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/ref/Vortex.Modules.Chats.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/refint/Vortex.Modules.Chats.dll b/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/refint/Vortex.Modules.Chats.dll deleted file mode 100644 index 4550cd8..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Debug/net10.0/refint/Vortex.Modules.Chats.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs deleted file mode 100644 index c316404..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50d4d75c04b5524c8439d9168f3a5a578f26d47c")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Chats")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache deleted file mode 100644 index b676b02..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -502c80adbbed16d300408e4f330e018209bcd47b2fbedfbab86312811987ae88 diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0671bb0..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Chats -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.assets.cache b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.assets.cache deleted file mode 100644 index 8e18900..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache deleted file mode 100644 index b56ff78..0000000 Binary files a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache deleted file mode 100644 index 2cf0d16..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6bc2815f955344103df2c21eeb6c589717e719c8f8f4f966b83b146f84113a5b diff --git a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt b/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt deleted file mode 100644 index df26c8f..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Release/net10.0/Vortex.Modules.Chats.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,5 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Release\net10.0\Vortex.Modules.Chats.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Release\net10.0\Vortex.Modules.Chats.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Release\net10.0\Vortex.Modules.Chats.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Release\net10.0\Vortex.Modules.Chats.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Modules\Chats\obj\Release\net10.0\Vortex.Modules.Chats.csproj.CoreCompileInputs.cache diff --git a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.dgspec.json b/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.dgspec.json deleted file mode 100644 index 027fcc4..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.dgspec.json +++ /dev/null @@ -1,867 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "projectName": "Vortex.Modules.Chats", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.props b/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.props deleted file mode 100644 index 2fe461f..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.targets b/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.targets deleted file mode 100644 index df37c13..0000000 --- a/apps/server-net/src/Modules/Chats/obj/Vortex.Modules.Chats.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Modules/Chats/obj/project.assets.json b/apps/server-net/src/Modules/Chats/obj/project.assets.json deleted file mode 100644 index 8e8f7b8..0000000 --- a/apps/server-net/src/Modules/Chats/obj/project.assets.json +++ /dev/null @@ -1,1299 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1" - }, - "compile": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - } - } - } - }, - "libraries": { - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "sha512": "kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "sha512": "qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "sha512": "pQeMHCyD3yTtCEGnHV4VsgKUvrESo3MR5mnh8sgQ1hWYmI1YFsUutDowBIxkobeWRtaRmBqQAtF7XQFW6FWuNA==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "sha512": "DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "sha512": "CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "sha512": "3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "sha512": "NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.4": { - "sha512": "S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.4": { - "sha512": "kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "type": "package", - "path": "microsoft.extensions.options/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.10.0.4.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "path": "../../Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj", - "msbuildProject": "../../Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "MediatR >= 12.0.1", - "Microsoft.EntityFrameworkCore >= 10.0.4", - "Microsoft.EntityFrameworkCore.Relational >= 10.0.4", - "Microsoft.Extensions.Configuration.Abstractions >= 10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions >= 10.0.4", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", - "Vortex.Shared.Kernel >= 1.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "projectName": "Vortex.Modules.Chats", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Chats/obj/project.nuget.cache b/apps/server-net/src/Modules/Chats/obj/project.nuget.cache deleted file mode 100644 index c829b91..0000000 --- a/apps/server-net/src/Modules/Chats/obj/project.nuget.cache +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "rWL1CDgJNu8=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.4\\microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.4\\microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.4\\microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.4\\microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.4\\microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.4\\microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.4\\microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging\\10.0.4\\microsoft.extensions.logging.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options\\10.0.4\\microsoft.extensions.options.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.deps.json b/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.deps.json deleted file mode 100644 index bad78bc..0000000 --- a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.deps.json +++ /dev/null @@ -1,506 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Modules.Identity/1.0.0": { - "dependencies": { - "BCrypt.Net-Next": "4.1.0", - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Modules.Identity.dll": {} - } - }, - "BCrypt.Net-Next/4.1.0": { - "runtime": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.1.0.0" - } - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Configuration.Binder": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Modules.Identity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BCrypt.Net-Next/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", - "path": "bcrypt.net-next/4.1.0", - "hashPath": "bcrypt.net-next.4.1.0.nupkg.sha512" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-601B3ha6XvOsOcu9GVd2dVd1KEDuqr49r46GUWhNJkeZDhZ/NI9EYTyoeQjZQEi8ZUvnrv++FbTfGmC8F0vgtg==", - "path": "microsoft.extensions.configuration/10.0.4", - "hashPath": "microsoft.extensions.configuration.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ilnL/kQn62Gx3OZCVT7SJrBNi0CRIhS8VEunmE6i/a9lp9l/eos+hpxMvCW4iX2aVc/NWeDhxuQusZL7zvmKIg==", - "path": "microsoft.extensions.configuration.binder/10.0.4", - "hashPath": "microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-amQUITwSnkbMPxh/ngneNykz4UtytEOXo0M/pbwdBiQU57EAVvBV5PFI8r/dRastUj0yxHVwrH64N9ACR5SdGQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.4", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "hashPath": "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "path": "microsoft.identitymodel.logging/8.16.0", - "hashPath": "microsoft.identitymodel.logging.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "path": "microsoft.identitymodel.tokens/8.16.0", - "hashPath": "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "hashPath": "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.dll deleted file mode 100644 index 5ea84ed..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.pdb b/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.pdb deleted file mode 100644 index 6f515cb..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Modules.Identity.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index c28b7cf..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 1300c10..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.deps.json b/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.deps.json deleted file mode 100644 index bad78bc..0000000 --- a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.deps.json +++ /dev/null @@ -1,506 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Modules.Identity/1.0.0": { - "dependencies": { - "BCrypt.Net-Next": "4.1.0", - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Modules.Identity.dll": {} - } - }, - "BCrypt.Net-Next/4.1.0": { - "runtime": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.1.0.0" - } - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Configuration.Binder": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Modules.Identity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BCrypt.Net-Next/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", - "path": "bcrypt.net-next/4.1.0", - "hashPath": "bcrypt.net-next.4.1.0.nupkg.sha512" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-601B3ha6XvOsOcu9GVd2dVd1KEDuqr49r46GUWhNJkeZDhZ/NI9EYTyoeQjZQEi8ZUvnrv++FbTfGmC8F0vgtg==", - "path": "microsoft.extensions.configuration/10.0.4", - "hashPath": "microsoft.extensions.configuration.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ilnL/kQn62Gx3OZCVT7SJrBNi0CRIhS8VEunmE6i/a9lp9l/eos+hpxMvCW4iX2aVc/NWeDhxuQusZL7zvmKIg==", - "path": "microsoft.extensions.configuration.binder/10.0.4", - "hashPath": "microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-amQUITwSnkbMPxh/ngneNykz4UtytEOXo0M/pbwdBiQU57EAVvBV5PFI8r/dRastUj0yxHVwrH64N9ACR5SdGQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.4", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "hashPath": "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "path": "microsoft.identitymodel.logging/8.16.0", - "hashPath": "microsoft.identitymodel.logging.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "path": "microsoft.identitymodel.tokens/8.16.0", - "hashPath": "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "hashPath": "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.dll deleted file mode 100644 index 3a438d1..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.pdb b/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.pdb deleted file mode 100644 index 81529fa..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Modules.Identity.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index 616cb29..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 81f51d8..0000000 Binary files a/apps/server-net/src/Modules/Identity/bin/Release/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.M.A09DABDE.Up2Date b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.M.A09DABDE.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs deleted file mode 100644 index 7acf0eb..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9daafae9c5956290dda1c718bb49ff72c77fafb8")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache deleted file mode 100644 index d5049df..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -2a9c951494821db92633ba9e6d674467f449af4a90ac9fed0ea49175b5b7917b diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b589f06..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Identity -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.assets.cache b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.assets.cache deleted file mode 100644 index f3cfbd3..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache deleted file mode 100644 index 6c91979..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache deleted file mode 100644 index e62d54c..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f5710cf9cae3bcef5bc636925e0d10679b38fdce0a7e8d6824b7b47ab526589d diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt deleted file mode 100644 index 4ed665d..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Debug\net10.0\Vortex.Modules.Identity.deps.json -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Debug\net10.0\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Debug\net10.0\Vortex.Modules.Identity.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.M.A09DABDE.Up2Date -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\refint\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\Vortex.Modules.Identity.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Debug\net10.0\ref\Vortex.Modules.Identity.dll diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.dll deleted file mode 100644 index 5ea84ed..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.pdb b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.pdb deleted file mode 100644 index 6f515cb..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/Vortex.Modules.Identity.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/ref/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/ref/Vortex.Modules.Identity.dll deleted file mode 100644 index 61119c4..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/ref/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/refint/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/refint/Vortex.Modules.Identity.dll deleted file mode 100644 index 61119c4..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Debug/net10.0/refint/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.M.A09DABDE.Up2Date b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.M.A09DABDE.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs deleted file mode 100644 index 15af1dc..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50d4d75c04b5524c8439d9168f3a5a578f26d47c")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Identity")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache deleted file mode 100644 index 0307864..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -91964d6add6a6d203c0d0499957c681367d1b27d84303bc7e9a89c595ba68c20 diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b589f06..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Identity -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.assets.cache b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.assets.cache deleted file mode 100644 index 8bc190b..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache deleted file mode 100644 index e56744a..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache deleted file mode 100644 index e818a65..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c04e42e4cae354dbae5429c5e5cd2fa2a6bb2fcb9d6f7206ced66348a1d0cae3 diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt deleted file mode 100644 index 0545f83..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Release\net10.0\Vortex.Modules.Identity.deps.json -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Release\net10.0\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Release\net10.0\Vortex.Modules.Identity.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Release\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\bin\Release\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.M.A09DABDE.Up2Date -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\refint\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\Vortex.Modules.Identity.pdb -E:\GIT\forkmessager\apps\server-net\src\Modules\Identity\obj\Release\net10.0\ref\Vortex.Modules.Identity.dll diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.dll deleted file mode 100644 index 3a438d1..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.pdb b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.pdb deleted file mode 100644 index 81529fa..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/Vortex.Modules.Identity.pdb and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/ref/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/ref/Vortex.Modules.Identity.dll deleted file mode 100644 index 4713309..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/ref/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/refint/Vortex.Modules.Identity.dll b/apps/server-net/src/Modules/Identity/obj/Release/net10.0/refint/Vortex.Modules.Identity.dll deleted file mode 100644 index 4713309..0000000 Binary files a/apps/server-net/src/Modules/Identity/obj/Release/net10.0/refint/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.dgspec.json b/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.dgspec.json deleted file mode 100644 index cc427d1..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.dgspec.json +++ /dev/null @@ -1,883 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "projectName": "Vortex.Modules.Identity", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.1.0, )" - }, - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.16.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.16.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.props b/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.props deleted file mode 100644 index 2fe461f..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.targets b/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.targets deleted file mode 100644 index 1b01fb7..0000000 --- a/apps/server-net/src/Modules/Identity/obj/Vortex.Modules.Identity.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/obj/project.assets.json b/apps/server-net/src/Modules/Identity/obj/project.assets.json deleted file mode 100644 index a02c8e9..0000000 --- a/apps/server-net/src/Modules/Identity/obj/project.assets.json +++ /dev/null @@ -1,1731 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "BCrypt.Net-Next/4.1.0": { - "type": "package", - "compile": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - } - }, - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Configuration.Binder": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1" - }, - "compile": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - } - } - } - }, - "libraries": { - "BCrypt.Net-Next/4.1.0": { - "sha512": "5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", - "type": "package", - "path": "bcrypt.net-next/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bcrypt.net-next.4.1.0.nupkg.sha512", - "bcrypt.net-next.nuspec", - "ico.png", - "lib/net10.0/BCrypt.Net-Next.dll", - "lib/net10.0/BCrypt.Net-Next.xml", - "lib/net20/BCrypt.Net-Next.dll", - "lib/net20/BCrypt.Net-Next.xml", - "lib/net35/BCrypt.Net-Next.dll", - "lib/net35/BCrypt.Net-Next.xml", - "lib/net462/BCrypt.Net-Next.dll", - "lib/net462/BCrypt.Net-Next.xml", - "lib/net472/BCrypt.Net-Next.dll", - "lib/net472/BCrypt.Net-Next.xml", - "lib/net48/BCrypt.Net-Next.dll", - "lib/net48/BCrypt.Net-Next.xml", - "lib/netstandard2.0/BCrypt.Net-Next.dll", - "lib/netstandard2.0/BCrypt.Net-Next.xml", - "lib/netstandard2.1/BCrypt.Net-Next.dll", - "lib/netstandard2.1/BCrypt.Net-Next.xml", - "readme.md" - ] - }, - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "sha512": "kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "sha512": "qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "sha512": "pQeMHCyD3yTtCEGnHV4VsgKUvrESo3MR5mnh8sgQ1hWYmI1YFsUutDowBIxkobeWRtaRmBqQAtF7XQFW6FWuNA==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "sha512": "DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "sha512": "CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "sha512": "601B3ha6XvOsOcu9GVd2dVd1KEDuqr49r46GUWhNJkeZDhZ/NI9EYTyoeQjZQEi8ZUvnrv++FbTfGmC8F0vgtg==", - "type": "package", - "path": "microsoft.extensions.configuration/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.xml", - "lib/net462/Microsoft.Extensions.Configuration.dll", - "lib/net462/Microsoft.Extensions.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "sha512": "3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "sha512": "ilnL/kQn62Gx3OZCVT7SJrBNi0CRIhS8VEunmE6i/a9lp9l/eos+hpxMvCW4iX2aVc/NWeDhxuQusZL7zvmKIg==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", - "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "sha512": "NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.4": { - "sha512": "S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.4": { - "sha512": "kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "type": "package", - "path": "microsoft.extensions.options/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.10.0.4.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "sha512": "amQUITwSnkbMPxh/ngneNykz4UtytEOXo0M/pbwdBiQU57EAVvBV5PFI8r/dRastUj0yxHVwrH64N9ACR5SdGQ==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "sha512": "gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "sha512": "prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "sha512": "MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Logging.dll", - "lib/net10.0/Microsoft.IdentityModel.Logging.xml", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "sha512": "rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net10.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "sha512": "rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "path": "../../Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj", - "msbuildProject": "../../Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "BCrypt.Net-Next >= 4.1.0", - "MediatR >= 12.0.1", - "Microsoft.EntityFrameworkCore >= 10.0.4", - "Microsoft.EntityFrameworkCore.Relational >= 10.0.4", - "Microsoft.Extensions.Configuration.Abstractions >= 10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions >= 10.0.4", - "Microsoft.Extensions.Options.ConfigurationExtensions >= 10.0.4", - "Microsoft.IdentityModel.Tokens >= 8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", - "System.IdentityModel.Tokens.Jwt >= 8.16.0", - "Vortex.Shared.Kernel >= 1.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "projectName": "Vortex.Modules.Identity", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.1.0, )" - }, - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.16.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.16.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Modules/Identity/obj/project.nuget.cache b/apps/server-net/src/Modules/Identity/obj/project.nuget.cache deleted file mode 100644 index 49ab231..0000000 --- a/apps/server-net/src/Modules/Identity/obj/project.nuget.cache +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "zJhKnu5UrIw=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\bcrypt.net-next\\4.1.0\\bcrypt.net-next.4.1.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.4\\microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.4\\microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.4\\microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.4\\microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.4\\microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.4\\microsoft.extensions.configuration.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.4\\microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.4\\microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.4\\microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging\\10.0.4\\microsoft.extensions.logging.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options\\10.0.4\\microsoft.extensions.options.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.4\\microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.16.0\\microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.16.0\\microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.logging\\8.16.0\\microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.16.0\\microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.16.0\\system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.deps.json b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.deps.json deleted file mode 100644 index 425bd64..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.deps.json +++ /dev/null @@ -1,425 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Shared.Infrastructure/1.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Shared.Infrastructure.dll": {} - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.0", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Shared.Infrastructure/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "hashPath": "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "path": "microsoft.identitymodel.logging/8.16.0", - "hashPath": "microsoft.identitymodel.logging.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "path": "microsoft.identitymodel.tokens/8.16.0", - "hashPath": "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "hashPath": "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index b443b93..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.pdb deleted file mode 100644 index 321a293..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Infrastructure.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index c28b7cf..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 1300c10..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.deps.json b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.deps.json deleted file mode 100644 index 425bd64..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.deps.json +++ /dev/null @@ -1,425 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Shared.Infrastructure/1.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Shared.Infrastructure.dll": {} - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.0", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Shared.Infrastructure/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "hashPath": "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "path": "microsoft.identitymodel.logging/8.16.0", - "hashPath": "microsoft.identitymodel.logging.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "path": "microsoft.identitymodel.tokens/8.16.0", - "hashPath": "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "hashPath": "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index 1591857..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.pdb deleted file mode 100644 index 5a43e92..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Infrastructure.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index 616cb29..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 81f51d8..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/bin/Release/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.S.CEF25E1F.Up2Date b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.S.CEF25E1F.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs deleted file mode 100644 index be1451b..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9daafae9c5956290dda1c718bb49ff72c77fafb8")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache deleted file mode 100644 index a2e72b7..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -745538ea2e4bf4b47bee0e7c23a71f34c85ffd4593e17f36ed6617330cf934ed diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7c086ae..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Shared.Infrastructure -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.assets.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.assets.cache deleted file mode 100644 index 28d7049..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache deleted file mode 100644 index 72ba938..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache deleted file mode 100644 index ef6df0c..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -97c7b7e62856d30ecc962f5c969927254da81ac762aa00c7fb151631264e6936 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt deleted file mode 100644 index 79136ea..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Debug\net10.0\Vortex.Shared.Infrastructure.deps.json -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Debug\net10.0\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Debug\net10.0\Vortex.Shared.Infrastructure.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.S.CEF25E1F.Up2Date -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\refint\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\Vortex.Shared.Infrastructure.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Debug\net10.0\ref\Vortex.Shared.Infrastructure.dll diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index b443b93..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.pdb deleted file mode 100644 index 321a293..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/Vortex.Shared.Infrastructure.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/ref/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/ref/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index e4a4b76..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/ref/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/refint/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/refint/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index e4a4b76..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Debug/net10.0/refint/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.S.CEF25E1F.Up2Date b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.S.CEF25E1F.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs deleted file mode 100644 index fdc045c..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50d4d75c04b5524c8439d9168f3a5a578f26d47c")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Shared.Infrastructure")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache deleted file mode 100644 index d21cfcc..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -5cc6fd0b250f74f422ab56587c2790cdda7406c37318b147bc2b5263c5fae381 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7c086ae..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Shared.Infrastructure -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.assets.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.assets.cache deleted file mode 100644 index c68b57a..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache deleted file mode 100644 index e67b6ef..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache deleted file mode 100644 index afccfb5..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -96bf493c6bd5ac0d4980bd946e0e2f104741f29412e1d3f7fbbd3756ba561e4d diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt deleted file mode 100644 index 1628763..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Release\net10.0\Vortex.Shared.Infrastructure.deps.json -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Release\net10.0\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Release\net10.0\Vortex.Shared.Infrastructure.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Release\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\bin\Release\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.S.CEF25E1F.Up2Date -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\refint\Vortex.Shared.Infrastructure.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\Vortex.Shared.Infrastructure.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Infrastructure\obj\Release\net10.0\ref\Vortex.Shared.Infrastructure.dll diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index 1591857..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.pdb b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.pdb deleted file mode 100644 index 5a43e92..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/Vortex.Shared.Infrastructure.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/ref/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/ref/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index 3ad613f..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/ref/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/refint/Vortex.Shared.Infrastructure.dll b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/refint/Vortex.Shared.Infrastructure.dll deleted file mode 100644 index 3ad613f..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Release/net10.0/refint/Vortex.Shared.Infrastructure.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.dgspec.json b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.dgspec.json deleted file mode 100644 index 99374e0..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.dgspec.json +++ /dev/null @@ -1,859 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj", - "projectName": "Vortex.Shared.Infrastructure", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.16.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.16.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.props b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.props deleted file mode 100644 index 2fe461f..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.targets b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.targets deleted file mode 100644 index df37c13..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/Vortex.Shared.Infrastructure.csproj.nuget.g.targets +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.assets.json b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.assets.json deleted file mode 100644 index aebb305..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.assets.json +++ /dev/null @@ -1,1498 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1" - }, - "compile": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - } - } - } - }, - "libraries": { - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "sha512": "kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "sha512": "qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "sha512": "pQeMHCyD3yTtCEGnHV4VsgKUvrESo3MR5mnh8sgQ1hWYmI1YFsUutDowBIxkobeWRtaRmBqQAtF7XQFW6FWuNA==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "sha512": "CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "sha512": "NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.4": { - "sha512": "S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.4": { - "sha512": "kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "type": "package", - "path": "microsoft.extensions.options/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.10.0.4.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "sha512": "gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "sha512": "prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "sha512": "MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Logging.dll", - "lib/net10.0/Microsoft.IdentityModel.Logging.xml", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "sha512": "rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net10.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "sha512": "rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "path": "../Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj", - "msbuildProject": "../Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "Microsoft.EntityFrameworkCore >= 10.0.4", - "Microsoft.IdentityModel.Tokens >= 8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", - "System.IdentityModel.Tokens.Jwt >= 8.16.0", - "Vortex.Shared.Kernel >= 1.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj", - "projectName": "Vortex.Shared.Infrastructure", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.16.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.16.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.nuget.cache b/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.nuget.cache deleted file mode 100644 index 5225368..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Infrastructure/obj/project.nuget.cache +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "+h84t9fYbLg=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Infrastructure\\Vortex.Shared.Infrastructure.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.4\\microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.4\\microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.4\\microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.0\\microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.4\\microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.0\\microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.4\\microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging\\10.0.4\\microsoft.extensions.logging.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options\\10.0.4\\microsoft.extensions.options.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.16.0\\microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.16.0\\microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.logging\\8.16.0\\microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.16.0\\microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.16.0\\system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.deps.json b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.deps.json deleted file mode 100644 index a4d088f..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.deps.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": {} - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - } - } - }, - "libraries": { - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index c28b7cf..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 1300c10..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.deps.json b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.deps.json deleted file mode 100644 index a4d088f..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.deps.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": {} - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - } - } - }, - "libraries": { - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index 616cb29..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 81f51d8..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/bin/Release/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs deleted file mode 100644 index e1fe63d..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9daafae9c5956290dda1c718bb49ff72c77fafb8")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache deleted file mode 100644 index 2d6c9c9..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -375a1236f22989deedeec81190d9f49c1e30becc8b5382dbeed7e3232f8c1b05 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6240a51..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Shared.Kernel -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.assets.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.assets.cache deleted file mode 100644 index 5591bdb..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache deleted file mode 100644 index 77f0acc..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache deleted file mode 100644 index c114d31..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b9a477f6900ee08191d76ba4d713ea554d2a7ed966d86b087c1d3270a399d153 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt deleted file mode 100644 index 1d8eab7..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,12 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Debug\net10.0\Vortex.Shared.Kernel.deps.json -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\refint\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\ref\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Debug\net10.0\Vortex.Shared.Kernel.csproj.AssemblyReference.cache diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index c28b7cf..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 1300c10..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/ref/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/ref/Vortex.Shared.Kernel.dll deleted file mode 100644 index ff6bea5..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/ref/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/refint/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/refint/Vortex.Shared.Kernel.dll deleted file mode 100644 index ff6bea5..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Debug/net10.0/refint/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs deleted file mode 100644 index 46bf056..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+50d4d75c04b5524c8439d9168f3a5a578f26d47c")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Shared.Kernel")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache deleted file mode 100644 index 0029bc6..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -422d7e7697d54e550e5169ab8fea4846ba7bd69b1fe1dc3f036fe2a21b45feb1 diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6240a51..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Shared.Kernel -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.assets.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.assets.cache deleted file mode 100644 index e30ce27..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.assets.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache deleted file mode 100644 index 77f0acc..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache deleted file mode 100644 index b531865..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -ad61d361da0504cc223ed479cbdd02613ad15322cf3a784c38f2b0147eb91b6b diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt deleted file mode 100644 index fc86b1d..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,12 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Release\net10.0\Vortex.Shared.Kernel.deps.json -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Release\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\bin\Release\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\refint\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\src\Shared\Vortex.Shared.Kernel\obj\Release\net10.0\ref\Vortex.Shared.Kernel.dll diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index 616cb29..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 81f51d8..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/ref/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/ref/Vortex.Shared.Kernel.dll deleted file mode 100644 index 1766350..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/ref/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/refint/Vortex.Shared.Kernel.dll b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/refint/Vortex.Shared.Kernel.dll deleted file mode 100644 index 1766350..0000000 Binary files a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Release/net10.0/refint/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.dgspec.json b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.dgspec.json deleted file mode 100644 index 46d8a48..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.dgspec.json +++ /dev/null @@ -1,353 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.props b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.props deleted file mode 100644 index 8988592..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.targets b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/Vortex.Shared.Kernel.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.assets.json b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.assets.json deleted file mode 100644 index e9cd547..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.assets.json +++ /dev/null @@ -1,464 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - } - } - }, - "libraries": { - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "MediatR >= 12.0.1" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.nuget.cache b/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.nuget.cache deleted file mode 100644 index 7674613..0000000 --- a/apps/server-net/src/Shared/Vortex.Shared.Kernel/obj/project.nuget.cache +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "qfmzINr+8lA=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Chats.UnitTests b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Chats.UnitTests deleted file mode 100644 index f36440a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Chats.UnitTests and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Castle.Core.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Castle.Core.dll deleted file mode 100644 index eb7fd3b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Castle.Core.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Chats.UnitTests b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Chats.UnitTests deleted file mode 100644 index f36440a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Chats.UnitTests and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/FluentAssertions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/FluentAssertions.dll deleted file mode 100644 index 93ee3c0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/FluentAssertions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll deleted file mode 100644 index 32bc7c1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.dll deleted file mode 100644 index 949c43a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/MediatR.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index 18fb191..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 7464efc..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 8092894..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100644 index a31cac5..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index dc8275f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index a48e717..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 65f7110..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7d7f5a0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9c4bc6e..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 623a77c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index c5ed203..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4ff5caf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 7069e7d..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index 808c8d6..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index f582aa4..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index 03d9766..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index 3e61362..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index 2774af7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 1b4a1f2..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 21a16ca..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/NSubstitute.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/NSubstitute.dll deleted file mode 100644 index 32a7f03..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/NSubstitute.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index afdfe8d..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.dll deleted file mode 100644 index 1207ef0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Npgsql.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.deps.json b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.deps.json deleted file mode 100644 index e05d3dc..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.deps.json +++ /dev/null @@ -1,799 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Modules.Chats.UnitTests/1.0.0": { - "dependencies": { - "FluentAssertions": "8.0.1", - "Microsoft.NET.Test.Sdk": "17.13.0", - "NSubstitute": "5.3.0", - "Vortex.Modules.Chats": "1.0.0", - "xunit": "2.9.3" - }, - "runtime": { - "Vortex.Modules.Chats.UnitTests.dll": {} - } - }, - "Castle.Core/5.1.1": { - "runtime": { - "lib/net6.0/Castle.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.1.1.0" - } - } - }, - "FluentAssertions/8.0.1": { - "runtime": { - "lib/net6.0/FluentAssertions.dll": { - "assemblyVersion": "8.0.1.0", - "fileVersion": "8.0.1.0" - } - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.CodeCoverage/17.13.0": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.124.60202" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "dependencies": { - "Microsoft.CodeCoverage": "17.13.0", - "Microsoft.TestPlatform.TestHost": "17.13.0" - } - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.13.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "NSubstitute/5.3.0": { - "dependencies": { - "Castle.Core": "5.1.1" - }, - "runtime": { - "lib/net6.0/NSubstitute.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.0" - } - } - }, - "xunit/2.9.3": { - "dependencies": { - "xunit.assert": "2.9.3", - "xunit.core": "2.9.3" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.assert/2.9.3": { - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.core/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3", - "xunit.extensibility.execution": "2.9.3" - } - }, - "xunit.extensibility.core/2.9.3": { - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "Vortex.Modules.Chats/1.0.0": { - "dependencies": { - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Modules.Chats.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Modules.Chats.UnitTests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/5.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", - "path": "castle.core/5.1.1", - "hashPath": "castle.core.5.1.1.nupkg.sha512" - }, - "FluentAssertions/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IW5CdXiD4BIijMkJsEajhkQr7HSgzoxZBHp77b4tm8isCKGaDH2AGugW6DLS0/EPhO/MCZ2JOGg6ObdlKISJMg==", - "path": "fluentassertions/8.0.1", - "hashPath": "fluentassertions.8.0.1.nupkg.sha512" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.CodeCoverage/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==", - "path": "microsoft.codecoverage/17.13.0", - "hashPath": "microsoft.codecoverage.17.13.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", - "path": "microsoft.net.test.sdk/17.13.0", - "hashPath": "microsoft.net.test.sdk.17.13.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", - "path": "microsoft.testplatform.objectmodel/17.13.0", - "hashPath": "microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", - "path": "microsoft.testplatform.testhost/17.13.0", - "hashPath": "microsoft.testplatform.testhost.17.13.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "NSubstitute/5.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ47Cps5Qzr86N99lcwd+OUvQma7+fBgr8+Mn+aOC0WrlqMNkdivaYD9IvnZ5Mqo6Ky3LS7ZI+tUq1/s9ERd0Q==", - "path": "nsubstitute/5.3.0", - "hashPath": "nsubstitute.5.3.0.nupkg.sha512" - }, - "xunit/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "path": "xunit/2.9.3", - "hashPath": "xunit.2.9.3.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.assert/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "path": "xunit.assert/2.9.3", - "hashPath": "xunit.assert.2.9.3.nupkg.sha512" - }, - "xunit.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "path": "xunit.core/2.9.3", - "hashPath": "xunit.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "path": "xunit.extensibility.core/2.9.3", - "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "path": "xunit.extensibility.execution/2.9.3", - "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" - }, - "Vortex.Modules.Chats/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll deleted file mode 100644 index 29b5310..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb deleted file mode 100644 index 477304b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.runtimeconfig.json b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.runtimeconfig.json deleted file mode 100644 index 2a7d1c5..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.UnitTests.runtimeconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "10.0.0-preview.6.25358.103" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "10.0.0-preview.6.25358.103" - } - ], - "configProperties": { - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.dll deleted file mode 100644 index d24a264..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.pdb b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.pdb deleted file mode 100644 index 219a970..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Modules.Chats.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index e19c169..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 2745893..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 64f02c7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a637d16..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index d3d28ed..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 079f602..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c546fb5..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 5d7f249..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 542a296..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 6a6f562..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 150ee05..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index a07da23..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 1717871..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 6a9ab10..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index e0456df..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index ec8f0be..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ec8932a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index cd2a651..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 38774af..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 6c54c07..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 36cb776..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 072405b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 26da51a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 08faebf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 40a4c73..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index be2d610..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e629bba..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4a2e9f3..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 2ad8dd7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a162479..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index fe38663..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ecc813a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 510b948..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 40e1cab..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 15c2687..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 0a66eff..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 81ac85c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index afb3a49..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7acd2e9..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index b5eb966..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 612148c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 1fa216a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 42d0cfd..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index ddf9b55..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 1c335ca..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index ec5d123..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 18f7128..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4919efa..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0ac9156..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index ca753b1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 07d694f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 156d6c1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.dll deleted file mode 100644 index 62467be..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.exe b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.exe deleted file mode 100644 index f1f4807..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/testhost.exe and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 8a98e9f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index cac5dc7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 405edf4..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 6efe36e..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 2586945..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.assert.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.assert.dll deleted file mode 100644 index 99bc34c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.assert.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.core.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.core.dll deleted file mode 100644 index d56aa16..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.core.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll deleted file mode 100644 index 7a1cc87..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll deleted file mode 100644 index 6c19a6b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index b9ea235..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a05e75c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8e231aa..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 9d19bae..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 4739c86..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e9fd41b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e191cff..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 898e00a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4580347..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e45fac1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.M.DB4C48AB.Up2Date b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.M.DB4C48AB.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfo.cs b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfo.cs deleted file mode 100644 index 23919a9..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Chats.UnitTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1ec6b438d29413482e1393c8ee5717f1211bd2c1")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Chats.UnitTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Chats.UnitTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfoInputs.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfoInputs.cache deleted file mode 100644 index 435a1e2..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -47466bb342596afd8dc5652a074c449e55657cc43e99cd188b47d68b553d0013 diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e77bd3c..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Chats.UnitTests -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GlobalUsings.g.cs b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.assets.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.assets.cache deleted file mode 100644 index 3c9072c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.assets.cache and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.AssemblyReference.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.AssemblyReference.cache deleted file mode 100644 index 9f644b1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.CoreCompileInputs.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index 890768b..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e8f3a1dd9fb53e160cba232a80cc59fee5d0e4f9e800b384e609da4fb03fb1a6 diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.FileListAbsolute.txt b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.FileListAbsolute.txt deleted file mode 100644 index e721dac..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,121 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\.msCoverageSourceRootsMapping_Vortex.Modules.Chats.UnitTests -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\CoverletSourceRootsMapping_Vortex.Modules.Chats.UnitTests -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\testhost.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\xunit.abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\testhost.exe -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\xunit.runner.visualstudio.testadapter.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.UnitTests.deps.json -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.UnitTests.runtimeconfig.json -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.UnitTests.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Castle.Core.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\FluentAssertions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\MediatR.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\MediatR.Contracts.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Caching.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Caching.Memory.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Logging.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Logging.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Options.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Primitives.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CoreUtilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.Utilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Newtonsoft.Json.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Npgsql.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\NSubstitute.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\xunit.assert.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\xunit.core.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\xunit.execution.dotnet.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Modules.Chats.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.M.DB4C48AB.Up2Date -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\refint\Vortex.Modules.Chats.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\Vortex.Modules.Chats.UnitTests.genruntimeconfig.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Chats.UnitTests\obj\Debug\net10.0\ref\Vortex.Modules.Chats.UnitTests.dll diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll deleted file mode 100644 index 29b5310..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.genruntimeconfig.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.genruntimeconfig.cache deleted file mode 100644 index ee8533c..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -b00a6e4106b08fded34772d2f5f0132a22d8d5aa5ce5a93185141a9610729f08 diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb deleted file mode 100644 index 477304b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/Vortex.Modules.Chats.UnitTests.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Chats.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Chats.UnitTests.dll deleted file mode 100644 index c857395..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Chats.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Chats.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Chats.UnitTests.dll deleted file mode 100644 index c857395..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Chats.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.dgspec.json b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.dgspec.json deleted file mode 100644 index 0130810..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,1240 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "projectName": "Vortex.Modules.Chats", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj", - "projectName": "Vortex.Modules.Chats.UnitTests", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[8.0.1, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.13.0, )" - }, - "NSubstitute": { - "target": "Package", - "version": "[5.3.0, )" - }, - "coverlet.collector": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.0.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.props b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.props deleted file mode 100644 index b7cc47d..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.props +++ /dev/null @@ -1,28 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - - - - - - - - - - C:\Users\HomePC\.nuget\packages\xunit.analyzers\1.18.0 - C:\Users\HomePC\.nuget\packages\fluentassertions\8.0.1 - - \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.targets b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.targets deleted file mode 100644 index 811305b..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/Vortex.Modules.Chats.UnitTests.csproj.nuget.g.targets +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.assets.json b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.assets.json deleted file mode 100644 index 6ef0523..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.assets.json +++ /dev/null @@ -1,2244 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "Castle.Core/5.1.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "compile": { - "lib/net6.0/Castle.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Castle.Core.dll": { - "related": ".xml" - } - } - }, - "coverlet.collector/6.0.4": { - "type": "package", - "build": { - "build/netstandard2.0/coverlet.collector.targets": {} - } - }, - "FluentAssertions/8.0.1": { - "type": "package", - "compile": { - "lib/net6.0/FluentAssertions.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net6.0/FluentAssertions.dll": { - "related": ".pdb;.xml" - } - } - }, - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeCoverage/17.13.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.13.0", - "Microsoft.TestPlatform.TestHost": "17.13.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": {} - }, - "runtime": { - "lib/netcoreapp3.1/_._": {} - }, - "build": { - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.13.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "NSubstitute/5.3.0": { - "type": "package", - "dependencies": { - "Castle.Core": "5.1.1" - }, - "compile": { - "lib/net6.0/NSubstitute.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/NSubstitute.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "assetType": "runtime", - "rid": "win" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "xunit/2.9.3": { - "type": "package", - "dependencies": { - "xunit.analyzers": "1.18.0", - "xunit.assert": "2.9.3", - "xunit.core": "[2.9.3]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - } - }, - "xunit.analyzers/1.18.0": { - "type": "package" - }, - "xunit.assert/2.9.3": { - "type": "package", - "compile": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - } - }, - "xunit.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]", - "xunit.extensibility.execution": "[2.9.3]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - } - }, - "xunit.runner.visualstudio/3.0.2": { - "type": "package", - "compile": { - "lib/net6.0/_._": {} - }, - "runtime": { - "lib/net6.0/_._": {} - }, - "build": { - "build/net6.0/xunit.runner.visualstudio.props": {} - } - }, - "Vortex.Modules.Chats/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "compile": { - "bin/placeholder/Vortex.Modules.Chats.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Modules.Chats.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1" - }, - "compile": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - } - } - } - }, - "libraries": { - "Castle.Core/5.1.1": { - "sha512": "rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", - "type": "package", - "path": "castle.core/5.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle-logo.png", - "castle.core.5.1.1.nupkg.sha512", - "castle.core.nuspec", - "lib/net462/Castle.Core.dll", - "lib/net462/Castle.Core.xml", - "lib/net6.0/Castle.Core.dll", - "lib/net6.0/Castle.Core.xml", - "lib/netstandard2.0/Castle.Core.dll", - "lib/netstandard2.0/Castle.Core.xml", - "lib/netstandard2.1/Castle.Core.dll", - "lib/netstandard2.1/Castle.Core.xml", - "readme.txt" - ] - }, - "coverlet.collector/6.0.4": { - "sha512": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", - "type": "package", - "path": "coverlet.collector/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "VSTestIntegration.md", - "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "build/netstandard2.0/Mono.Cecil.Mdb.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/Newtonsoft.Json.dll", - "build/netstandard2.0/NuGet.Frameworks.dll", - "build/netstandard2.0/NuGet.Versioning.dll", - "build/netstandard2.0/System.Buffers.dll", - "build/netstandard2.0/System.Collections.Immutable.dll", - "build/netstandard2.0/System.Memory.dll", - "build/netstandard2.0/System.Numerics.Vectors.dll", - "build/netstandard2.0/System.Reflection.Metadata.dll", - "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "build/netstandard2.0/System.Text.Encodings.Web.dll", - "build/netstandard2.0/System.Text.Json.dll", - "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "build/netstandard2.0/coverlet.collector.deps.json", - "build/netstandard2.0/coverlet.collector.dll", - "build/netstandard2.0/coverlet.collector.pdb", - "build/netstandard2.0/coverlet.collector.targets", - "build/netstandard2.0/coverlet.core.dll", - "build/netstandard2.0/coverlet.core.pdb", - "build/netstandard2.0/coverlet.core.xml", - "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "coverlet-icon.png", - "coverlet.collector.6.0.4.nupkg.sha512", - "coverlet.collector.nuspec" - ] - }, - "FluentAssertions/8.0.1": { - "sha512": "IW5CdXiD4BIijMkJsEajhkQr7HSgzoxZBHp77b4tm8isCKGaDH2AGugW6DLS0/EPhO/MCZ2JOGg6ObdlKISJMg==", - "type": "package", - "path": "fluentassertions/8.0.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "FluentAssertions.png", - "LICENSE.md", - "fluentassertions.8.0.1.nupkg.sha512", - "fluentassertions.nuspec", - "lib/net47/FluentAssertions.dll", - "lib/net47/FluentAssertions.pdb", - "lib/net47/FluentAssertions.xml", - "lib/net6.0/FluentAssertions.dll", - "lib/net6.0/FluentAssertions.pdb", - "lib/net6.0/FluentAssertions.xml", - "lib/netstandard2.0/FluentAssertions.dll", - "lib/netstandard2.0/FluentAssertions.pdb", - "lib/netstandard2.0/FluentAssertions.xml", - "lib/netstandard2.1/FluentAssertions.dll", - "lib/netstandard2.1/FluentAssertions.pdb", - "lib/netstandard2.1/FluentAssertions.xml", - "tools/init.ps1" - ] - }, - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.13.0": { - "sha512": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==", - "type": "package", - "path": "microsoft.codecoverage/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/Cov_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/alpine/x64/Cov_x64.config", - "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/macos/x64/Cov_x64.config", - "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ubuntu/x64/Cov_x64.config", - "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.13.0.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "sha512": "kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "sha512": "qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "sha512": "pQeMHCyD3yTtCEGnHV4VsgKUvrESo3MR5mnh8sgQ1hWYmI1YFsUutDowBIxkobeWRtaRmBqQAtF7XQFW6FWuNA==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "sha512": "DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "sha512": "CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "sha512": "3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "sha512": "NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.4": { - "sha512": "S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.4": { - "sha512": "kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "type": "package", - "path": "microsoft.extensions.options/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.10.0.4.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "sha512": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", - "type": "package", - "path": "microsoft.net.test.sdk/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net462/_._", - "lib/netcoreapp3.1/_._", - "microsoft.net.test.sdk.17.13.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "sha512": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "sha512": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp3.1/x64/testhost.dll", - "build/netcoreapp3.1/x64/testhost.exe", - "build/netcoreapp3.1/x86/testhost.x86.dll", - "build/netcoreapp3.1/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/testhost.deps.json", - "lib/netcoreapp3.1/testhost.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/x64/msdia140.dll", - "lib/netcoreapp3.1/x86/msdia140.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.13.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "NSubstitute/5.3.0": { - "sha512": "lJ47Cps5Qzr86N99lcwd+OUvQma7+fBgr8+Mn+aOC0WrlqMNkdivaYD9IvnZ5Mqo6Ky3LS7ZI+tUq1/s9ERd0Q==", - "type": "package", - "path": "nsubstitute/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net462/NSubstitute.dll", - "lib/net462/NSubstitute.xml", - "lib/net6.0/NSubstitute.dll", - "lib/net6.0/NSubstitute.xml", - "lib/netstandard2.0/NSubstitute.dll", - "lib/netstandard2.0/NSubstitute.xml", - "nsubstitute.5.3.0.nupkg.sha512", - "nsubstitute.nuspec" - ] - }, - "System.Diagnostics.EventLog/6.0.0": { - "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "type": "package", - "path": "system.diagnostics.eventlog/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.EventLog.dll", - "lib/net461/System.Diagnostics.EventLog.xml", - "lib/net6.0/System.Diagnostics.EventLog.dll", - "lib/net6.0/System.Diagnostics.EventLog.xml", - "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", - "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", - "lib/netstandard2.0/System.Diagnostics.EventLog.dll", - "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "xunit/2.9.3": { - "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "type": "package", - "path": "xunit/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "xunit.2.9.3.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/1.18.0": { - "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", - "type": "package", - "path": "xunit.analyzers/1.18.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.1.18.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.9.3": { - "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "type": "package", - "path": "xunit.assert/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net6.0/xunit.assert.dll", - "lib/net6.0/xunit.assert.xml", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.9.3.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.9.3": { - "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "type": "package", - "path": "xunit.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.9.3.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.9.3": { - "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "type": "package", - "path": "xunit.extensibility.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.9.3.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.9.3": { - "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "type": "package", - "path": "xunit.extensibility.execution/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.9.3.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/3.0.2": { - "sha512": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow==", - "type": "package", - "path": "xunit.runner.visualstudio/3.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/net472/xunit.abstractions.dll", - "build/net472/xunit.runner.visualstudio.props", - "build/net472/xunit.runner.visualstudio.testadapter.dll", - "build/net6.0/xunit.abstractions.dll", - "build/net6.0/xunit.runner.visualstudio.props", - "build/net6.0/xunit.runner.visualstudio.testadapter.dll", - "lib/net472/_._", - "lib/net6.0/_._", - "xunit.runner.visualstudio.3.0.2.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "Vortex.Modules.Chats/1.0.0": { - "type": "project", - "path": "../../src/Modules/Chats/Vortex.Modules.Chats.csproj", - "msbuildProject": "../../src/Modules/Chats/Vortex.Modules.Chats.csproj" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "path": "../../src/Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj", - "msbuildProject": "../../src/Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FluentAssertions >= 8.0.1", - "Microsoft.NET.Test.Sdk >= 17.13.0", - "NSubstitute >= 5.3.0", - "Vortex.Modules.Chats >= 1.0.0", - "coverlet.collector >= 6.0.4", - "xunit >= 2.9.3", - "xunit.runner.visualstudio >= 3.0.2" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj", - "projectName": "Vortex.Modules.Chats.UnitTests", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Chats\\Vortex.Modules.Chats.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[8.0.1, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.13.0, )" - }, - "NSubstitute": { - "target": "Package", - "version": "[5.3.0, )" - }, - "coverlet.collector": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.0.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.nuget.cache b/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.nuget.cache deleted file mode 100644 index 055369c..0000000 --- a/apps/server-net/tests/Vortex.Modules.Chats.UnitTests/obj/project.nuget.cache +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "thvDzi51E44=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Chats.UnitTests\\Vortex.Modules.Chats.UnitTests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\castle.core\\5.1.1\\castle.core.5.1.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\coverlet.collector\\6.0.4\\coverlet.collector.6.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\fluentassertions\\8.0.1\\fluentassertions.8.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.codecoverage\\17.13.0\\microsoft.codecoverage.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.4\\microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.4\\microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.4\\microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.4\\microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.4\\microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.4\\microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.4\\microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging\\10.0.4\\microsoft.extensions.logging.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options\\10.0.4\\microsoft.extensions.options.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.net.test.sdk\\17.13.0\\microsoft.net.test.sdk.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.13.0\\microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.testplatform.testhost\\17.13.0\\microsoft.testplatform.testhost.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\nsubstitute\\5.3.0\\nsubstitute.5.3.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit\\2.9.3\\xunit.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.analyzers\\1.18.0\\xunit.analyzers.1.18.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.assert\\2.9.3\\xunit.assert.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.core\\2.9.3\\xunit.core.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.extensibility.core\\2.9.3\\xunit.extensibility.core.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.extensibility.execution\\2.9.3\\xunit.extensibility.execution.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.runner.visualstudio\\3.0.2\\xunit.runner.visualstudio.3.0.2.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Identity.UnitTests b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Identity.UnitTests deleted file mode 100644 index 001b64a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Vortex.Modules.Identity.UnitTests and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/BCrypt.Net-Next.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/BCrypt.Net-Next.dll deleted file mode 100644 index 623193b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/BCrypt.Net-Next.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Castle.Core.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Castle.Core.dll deleted file mode 100644 index eb7fd3b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Castle.Core.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Identity.UnitTests b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Identity.UnitTests deleted file mode 100644 index 001b64a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_Vortex.Modules.Identity.UnitTests and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/FluentAssertions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/FluentAssertions.dll deleted file mode 100644 index 93ee3c0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/FluentAssertions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll deleted file mode 100644 index 32bc7c1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.Contracts.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.dll deleted file mode 100644 index 949c43a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/MediatR.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index 18fb191..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 7464efc..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 8092894..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100644 index a31cac5..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index dc8275f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index a48e717..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 9bf55b9..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 830d523..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 65f7110..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7d7f5a0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9c4bc6e..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 623a77c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 6efe62c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index c5ed203..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4ff5caf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 5850f29..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index c9b1529..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 5dfc1c5..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 93cc779..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 7069e7d..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index 808c8d6..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index f582aa4..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index 03d9766..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index 3e61362..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index 2774af7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 1b4a1f2..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 21a16ca..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/NSubstitute.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/NSubstitute.dll deleted file mode 100644 index 32a7f03..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/NSubstitute.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index afdfe8d..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.dll deleted file mode 100644 index 1207ef0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Npgsql.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 9f0a8d0..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.deps.json b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.deps.json deleted file mode 100644 index 4248450..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.deps.json +++ /dev/null @@ -1,967 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Vortex.Modules.Identity.UnitTests/1.0.0": { - "dependencies": { - "FluentAssertions": "8.0.1", - "Microsoft.NET.Test.Sdk": "17.13.0", - "NSubstitute": "5.3.0", - "Vortex.Modules.Identity": "1.0.0", - "xunit": "2.9.3" - }, - "runtime": { - "Vortex.Modules.Identity.UnitTests.dll": {} - } - }, - "BCrypt.Net-Next/4.1.0": { - "runtime": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.1.0.0" - } - } - }, - "Castle.Core/5.1.1": { - "runtime": { - "lib/net6.0/Castle.Core.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.1.1.0" - } - } - }, - "FluentAssertions/8.0.1": { - "runtime": { - "lib/net6.0/FluentAssertions.dll": { - "assemblyVersion": "8.0.1.0", - "fileVersion": "8.0.1.0" - } - } - }, - "MediatR/12.0.1": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.CodeCoverage/17.13.0": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.124.60202" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.4.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Configuration.Binder": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.426.12010" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "dependencies": { - "Microsoft.CodeCoverage": "17.13.0", - "Microsoft.TestPlatform.TestHost": "17.13.0" - } - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.13.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - }, - "lib/netcoreapp3.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1300.25.10604" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.4" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "NSubstitute/5.3.0": { - "dependencies": { - "Castle.Core": "5.1.1" - }, - "runtime": { - "lib/net6.0/NSubstitute.dll": { - "assemblyVersion": "5.3.0.0", - "fileVersion": "5.3.0.0" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.16.0.0", - "fileVersion": "8.16.0.26043" - } - } - }, - "xunit/2.9.3": { - "dependencies": { - "xunit.assert": "2.9.3", - "xunit.core": "2.9.3" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.assert/2.9.3": { - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.core/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3", - "xunit.extensibility.execution": "2.9.3" - } - }, - "xunit.extensibility.core/2.9.3": { - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "Vortex.Modules.Identity/1.0.0": { - "dependencies": { - "BCrypt.Net-Next": "4.1.0", - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "runtime": { - "Vortex.Modules.Identity.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Vortex.Shared.Kernel/1.0.0": { - "dependencies": { - "MediatR": "12.0.1" - }, - "runtime": { - "Vortex.Shared.Kernel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "Vortex.Modules.Identity.UnitTests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "BCrypt.Net-Next/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", - "path": "bcrypt.net-next/4.1.0", - "hashPath": "bcrypt.net-next.4.1.0.nupkg.sha512" - }, - "Castle.Core/5.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", - "path": "castle.core/5.1.1", - "hashPath": "castle.core.5.1.1.nupkg.sha512" - }, - "FluentAssertions/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IW5CdXiD4BIijMkJsEajhkQr7HSgzoxZBHp77b4tm8isCKGaDH2AGugW6DLS0/EPhO/MCZ2JOGg6ObdlKISJMg==", - "path": "fluentassertions/8.0.1", - "hashPath": "fluentassertions.8.0.1.nupkg.sha512" - }, - "MediatR/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "path": "mediatr/12.0.1", - "hashPath": "mediatr.12.0.1.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.CodeCoverage/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==", - "path": "microsoft.codecoverage/17.13.0", - "hashPath": "microsoft.codecoverage.17.13.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "path": "microsoft.entityframeworkcore/10.0.4", - "hashPath": "microsoft.entityframeworkcore.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "path": "microsoft.extensions.caching.memory/10.0.4", - "hashPath": "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-601B3ha6XvOsOcu9GVd2dVd1KEDuqr49r46GUWhNJkeZDhZ/NI9EYTyoeQjZQEi8ZUvnrv++FbTfGmC8F0vgtg==", - "path": "microsoft.extensions.configuration/10.0.4", - "hashPath": "microsoft.extensions.configuration.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ilnL/kQn62Gx3OZCVT7SJrBNi0CRIhS8VEunmE6i/a9lp9l/eos+hpxMvCW4iX2aVc/NWeDhxuQusZL7zvmKIg==", - "path": "microsoft.extensions.configuration.binder/10.0.4", - "hashPath": "microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "path": "microsoft.extensions.logging/10.0.4", - "hashPath": "microsoft.extensions.logging.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "path": "microsoft.extensions.options/10.0.4", - "hashPath": "microsoft.extensions.options.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-amQUITwSnkbMPxh/ngneNykz4UtytEOXo0M/pbwdBiQU57EAVvBV5PFI8r/dRastUj0yxHVwrH64N9ACR5SdGQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.4", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "path": "microsoft.extensions.primitives/10.0.4", - "hashPath": "microsoft.extensions.primitives.10.0.4.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "hashPath": "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "path": "microsoft.identitymodel.logging/8.16.0", - "hashPath": "microsoft.identitymodel.logging.8.16.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "path": "microsoft.identitymodel.tokens/8.16.0", - "hashPath": "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", - "path": "microsoft.net.test.sdk/17.13.0", - "hashPath": "microsoft.net.test.sdk.17.13.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", - "path": "microsoft.testplatform.objectmodel/17.13.0", - "hashPath": "microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", - "path": "microsoft.testplatform.testhost/17.13.0", - "hashPath": "microsoft.testplatform.testhost.17.13.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "NSubstitute/5.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ47Cps5Qzr86N99lcwd+OUvQma7+fBgr8+Mn+aOC0WrlqMNkdivaYD9IvnZ5Mqo6Ky3LS7ZI+tUq1/s9ERd0Q==", - "path": "nsubstitute/5.3.0", - "hashPath": "nsubstitute.5.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "hashPath": "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512" - }, - "xunit/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "path": "xunit/2.9.3", - "hashPath": "xunit.2.9.3.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.assert/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "path": "xunit.assert/2.9.3", - "hashPath": "xunit.assert.2.9.3.nupkg.sha512" - }, - "xunit.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "path": "xunit.core/2.9.3", - "hashPath": "xunit.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "path": "xunit.extensibility.core/2.9.3", - "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "path": "xunit.extensibility.execution/2.9.3", - "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" - }, - "Vortex.Modules.Identity/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll deleted file mode 100644 index 26471da..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb deleted file mode 100644 index 3fce607..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.runtimeconfig.json b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.runtimeconfig.json deleted file mode 100644 index 2a7d1c5..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.UnitTests.runtimeconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "10.0.0-preview.6.25358.103" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "10.0.0-preview.6.25358.103" - } - ], - "configProperties": { - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.dll deleted file mode 100644 index 3f26d3e..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.pdb b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.pdb deleted file mode 100644 index dc171c6..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Modules.Identity.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll deleted file mode 100644 index e19c169..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb deleted file mode 100644 index 2745893..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/Vortex.Shared.Kernel.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 64f02c7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a637d16..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index d3d28ed..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 079f602..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c546fb5..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 5d7f249..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 542a296..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 6a6f562..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 150ee05..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index a07da23..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 1717871..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 6a9ab10..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index e0456df..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index ec8f0be..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ec8932a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index cd2a651..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 38774af..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 6c54c07..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 36cb776..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 072405b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 26da51a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 08faebf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 40a4c73..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index be2d610..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e629bba..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4a2e9f3..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 2ad8dd7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a162479..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index fe38663..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ecc813a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 510b948..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 40e1cab..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 15c2687..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 0a66eff..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 81ac85c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index afb3a49..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7acd2e9..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index b5eb966..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 612148c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 1fa216a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 42d0cfd..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index ddf9b55..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 1c335ca..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index ec5d123..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 18f7128..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4919efa..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0ac9156..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index ca753b1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 07d694f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 156d6c1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.dll deleted file mode 100644 index 62467be..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.exe b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.exe deleted file mode 100644 index f1f4807..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/testhost.exe and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 8a98e9f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index cac5dc7..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 405edf4..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 6efe36e..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 2586945..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.abstractions.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.assert.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.assert.dll deleted file mode 100644 index 99bc34c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.assert.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.core.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.core.dll deleted file mode 100644 index d56aa16..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.core.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll deleted file mode 100644 index 7a1cc87..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll deleted file mode 100644 index 6c19a6b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index b9ea235..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a05e75c..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8e231aa..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 9d19bae..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 4739c86..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e9fd41b..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e191cff..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 898e00a..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4580347..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e45fac1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.M.F3C02428.Up2Date b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.M.F3C02428.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfo.cs b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfo.cs deleted file mode 100644 index 2083a05..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Vortex.Modules.Identity.UnitTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1ec6b438d29413482e1393c8ee5717f1211bd2c1")] -[assembly: System.Reflection.AssemblyProductAttribute("Vortex.Modules.Identity.UnitTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vortex.Modules.Identity.UnitTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Создано классом WriteCodeFragment MSBuild. - diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfoInputs.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfoInputs.cache deleted file mode 100644 index d1f23b8..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -65d320bebd25bc74133afa5858ea74eedd892ff77b70947e5aed749a99c73ed7 diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GeneratedMSBuildEditorConfig.editorconfig b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1e33a2e..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vortex.Modules.Identity.UnitTests -build_property.ProjectDir = E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GlobalUsings.g.cs b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.assets.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.assets.cache deleted file mode 100644 index 6714ddd..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.assets.cache and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.AssemblyReference.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.AssemblyReference.cache deleted file mode 100644 index 777f28f..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.AssemblyReference.cache and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.CoreCompileInputs.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9845aa6..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -82150de4460a4e7b09a29edcb6b4c3209c4c28120e333fa2bfd57203702a76ec diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.FileListAbsolute.txt b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.FileListAbsolute.txt deleted file mode 100644 index b39d840..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,130 +0,0 @@ -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\.msCoverageSourceRootsMapping_Vortex.Modules.Identity.UnitTests -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\CoverletSourceRootsMapping_Vortex.Modules.Identity.UnitTests -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\testhost.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\xunit.abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\testhost.exe -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\xunit.runner.visualstudio.testadapter.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.UnitTests.deps.json -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.UnitTests.runtimeconfig.json -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.UnitTests.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\BCrypt.Net-Next.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Castle.Core.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\FluentAssertions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\MediatR.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\MediatR.Contracts.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Caching.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Caching.Memory.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Configuration.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Binder.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Logging.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Logging.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Options.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.Extensions.Primitives.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.IdentityModel.Abstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.IdentityModel.JsonWebTokens.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.IdentityModel.Logging.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CoreUtilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.Utilities.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Newtonsoft.Json.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Npgsql.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\NSubstitute.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\System.IdentityModel.Tokens.Jwt.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\xunit.assert.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\xunit.core.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\xunit.execution.dotnet.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Shared.Kernel.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Modules.Identity.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\bin\Debug\net10.0\Vortex.Shared.Kernel.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.csproj.AssemblyReference.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.GeneratedMSBuildEditorConfig.editorconfig -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.AssemblyInfoInputs.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.AssemblyInfo.cs -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.csproj.CoreCompileInputs.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.M.F3C02428.Up2Date -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\refint\Vortex.Modules.Identity.UnitTests.dll -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.pdb -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\Vortex.Modules.Identity.UnitTests.genruntimeconfig.cache -E:\GIT\forkmessager\apps\server-net\tests\Vortex.Modules.Identity.UnitTests\obj\Debug\net10.0\ref\Vortex.Modules.Identity.UnitTests.dll diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll deleted file mode 100644 index 26471da..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.genruntimeconfig.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.genruntimeconfig.cache deleted file mode 100644 index be87117..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -87e3ce9141edc8d915c53234eed0aa7b135e8840c35eb7a55d1f67b8589bd796 diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb deleted file mode 100644 index 3fce607..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/Vortex.Modules.Identity.UnitTests.pdb and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Identity.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Identity.UnitTests.dll deleted file mode 100644 index f9586e1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/ref/Vortex.Modules.Identity.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Identity.UnitTests.dll b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Identity.UnitTests.dll deleted file mode 100644 index f9586e1..0000000 Binary files a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Debug/net10.0/refint/Vortex.Modules.Identity.UnitTests.dll and /dev/null differ diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.dgspec.json b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.dgspec.json deleted file mode 100644 index 99da04b..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,1256 +0,0 @@ -{ - "format": 1, - "restore": { - "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj": {} - }, - "projects": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "projectName": "Vortex.Modules.Identity", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.1.0, )" - }, - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.EntityFrameworkCore.Relational": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.4, )" - }, - "Microsoft.IdentityModel.Tokens": { - "target": "Package", - "version": "[8.16.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "System.IdentityModel.Tokens.Jwt": { - "target": "Package", - "version": "[8.16.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Http": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Console": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Primitives": "(,10.0.0-preview.6.25358.103]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.EventLog": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Cbor": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.0-preview.6.25358.103]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "projectName": "Vortex.Shared.Kernel", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\Vortex.Shared.Kernel.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Shared\\Vortex.Shared.Kernel\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "MediatR": { - "target": "Package", - "version": "[12.0.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj", - "projectName": "Vortex.Modules.Identity.UnitTests", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[8.0.1, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.13.0, )" - }, - "NSubstitute": { - "target": "Package", - "version": "[5.3.0, )" - }, - "coverlet.collector": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.0.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.props b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.props deleted file mode 100644 index b7cc47d..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.props +++ /dev/null @@ -1,28 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\HomePC\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.15.0 - - - - - - - - - - - - - - - C:\Users\HomePC\.nuget\packages\xunit.analyzers\1.18.0 - C:\Users\HomePC\.nuget\packages\fluentassertions\8.0.1 - - \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.targets b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.targets deleted file mode 100644 index bf04bc3..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/Vortex.Modules.Identity.UnitTests.csproj.nuget.g.targets +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.assets.json b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.assets.json deleted file mode 100644 index a8ba8a8..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.assets.json +++ /dev/null @@ -1,2660 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "BCrypt.Net-Next/4.1.0": { - "type": "package", - "compile": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - } - }, - "Castle.Core/5.1.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "compile": { - "lib/net6.0/Castle.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Castle.Core.dll": { - "related": ".xml" - } - } - }, - "coverlet.collector/6.0.4": { - "type": "package", - "build": { - "build/netstandard2.0/coverlet.collector.targets": {} - } - }, - "FluentAssertions/8.0.1": { - "type": "package", - "compile": { - "lib/net6.0/FluentAssertions.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net6.0/FluentAssertions.dll": { - "related": ".pdb;.xml" - } - } - }, - "MediatR/12.0.1": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "compile": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeCoverage/17.13.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.4", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.Extensions.Caching.Memory": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.4", - "Microsoft.Extensions.Logging.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.Configuration.Binder": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options": "10.0.4", - "Microsoft.Extensions.Primitives": "10.0.4" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.16.0" - }, - "compile": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.13.0", - "Microsoft.TestPlatform.TestHost": "17.13.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": {} - }, - "runtime": { - "lib/netcoreapp3.1/_._": {} - }, - "build": { - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.13.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "NSubstitute/5.3.0": { - "type": "package", - "dependencies": { - "Castle.Core": "5.1.1" - }, - "compile": { - "lib/net6.0/NSubstitute.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/NSubstitute.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "assetType": "runtime", - "rid": "win" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.16.0", - "Microsoft.IdentityModel.Tokens": "8.16.0" - }, - "compile": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "xunit/2.9.3": { - "type": "package", - "dependencies": { - "xunit.analyzers": "1.18.0", - "xunit.assert": "2.9.3", - "xunit.core": "[2.9.3]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - } - }, - "xunit.analyzers/1.18.0": { - "type": "package" - }, - "xunit.assert/2.9.3": { - "type": "package", - "compile": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - } - }, - "xunit.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]", - "xunit.extensibility.execution": "[2.9.3]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - } - }, - "xunit.runner.visualstudio/3.0.2": { - "type": "package", - "compile": { - "lib/net6.0/_._": {} - }, - "runtime": { - "lib/net6.0/_._": {} - }, - "build": { - "build/net6.0/xunit.runner.visualstudio.props": {} - } - }, - "Vortex.Modules.Identity/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "BCrypt.Net-Next": "4.1.0", - "MediatR": "12.0.1", - "Microsoft.EntityFrameworkCore": "10.0.4", - "Microsoft.EntityFrameworkCore.Relational": "10.0.4", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.4", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.4", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.4", - "Microsoft.IdentityModel.Tokens": "8.16.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "System.IdentityModel.Tokens.Jwt": "8.16.0", - "Vortex.Shared.Kernel": "1.0.0" - }, - "compile": { - "bin/placeholder/Vortex.Modules.Identity.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Modules.Identity.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "MediatR": "12.0.1" - }, - "compile": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - }, - "runtime": { - "bin/placeholder/Vortex.Shared.Kernel.dll": {} - } - } - } - }, - "libraries": { - "BCrypt.Net-Next/4.1.0": { - "sha512": "5YT3DKllmtkyW68PjURu/V1TOe4MKiByKwsRNVcfYE1S5KuFTeozdmKzyNzolKiQF391OXCaQtINvYT3j1ERzQ==", - "type": "package", - "path": "bcrypt.net-next/4.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bcrypt.net-next.4.1.0.nupkg.sha512", - "bcrypt.net-next.nuspec", - "ico.png", - "lib/net10.0/BCrypt.Net-Next.dll", - "lib/net10.0/BCrypt.Net-Next.xml", - "lib/net20/BCrypt.Net-Next.dll", - "lib/net20/BCrypt.Net-Next.xml", - "lib/net35/BCrypt.Net-Next.dll", - "lib/net35/BCrypt.Net-Next.xml", - "lib/net462/BCrypt.Net-Next.dll", - "lib/net462/BCrypt.Net-Next.xml", - "lib/net472/BCrypt.Net-Next.dll", - "lib/net472/BCrypt.Net-Next.xml", - "lib/net48/BCrypt.Net-Next.dll", - "lib/net48/BCrypt.Net-Next.xml", - "lib/netstandard2.0/BCrypt.Net-Next.dll", - "lib/netstandard2.0/BCrypt.Net-Next.xml", - "lib/netstandard2.1/BCrypt.Net-Next.dll", - "lib/netstandard2.1/BCrypt.Net-Next.xml", - "readme.md" - ] - }, - "Castle.Core/5.1.1": { - "sha512": "rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", - "type": "package", - "path": "castle.core/5.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle-logo.png", - "castle.core.5.1.1.nupkg.sha512", - "castle.core.nuspec", - "lib/net462/Castle.Core.dll", - "lib/net462/Castle.Core.xml", - "lib/net6.0/Castle.Core.dll", - "lib/net6.0/Castle.Core.xml", - "lib/netstandard2.0/Castle.Core.dll", - "lib/netstandard2.0/Castle.Core.xml", - "lib/netstandard2.1/Castle.Core.dll", - "lib/netstandard2.1/Castle.Core.xml", - "readme.txt" - ] - }, - "coverlet.collector/6.0.4": { - "sha512": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", - "type": "package", - "path": "coverlet.collector/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "VSTestIntegration.md", - "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "build/netstandard2.0/Mono.Cecil.Mdb.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/Newtonsoft.Json.dll", - "build/netstandard2.0/NuGet.Frameworks.dll", - "build/netstandard2.0/NuGet.Versioning.dll", - "build/netstandard2.0/System.Buffers.dll", - "build/netstandard2.0/System.Collections.Immutable.dll", - "build/netstandard2.0/System.Memory.dll", - "build/netstandard2.0/System.Numerics.Vectors.dll", - "build/netstandard2.0/System.Reflection.Metadata.dll", - "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "build/netstandard2.0/System.Text.Encodings.Web.dll", - "build/netstandard2.0/System.Text.Json.dll", - "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "build/netstandard2.0/coverlet.collector.deps.json", - "build/netstandard2.0/coverlet.collector.dll", - "build/netstandard2.0/coverlet.collector.pdb", - "build/netstandard2.0/coverlet.collector.targets", - "build/netstandard2.0/coverlet.core.dll", - "build/netstandard2.0/coverlet.core.pdb", - "build/netstandard2.0/coverlet.core.xml", - "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "coverlet-icon.png", - "coverlet.collector.6.0.4.nupkg.sha512", - "coverlet.collector.nuspec" - ] - }, - "FluentAssertions/8.0.1": { - "sha512": "IW5CdXiD4BIijMkJsEajhkQr7HSgzoxZBHp77b4tm8isCKGaDH2AGugW6DLS0/EPhO/MCZ2JOGg6ObdlKISJMg==", - "type": "package", - "path": "fluentassertions/8.0.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "FluentAssertions.png", - "LICENSE.md", - "fluentassertions.8.0.1.nupkg.sha512", - "fluentassertions.nuspec", - "lib/net47/FluentAssertions.dll", - "lib/net47/FluentAssertions.pdb", - "lib/net47/FluentAssertions.xml", - "lib/net6.0/FluentAssertions.dll", - "lib/net6.0/FluentAssertions.pdb", - "lib/net6.0/FluentAssertions.xml", - "lib/netstandard2.0/FluentAssertions.dll", - "lib/netstandard2.0/FluentAssertions.pdb", - "lib/netstandard2.0/FluentAssertions.xml", - "lib/netstandard2.1/FluentAssertions.dll", - "lib/netstandard2.1/FluentAssertions.pdb", - "lib/netstandard2.1/FluentAssertions.xml", - "tools/init.ps1" - ] - }, - "MediatR/12.0.1": { - "sha512": "vfxplMielft+g5jxGO31xjjQpI6yqe4r2YGt0Q8x23phwbpJNmUQGY+cCNNFMKKViXRM67ajUlAiwirMeuJWTQ==", - "type": "package", - "path": "mediatr/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/net6.0/MediatR.dll", - "lib/net6.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.12.0.1.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.13.0": { - "sha512": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==", - "type": "package", - "path": "microsoft.codecoverage/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/Cov_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/alpine/x64/Cov_x64.config", - "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/macos/x64/Cov_x64.config", - "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ubuntu/x64/Cov_x64.config", - "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.13.0.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.4": { - "sha512": "kzTsfFK2GCytp6DDTfQOmxPU4gbGdrIlP7PxrxF3ESNLtfXrC8BoUVZENBN2WORlZPAD7CVX6AYIglgkpXQooA==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.4": { - "sha512": "qDcJqCfN1XYyX0ID/Hd9/kQTRvlia8S+Yuwyl9uFhBIKnOCbl9WMdGQCzbZUKbkpkfvf3P9CDdXsnxHyE3O0Aw==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.4": { - "sha512": "pQeMHCyD3yTtCEGnHV4VsgKUvrESo3MR5mnh8sgQ1hWYmI1YFsUutDowBIxkobeWRtaRmBqQAtF7XQFW6FWuNA==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.4": { - "sha512": "DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.4": { - "sha512": "uDRooaV6N3WZ0kdlNPMB68/MdGn/in1Fs7Db7DnIm85RBTPy4P321WO+daAImiYpH5dekjNggDqy1N44WaIlMA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.4": { - "sha512": "CLLussNUMdSbyJOu4VBF7sqskHGB/5N1EcFzrqG/HsPATN8fCRUcfp0qns1VwkxKHwxrtYCh5FKe+kM81Q1PHA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration/10.0.4": { - "sha512": "601B3ha6XvOsOcu9GVd2dVd1KEDuqr49r46GUWhNJkeZDhZ/NI9EYTyoeQjZQEi8ZUvnrv++FbTfGmC8F0vgtg==", - "type": "package", - "path": "microsoft.extensions.configuration/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.xml", - "lib/net462/Microsoft.Extensions.Configuration.dll", - "lib/net462/Microsoft.Extensions.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.4": { - "sha512": "3x9X9SMAMdAoEwWxHfsT2a9dTBqEtfYfbEOFw+UPtBshEH2gHWJeazxrZ1FK1O18MoCbe1NxINg5qciB01pEcg==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/10.0.4": { - "sha512": "ilnL/kQn62Gx3OZCVT7SJrBNi0CRIhS8VEunmE6i/a9lp9l/eos+hpxMvCW4iX2aVc/NWeDhxuQusZL7zvmKIg==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", - "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.4": { - "sha512": "NkvJ8aSr3AG30yabjv7ZWwTG/wq5OElNTlNq39Ok2HSEF3TIwAc1f1xnTJlR/GuoJmEgkfT7WBO9YbSXRk41+g==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.4": { - "sha512": "SIe9zlVQJecnk/DTmevIcl6+aEDYhoVLc2eG2AKwVeNEC8CSyxHAbh4lf0xtHq9JUum0vVTEByGNTK+b6oihTQ==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.4": { - "sha512": "S8+6fCuMOhJZGk8sGFtOy3VsF9mk9x4UOL59GM91REiA/fmCDjunKKIw4RmStG87qyXPfxelDJf2pXIbTuaBdw==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.4": { - "sha512": "PDMMt7fvBatv6hcxxyJtXIzSwn7Dy00W6I2vDAOTYrQqNM2dF5A2L9n0uMzdPz2IPoNZWkAmYjoOCEdDLq0i4w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.4": { - "sha512": "kRxa2Zjzhg/ohh7EklpqQpBIcyQnC3meWxCcpZBn+0QWy/fY1DmDd45JiW8Vyrpj2J1RDtau5yRHiLZS/AoxUw==", - "type": "package", - "path": "microsoft.extensions.options/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.10.0.4.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.4": { - "sha512": "amQUITwSnkbMPxh/ngneNykz4UtytEOXo0M/pbwdBiQU57EAVvBV5PFI8r/dRastUj0yxHVwrH64N9ACR5SdGQ==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.4": { - "sha512": "lABYqiRH9HgYJsjzO3W7+cucUwWXhEkiyrRylANdIubnzcESlkIsLowXpQ4E+sc7kjMLbk1hk5oxw4qTKowTEg==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.16.0": { - "sha512": "gSxKLWRZzBpIsEoeUPkxfywNCCvRvl7hkq146XHPk5vOQc9izSf1I+uL1vh4y2U19QPxd9Z8K/8AdWyxYz2lSg==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net10.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.16.0": { - "sha512": "prBU72cIP4V8E9fhN+o/YdskTsLeIcnKPbhZf0X6mD7fdxoZqnS/NdEkSr+9Zp+2q7OZBOMfNBKGbTbhXODO4w==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.16.0": { - "sha512": "MTzXmETkNQPACR7/XCXM1OGM6oU9RkyibqeJRtO9Ndew2LnGjMf9Atqj2VSf4XC27X0FQycUAlzxxEgQMWn2xQ==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Logging.dll", - "lib/net10.0/Microsoft.IdentityModel.Logging.xml", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.16.0": { - "sha512": "rtViGJcGsN7WcfUNErwNeQgjuU5cJNl6FDQsfi9TncwO+Epzn0FTfBsg3YuFW1Q0Ch/KPxaVdjLw3/+5Z5ceFQ==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net10.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/17.13.0": { - "sha512": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", - "type": "package", - "path": "microsoft.net.test.sdk/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net462/_._", - "lib/netcoreapp3.1/_._", - "microsoft.net.test.sdk.17.13.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.13.0": { - "sha512": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.13.0": { - "sha512": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.13.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp3.1/x64/testhost.dll", - "build/netcoreapp3.1/x64/testhost.exe", - "build/netcoreapp3.1/x86/testhost.x86.dll", - "build/netcoreapp3.1/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/testhost.deps.json", - "lib/netcoreapp3.1/testhost.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/x64/msdia140.dll", - "lib/netcoreapp3.1/x86/msdia140.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.13.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "NSubstitute/5.3.0": { - "sha512": "lJ47Cps5Qzr86N99lcwd+OUvQma7+fBgr8+Mn+aOC0WrlqMNkdivaYD9IvnZ5Mqo6Ky3LS7ZI+tUq1/s9ERd0Q==", - "type": "package", - "path": "nsubstitute/5.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net462/NSubstitute.dll", - "lib/net462/NSubstitute.xml", - "lib/net6.0/NSubstitute.dll", - "lib/net6.0/NSubstitute.xml", - "lib/netstandard2.0/NSubstitute.dll", - "lib/netstandard2.0/NSubstitute.xml", - "nsubstitute.5.3.0.nupkg.sha512", - "nsubstitute.nuspec" - ] - }, - "System.Diagnostics.EventLog/6.0.0": { - "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "type": "package", - "path": "system.diagnostics.eventlog/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.EventLog.dll", - "lib/net461/System.Diagnostics.EventLog.xml", - "lib/net6.0/System.Diagnostics.EventLog.dll", - "lib/net6.0/System.Diagnostics.EventLog.xml", - "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", - "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", - "lib/netstandard2.0/System.Diagnostics.EventLog.dll", - "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.16.0": { - "sha512": "rrs2u7DRMXQG2yh0oVyF/vLwosfRv20Ld2iEpYcKwQWXHjfV+gFXNQsQ9p008kR9Ou4pxBs68Q6/9zC8Gi1wjg==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.16.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net10.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "xunit/2.9.3": { - "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "type": "package", - "path": "xunit/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "xunit.2.9.3.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/1.18.0": { - "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", - "type": "package", - "path": "xunit.analyzers/1.18.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.1.18.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.9.3": { - "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "type": "package", - "path": "xunit.assert/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net6.0/xunit.assert.dll", - "lib/net6.0/xunit.assert.xml", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.9.3.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.9.3": { - "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "type": "package", - "path": "xunit.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.9.3.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.9.3": { - "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "type": "package", - "path": "xunit.extensibility.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.9.3.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.9.3": { - "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "type": "package", - "path": "xunit.extensibility.execution/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.9.3.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/3.0.2": { - "sha512": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow==", - "type": "package", - "path": "xunit.runner.visualstudio/3.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/net472/xunit.abstractions.dll", - "build/net472/xunit.runner.visualstudio.props", - "build/net472/xunit.runner.visualstudio.testadapter.dll", - "build/net6.0/xunit.abstractions.dll", - "build/net6.0/xunit.runner.visualstudio.props", - "build/net6.0/xunit.runner.visualstudio.testadapter.dll", - "lib/net472/_._", - "lib/net6.0/_._", - "xunit.runner.visualstudio.3.0.2.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "Vortex.Modules.Identity/1.0.0": { - "type": "project", - "path": "../../src/Modules/Identity/Vortex.Modules.Identity.csproj", - "msbuildProject": "../../src/Modules/Identity/Vortex.Modules.Identity.csproj" - }, - "Vortex.Shared.Kernel/1.0.0": { - "type": "project", - "path": "../../src/Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj", - "msbuildProject": "../../src/Shared/Vortex.Shared.Kernel/Vortex.Shared.Kernel.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FluentAssertions >= 8.0.1", - "Microsoft.NET.Test.Sdk >= 17.13.0", - "NSubstitute >= 5.3.0", - "Vortex.Modules.Identity >= 1.0.0", - "coverlet.collector >= 6.0.4", - "xunit >= 2.9.3", - "xunit.runner.visualstudio >= 3.0.2" - ] - }, - "packageFolders": { - "C:\\Users\\HomePC\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj", - "projectName": "Vortex.Modules.Identity.UnitTests", - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj", - "packagesPath": "C:\\Users\\HomePC\\.nuget\\packages\\", - "outputPath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\HomePC\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj": { - "projectPath": "E:\\GIT\\forkmessager\\apps\\server-net\\src\\Modules\\Identity\\Vortex.Modules.Identity.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[8.0.1, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.13.0, )" - }, - "NSubstitute": { - "target": "Package", - "version": "[5.3.0, )" - }, - "coverlet.collector": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.0.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.100-preview.6.25358.103/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.0-preview.6.25358.103]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.0-preview.6.25358.103]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.0-preview.6.25358.103]", - "System.Formats.Tar": "(,10.0.0-preview.6.25358.103]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.0-preview.6.25358.103]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.0-preview.6.25358.103]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.0-preview.6.25358.103]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.0-preview.6.25358.103]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.0-preview.6.25358.103]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.0-preview.6.25358.103]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.0-preview.6.25358.103]", - "System.Text.Json": "(,10.0.0-preview.6.25358.103]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.Channels": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.0-preview.6.25358.103]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.nuget.cache b/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.nuget.cache deleted file mode 100644 index e9896fa..0000000 --- a/apps/server-net/tests/Vortex.Modules.Identity.UnitTests/obj/project.nuget.cache +++ /dev/null @@ -1,53 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "y6FasmI/LLI=", - "success": true, - "projectFilePath": "E:\\GIT\\forkmessager\\apps\\server-net\\tests\\Vortex.Modules.Identity.UnitTests\\Vortex.Modules.Identity.UnitTests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\HomePC\\.nuget\\packages\\bcrypt.net-next\\4.1.0\\bcrypt.net-next.4.1.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\castle.core\\5.1.1\\castle.core.5.1.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\coverlet.collector\\6.0.4\\coverlet.collector.6.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\fluentassertions\\8.0.1\\fluentassertions.8.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr\\12.0.1\\mediatr.12.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.codecoverage\\17.13.0\\microsoft.codecoverage.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.4\\microsoft.entityframeworkcore.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.4\\microsoft.entityframeworkcore.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.4\\microsoft.entityframeworkcore.analyzers.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.4\\microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.4\\microsoft.extensions.caching.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.4\\microsoft.extensions.caching.memory.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.4\\microsoft.extensions.configuration.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.4\\microsoft.extensions.configuration.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.4\\microsoft.extensions.configuration.binder.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.4\\microsoft.extensions.dependencyinjection.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.4\\microsoft.extensions.dependencyinjection.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging\\10.0.4\\microsoft.extensions.logging.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.4\\microsoft.extensions.logging.abstractions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options\\10.0.4\\microsoft.extensions.options.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.4\\microsoft.extensions.options.configurationextensions.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.4\\microsoft.extensions.primitives.10.0.4.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.16.0\\microsoft.identitymodel.abstractions.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.16.0\\microsoft.identitymodel.jsonwebtokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.logging\\8.16.0\\microsoft.identitymodel.logging.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.16.0\\microsoft.identitymodel.tokens.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.net.test.sdk\\17.13.0\\microsoft.net.test.sdk.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.13.0\\microsoft.testplatform.objectmodel.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\microsoft.testplatform.testhost\\17.13.0\\microsoft.testplatform.testhost.17.13.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\nsubstitute\\5.3.0\\nsubstitute.5.3.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.16.0\\system.identitymodel.tokens.jwt.8.16.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit\\2.9.3\\xunit.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.analyzers\\1.18.0\\xunit.analyzers.1.18.0.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.assert\\2.9.3\\xunit.assert.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.core\\2.9.3\\xunit.core.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.extensibility.core\\2.9.3\\xunit.extensibility.core.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.extensibility.execution\\2.9.3\\xunit.extensibility.execution.2.9.3.nupkg.sha512", - "C:\\Users\\HomePC\\.nuget\\packages\\xunit.runner.visualstudio\\3.0.2\\xunit.runner.visualstudio.3.0.2.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/apps/server-net/uploads/7d04cb16-1570-473c-8c73-b1aa5f85d960.mp4 b/apps/server-net/uploads/7d04cb16-1570-473c-8c73-b1aa5f85d960.mp4 new file mode 100644 index 0000000..24a55e0 Binary files /dev/null and b/apps/server-net/uploads/7d04cb16-1570-473c-8c73-b1aa5f85d960.mp4 differ diff --git a/apps/web/src/components/MessageBubble.tsx b/apps/web/src/components/MessageBubble.tsx index 5008273..d987e58 100644 --- a/apps/web/src/components/MessageBubble.tsx +++ b/apps/web/src/components/MessageBubble.tsx @@ -152,8 +152,8 @@ function MessageBubble({ const chatForDelete = chats.find(c => c.id === message.chatId); const otherMemberName = chatForDelete?.type === 'personal' ? chatForDelete.members.find(m => m.user.id !== user?.id)?.user.displayName - || chatForDelete.members.find(m => m.user.id !== user?.id)?.user.username - || '' + || chatForDelete.members.find(m => m.user.id !== user?.id)?.user.username + || '' : ''; const isPinned = pinnedMessages[message.chatId]?.id === message.id; @@ -176,11 +176,22 @@ function MessageBubble({ const existingReaction = message.reactions?.find( (r) => r.userId === user?.id && r.emoji === emoji ); + console.log('[Reaction] handleReaction:', { + emoji, + messageId: message.id, + chatId: message.chatId, + existingReaction: !!existingReaction, + userId: user?.id + }); if (existingReaction) { + console.log('[Reaction] Emitting remove_reaction'); socket.emit('remove_reaction', { messageId: message.id, chatId: message.chatId, emoji }); } else { + console.log('[Reaction] Emitting add_reaction'); socket.emit('add_reaction', { messageId: message.id, chatId: message.chatId, emoji }); } + } else { + console.warn('[Reaction] Socket not available'); } setShowContext(false); }; @@ -393,7 +404,7 @@ function MessageBubble({ {/* Reply */} {message.replyTo && ( -
{ const el = document.getElementById(`msg-${message.replyToId}`); @@ -430,17 +441,16 @@ function MessageBubble({ onContextMenu={handleContextMenu} onDoubleClick={handleReply} title={t('reply') ? `${t('reply')} (Double Click)` : 'Double click to reply'} - className={`cursor-pointer rounded-[1.25rem] overflow-hidden transition-all duration-300 ${ - hasImage && !message.content + className={`cursor-pointer rounded-[1.25rem] overflow-hidden transition-all duration-300 ${hasImage && !message.content ? 'p-0 shadow-none border-none' : isMine ? 'bubble-sent text-white shadow-sm px-4 py-2.5 hover:shadow-md hover:brightness-105' : 'bubble-received text-zinc-100 shadow-sm px-4 py-2.5 hover:shadow-md hover:brightness-105' - }`} + }`} > {/* Рендер пересланного сообщения */} {message.forwardedFrom && ( -
onViewProfile?.(message.forwardedFromId!)} > @@ -456,13 +466,12 @@ function MessageBubble({ {/* Изображения и Видео (Галерея) */} {(hasImage || hasVideo) && (
-
m.type === 'image' || m.type === 'video').length >= 3 +
m.type === 'image' || m.type === 'video').length >= 3 ? 'grid-cols-3' : media.filter(m => m.type === 'image' || m.type === 'video').length === 2 ? 'grid-cols-2' : 'grid-cols-1' - }`}> + }`}> {media .filter((m) => m.type === 'image' || m.type === 'video') .map((m, idx) => ( @@ -471,17 +480,15 @@ function MessageBubble({ key={m.id} src={m.url} alt="" - className={`w-full h-full object-cover cursor-pointer hover:brightness-90 transition-all ${ - media.filter(i => i.type === 'image' || i.type === 'video').length > 1 ? 'aspect-square' : 'max-h-[500px]' - }`} + className={`w-full h-full object-cover cursor-pointer hover:brightness-90 transition-all ${media.filter(i => i.type === 'image' || i.type === 'video').length > 1 ? 'aspect-square' : 'max-h-[500px]' + }`} onClick={() => setLightboxData({ index: idx })} /> ) : ( -
i.type === 'image' || i.type === 'video').length > 1 ? 'aspect-square' : '' - }`} +
i.type === 'image' || i.type === 'video').length > 1 ? 'aspect-square' : '' + }`} onClick={() => setLightboxData({ index: idx })} >
) @@ -766,84 +773,84 @@ function MessageBubble({ ) : ( <> -
- {['👍', '❤️', '😂', '😮', '😢', '🔥'].map((emoji) => ( +
+ {['👍', '❤️', '😂', '😮', '😢', '🔥'].map((emoji) => ( + + ))} +
+ - ))} -
- + - - - + - + - {message.content && ( - - )} + {message.content && ( + + )} - {isMine && message.content && ( - - )} + {isMine && message.content && ( + + )} -
- +
+ )} @@ -854,10 +861,10 @@ function MessageBubble({ {lightboxData && ( - m.type === 'image' || m.type === 'video').map(m => ({ url: m.url, type: m.type }))} + m.type === 'image' || m.type === 'video').map(m => ({ url: m.url, type: m.type }))} initialIndex={lightboxData.index} - onClose={() => setLightboxData(null)} + onClose={() => setLightboxData(null)} /> )} diff --git a/apps/web/src/lib/socket.ts b/apps/web/src/lib/socket.ts index a2744eb..8eb7b89 100644 --- a/apps/web/src/lib/socket.ts +++ b/apps/web/src/lib/socket.ts @@ -27,6 +27,7 @@ export function connectSocket(token: string): SocketCompat { // Обертка для совместимости с Socket.io API socketWrapper = { on: (event: string, callback: (...args: any[]) => void) => { + console.log(`[SignalR] Registering handler for: ${event}`); connection?.on(event, callback); }, off: (event: string, callback?: (...args: any[]) => void) => { @@ -37,12 +38,16 @@ export function connectSocket(token: string): SocketCompat { } }, emit: (event: string, ...args: any[]) => { + const state = connection?.state; + console.log(`[SignalR] emit('${event}') called, connection state: ${state}`); if (connection?.state === 'Connected') { // В SignalR invoke возвращает Promise, но Socket.io emit - нет. // Мы просто запускаем и логируем ошибки. - connection.invoke(event, ...args).catch(err => console.error(`SignalR emit error (${event}):`, err)); + connection.invoke(event, ...args) + .then(() => console.log(`[SignalR] invoke('${event}') completed successfully`)) + .catch(err => console.error(`SignalR emit error (${event}):`, err)); } else { - console.warn(`SignalR emit skipped (${event}): connection state is ${connection?.state}`); + console.warn(`SignalR emit skipped (${event}): connection state is ${state}`); } }, disconnect: () => { @@ -54,8 +59,23 @@ export function connectSocket(token: string): SocketCompat { }; connection.start() - .then(() => console.log('SignalR подключён')) - .catch(err => console.error('Ошибка подключения SignalR:', err.toString())); + .then(() => { + console.log('[SignalR] Connected successfully'); + console.log('[SignalR] Connection ID:', connection?.connectionId); + }) + .catch(err => console.error('[SignalR] Connection error:', err.toString())); + + connection.onclose((error) => { + console.log('[SignalR] Connection closed', error); + }); + + connection.onreconnecting((error) => { + console.log('[SignalR] Reconnecting...', error); + }); + + connection.onreconnected((connectionId) => { + console.log('[SignalR] Reconnected, new connection ID:', connectionId); + }); return socketWrapper; } diff --git a/apps/web/src/pages/ChatPage.tsx b/apps/web/src/pages/ChatPage.tsx index 6767f5d..6477892 100644 --- a/apps/web/src/pages/ChatPage.tsx +++ b/apps/web/src/pages/ChatPage.tsx @@ -153,10 +153,12 @@ export default function ChatPage() { }); socket.on('reaction_added', (data: { messageId: string; chatId: string; userId: string; username: string; emoji: string }) => { + console.log('[Socket] reaction_added received:', data); addReaction(data.messageId, data.chatId, data.userId, data.username, data.emoji); }); socket.on('reaction_removed', (data: { messageId: string; chatId: string; userId: string; emoji: string }) => { + console.log('[Socket] reaction_removed received:', data); removeReaction(data.messageId, data.chatId, data.userId, data.emoji); }); diff --git a/apps/web/src/stores/chatStore.ts b/apps/web/src/stores/chatStore.ts index cb6c873..95ac3f2 100644 --- a/apps/web/src/stores/chatStore.ts +++ b/apps/web/src/stores/chatStore.ts @@ -93,7 +93,7 @@ export const useChatStore = create((set, get) => ({ try { const favChat = await api.getOrCreateFavorites(); chats.unshift(favChat); - } catch {} + } catch { } } // Extract pinned messages from chats const pinnedMessages: Record = {}; @@ -175,7 +175,7 @@ export const useChatStore = create((set, get) => ({ set((state) => { const chatMessages = state.messages[message.chatId] || []; const updatedMessages = chatMessages.map((m) => (m.id === message.id ? message : m)); - + const updatedChats = state.chats.map((chat) => { if (chat.id === message.chatId) { return { @@ -295,16 +295,22 @@ export const useChatStore = create((set, get) => ({ }, addReaction: (messageId, chatId, userId, username, emoji) => { + console.log('[ChatStore] addReaction called:', { messageId, chatId, userId, username, emoji }); set((state) => { const chatMessages = state.messages[chatId] || []; const updateMsg = (m: Message) => { if (m.id === messageId) { - const exists = m.reactions.some((r) => r.userId === userId && r.emoji === emoji); - if (exists) return m; + const reactions = m.reactions || []; + const exists = reactions.some((r) => r.userId === userId && r.emoji === emoji); + if (exists) { + console.log('[ChatStore] Reaction already exists, skipping'); + return m; + } + console.log('[ChatStore] Adding reaction to message:', m.id); return { ...m, reactions: [ - ...m.reactions, + ...reactions, { id: `${messageId}-${userId}-${emoji}`, emoji, userId, user: { id: userId, username, displayName: username } }, ], }; @@ -323,6 +329,7 @@ export const useChatStore = create((set, get) => ({ return chat; }); + console.log('[ChatStore] State updated for chatId:', chatId); return { messages: { ...state.messages, @@ -334,13 +341,15 @@ export const useChatStore = create((set, get) => ({ }, removeReaction: (messageId, chatId, userId, emoji) => { + console.log('[ChatStore] removeReaction called:', { messageId, chatId, userId, emoji }); set((state) => { const chatMessages = state.messages[chatId] || []; const updateMsg = (m: Message) => { if (m.id === messageId) { + console.log('[ChatStore] Removing reaction from message:', m.id); return { ...m, - reactions: m.reactions.filter((r) => !(r.userId === userId && r.emoji === emoji)), + reactions: (m.reactions || []).filter((r) => !(r.userId === userId && r.emoji === emoji)), }; } return m; @@ -357,6 +366,7 @@ export const useChatStore = create((set, get) => ({ return chat; }); + console.log('[ChatStore] State updated for chatId:', chatId); return { messages: { ...state.messages, diff --git a/apps/web/tsconfig.tsbuildinfo b/apps/web/tsconfig.tsbuildinfo index f6e21aa..f44c583 100644 --- a/apps/web/tsconfig.tsbuildinfo +++ b/apps/web/tsconfig.tsbuildinfo @@ -1 +1 @@ -{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/components/callmodal.tsx","./src/components/chatlistitem.tsx","./src/components/chatview.tsx","./src/components/confirmmodal.tsx","./src/components/datepicker.tsx","./src/components/emojipicker.tsx","./src/components/forwardmodal.tsx","./src/components/groupsettings.tsx","./src/components/imagelightbox.tsx","./src/components/messagebubble.tsx","./src/components/messageinput.tsx","./src/components/newchatmodal.tsx","./src/components/sidemenu.tsx","./src/components/sidebar.tsx","./src/components/storyviewer.tsx","./src/components/typingindicator.tsx","./src/components/userprofile.tsx","./src/lib/api.ts","./src/lib/i18n.ts","./src/lib/socket.ts","./src/lib/sounds.ts","./src/lib/utils.ts","./src/pages/authpage.tsx","./src/pages/chatpage.tsx","./src/stores/authstore.ts","./src/stores/chatstore.ts","./src/stores/themestore.ts"],"version":"5.9.3"} \ No newline at end of file +{"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts","./src/components/avatar.tsx","./src/components/callmodal.tsx","./src/components/chatlistitem.tsx","./src/components/chatview.tsx","./src/components/confirmmodal.tsx","./src/components/datepicker.tsx","./src/components/emojipicker.tsx","./src/components/forwardmodal.tsx","./src/components/groupcallmodal.tsx","./src/components/groupsettings.tsx","./src/components/imagelightbox.tsx","./src/components/messagebubble.tsx","./src/components/messageinput.tsx","./src/components/newchatmodal.tsx","./src/components/notificationprovider.tsx","./src/components/sidemenu.tsx","./src/components/sidebar.tsx","./src/components/storyviewer.tsx","./src/components/typingindicator.tsx","./src/components/userprofile.tsx","./src/lib/api.ts","./src/lib/hooks.ts","./src/lib/i18n.ts","./src/lib/socket.ts","./src/lib/sounds.ts","./src/lib/types.ts","./src/lib/utils.ts","./src/pages/authpage.tsx","./src/pages/chatpage.tsx","./src/stores/authstore.ts","./src/stores/chatstore.ts","./src/stores/notificationstore.ts","./src/stores/themestore.ts"],"version":"5.9.3"} \ No newline at end of file