| { | { | ||||
| public interface IRequestRepository : IBaseRepository<Request> | public interface IRequestRepository : IBaseRepository<Request> | ||||
| { | { | ||||
| Task<List<Request>> GetAll(); | |||||
| Task<Request> FindRequestAsync(string customerId, string roomId); | |||||
| } | } | ||||
| } | } |
| using Diligent.WebAPI.Business.Interfaces; | using Diligent.WebAPI.Business.Interfaces; | ||||
| using Diligent.WebAPI.Data; | using Diligent.WebAPI.Data; | ||||
| using MongoDB.Bson; | |||||
| using MongoDB.Driver; | using MongoDB.Driver; | ||||
| namespace Diligent.WebAPI.Business.Services | namespace Diligent.WebAPI.Business.Services | ||||
| { | { | ||||
| protected readonly IMongoDBContext _mongoContext; | protected readonly IMongoDBContext _mongoContext; | ||||
| protected IMongoCollection<TEntity> _dbCollection; | protected IMongoCollection<TEntity> _dbCollection; | ||||
| private readonly FilterDefinitionBuilder<TEntity> _builder = Builders<TEntity>.Filter; | |||||
| public BaseRepository(IMongoDBContext context) | public BaseRepository(IMongoDBContext context) | ||||
| { | { | ||||
| _mongoContext = context; | _mongoContext = context; | ||||
| _dbCollection = _mongoContext.GetCollection<TEntity>(typeof(TEntity).Name); | _dbCollection = _mongoContext.GetCollection<TEntity>(typeof(TEntity).Name); | ||||
| } | } | ||||
| public Task CreateAsync(TEntity entity) | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public async Task<List<TEntity>> GetAsync() | public async Task<List<TEntity>> GetAsync() | ||||
| { | { | ||||
| var all = await _dbCollection.FindAsync(Builders<TEntity>.Filter.Empty); | |||||
| var all = await _dbCollection.FindAsync(_builder.Empty); | |||||
| return await all.ToListAsync(); | return await all.ToListAsync(); | ||||
| } | } | ||||
| public Task<TEntity> GetByIdAsync(string id) | |||||
| public async Task<TEntity> GetByIdAsync(string id) | |||||
| { | { | ||||
| throw new NotImplementedException(); | |||||
| var element = await _dbCollection.FindAsync(_builder.Eq("_id", new ObjectId(id))); | |||||
| return await element.FirstOrDefaultAsync(); | |||||
| } | } | ||||
| public Task RemoveAsync(string id) | |||||
| public async Task RemoveAsync(string id) | |||||
| { | { | ||||
| throw new NotImplementedException(); | |||||
| await _dbCollection.FindOneAndDeleteAsync(_builder.Eq("_id", new ObjectId(id))); | |||||
| } | } | ||||
| public Task UpdateAsync(string id, TEntity updateEntity) | |||||
| public async Task UpdateAsync(string id, TEntity updateEntity) | |||||
| { | |||||
| await _dbCollection.FindOneAndReplaceAsync(_builder.Eq("_id", new ObjectId(id)), updateEntity); | |||||
| } | |||||
| public async Task CreateAsync(TEntity entity) | |||||
| { | { | ||||
| throw new NotImplementedException(); | |||||
| await _dbCollection.InsertOneAsync(entity); | |||||
| } | } | ||||
| } | } | ||||
| } | } |
| _dbCollection = _mongoContext.GetCollection<Request>(typeof(Request).Name); | _dbCollection = _mongoContext.GetCollection<Request>(typeof(Request).Name); | ||||
| } | } | ||||
| public async Task<List<Request>> GetAll() | |||||
| public async Task<Request> FindRequestAsync(string customerId, string roomId) | |||||
| { | { | ||||
| var all = await _dbCollection.FindAsync(Builders<Request>.Filter.Empty); | |||||
| return await all.ToListAsync(); | |||||
| var requests = await _dbCollection.FindAsync(x => x.SenderId == customerId && x.RoomId == roomId); | |||||
| return await requests.FirstOrDefaultAsync(); | |||||
| } | } | ||||
| } | } | ||||
| } | } |
| using Diligent.WebAPI.Business.HelperModels; | |||||
| using Diligent.WebAPI.Business.MongoServices; | |||||
| using Diligent.WebAPI.Data; | |||||
| using Diligent.WebAPI.Data.Entities; | |||||
| using Microsoft.Extensions.Options; | |||||
| using MongoDB.Driver; | |||||
| namespace Diligent.WebAPI.Business.Services | |||||
| { | |||||
| public class RequestService : BaseMongo<Request> | |||||
| { | |||||
| public RequestService(IOptions<WebApiDatabaseSettings> webApiDatabaseSettings) : | |||||
| base(webApiDatabaseSettings, "Request") | |||||
| { } | |||||
| public async Task<List<Request>> GetRequestsAsync() => | |||||
| await _mongoCollection.Find(_ => true).ToListAsync(); | |||||
| public async Task<Request> GetRequestAsync(string id) => | |||||
| await _mongoCollection.Find(x => x.Id == id).FirstOrDefaultAsync(); | |||||
| public async Task CreateRequestAsync(Request req) => | |||||
| await _mongoCollection.InsertOneAsync(req); | |||||
| public async Task<DeleteCustomerRequest> RemoveRequestAsync(string customerId,string roomId) | |||||
| { | |||||
| var request = await _mongoCollection.Find(x => x.SenderId == customerId && x.RoomId == roomId).FirstOrDefaultAsync(); | |||||
| if (request == null) | |||||
| return new DeleteCustomerRequest { IsSuccess = false }; | |||||
| var id = request.Id; | |||||
| _mongoCollection.DeleteOne(x => x.Id == request.Id); | |||||
| return new DeleteCustomerRequest { Id = id, IsSuccess = true }; | |||||
| } | |||||
| } | |||||
| } |
| { | { | ||||
| [BsonId] | [BsonId] | ||||
| [BsonRepresentation(BsonType.ObjectId)] | [BsonRepresentation(BsonType.ObjectId)] | ||||
| public string? Id { get; set; } | |||||
| public string Id { get; set; } | |||||
| public DateTime CreatedAtUtc { get; set; } = DateTime.UtcNow; | public DateTime CreatedAtUtc { get; set; } = DateTime.UtcNow; | ||||
| public DateTime? UpdatedAtUtc { get; set; } | public DateTime? UpdatedAtUtc { get; set; } | ||||
| public DateTime? DeletedAtUtc { get; set; } | public DateTime? DeletedAtUtc { get; set; } |
| <PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" /> | <PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" /> | ||||
| <PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | <PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||||
| <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" /> | <PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" /> | ||||
| <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <ItemGroup> | <ItemGroup> |
| builder.Services.AddScoped<ICustomerService, CustomerService>(); | builder.Services.AddScoped<ICustomerService, CustomerService>(); | ||||
| builder.Services.AddSingleton<RoomService>(); | builder.Services.AddSingleton<RoomService>(); | ||||
| builder.Services.AddSingleton<RequestService>(); | |||||
| builder.Services.AddSingleton<AuthorizationService>(); | builder.Services.AddSingleton<AuthorizationService>(); | ||||
| builder.Services.AddMediatR(Assembly.GetExecutingAssembly()); | builder.Services.AddMediatR(Assembly.GetExecutingAssembly()); |
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Host.Exceptions; | using Diligent.WebAPI.Host.Exceptions; | ||||
| using Diligent.WebAPI.Host.Mediator.Request.Commands; | using Diligent.WebAPI.Host.Mediator.Request.Commands; | ||||
| using MediatR; | using MediatR; | ||||
| { | { | ||||
| public class AcceptCustomerRequestHandler : IRequestHandler<AcceptCustomerRequestCommand, string?> | public class AcceptCustomerRequestHandler : IRequestHandler<AcceptCustomerRequestCommand, string?> | ||||
| { | { | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestRepository; | |||||
| private readonly RoomService _roomService; | private readonly RoomService _roomService; | ||||
| public AcceptCustomerRequestHandler(RequestService requestService,RoomService roomService) | |||||
| public AcceptCustomerRequestHandler(RoomService roomService, IRequestRepository requestRepository) | |||||
| { | { | ||||
| _requestService = requestService; | |||||
| _roomService = roomService; | _roomService = roomService; | ||||
| _requestRepository = requestRepository; | |||||
| } | } | ||||
| public async Task<string?> Handle(AcceptCustomerRequestCommand request, CancellationToken cancellationToken) | public async Task<string?> Handle(AcceptCustomerRequestCommand request, CancellationToken cancellationToken) | ||||
| { | { | ||||
| if (!result1) | if (!result1) | ||||
| throw new NotFoundException($"Room with id={request.RoomId} doesn't exist"); | throw new NotFoundException($"Room with id={request.RoomId} doesn't exist"); | ||||
| var result2 = await _requestService.RemoveRequestAsync(request.CustomerId, request.RoomId); | |||||
| var req = await _requestRepository.FindRequestAsync(request.CustomerId, request.RoomId); | |||||
| if (!result2.IsSuccess) | |||||
| throw new BadHttpRequestException("customerId or roomId is invalid"); | |||||
| if (req == null) | |||||
| throw new NotFoundException("Request are not found"); | |||||
| return result2.Id; | |||||
| await _requestRepository.RemoveAsync(req.Id); | |||||
| return req.Id; | |||||
| } | } | ||||
| } | } | ||||
| } | } |
| using AutoMapper; | using AutoMapper; | ||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | using Diligent.WebAPI.Business.Services; | ||||
| using Diligent.WebAPI.Host.Mediator.Request.Commands; | using Diligent.WebAPI.Host.Mediator.Request.Commands; | ||||
| using MediatR; | using MediatR; | ||||
| public class CreateRequestHandler : IRequestHandler<CreateRequestCommand, Data.Entities.Request> | public class CreateRequestHandler : IRequestHandler<CreateRequestCommand, Data.Entities.Request> | ||||
| { | { | ||||
| private readonly IMapper _mapper; | private readonly IMapper _mapper; | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestService; | |||||
| public CreateRequestHandler(IMapper mapper,RequestService requestService) | |||||
| public CreateRequestHandler(IMapper mapper, IRequestRepository requestService) | |||||
| { | { | ||||
| _mapper = mapper; | _mapper = mapper; | ||||
| _requestService = requestService; | _requestService = requestService; | ||||
| throw new BadHttpRequestException("Resource object cannot be null."); | throw new BadHttpRequestException("Resource object cannot be null."); | ||||
| var createdRequest = _mapper.Map<Data.Entities.Request>(req); | var createdRequest = _mapper.Map<Data.Entities.Request>(req); | ||||
| await _requestService.CreateRequestAsync(createdRequest); | |||||
| await _requestService.CreateAsync(createdRequest); | |||||
| return createdRequest; | return createdRequest; | ||||
| } | } |
| _requestRepository = requestRepository; | _requestRepository = requestRepository; | ||||
| } | } | ||||
| public async Task<List<Data.Entities.Request>> Handle(GetAllRequestsQuery request, CancellationToken cancellationToken) => | public async Task<List<Data.Entities.Request>> Handle(GetAllRequestsQuery request, CancellationToken cancellationToken) => | ||||
| await _requestRepository.GetAll(); | |||||
| await _requestRepository.GetAsync(); | |||||
| } | } | ||||
| } | } |
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Host.Exceptions; | using Diligent.WebAPI.Host.Exceptions; | ||||
| using Diligent.WebAPI.Host.Mediator.Request.Queries; | using Diligent.WebAPI.Host.Mediator.Request.Queries; | ||||
| using MediatR; | using MediatR; | ||||
| { | { | ||||
| public class GetRequestHandler : IRequestHandler<GetRequestQuery, Data.Entities.Request> | public class GetRequestHandler : IRequestHandler<GetRequestQuery, Data.Entities.Request> | ||||
| { | { | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestService; | |||||
| public GetRequestHandler(RequestService requestService) | |||||
| public GetRequestHandler(IRequestRepository requestService) | |||||
| { | { | ||||
| _requestService = requestService; | _requestService = requestService; | ||||
| } | } | ||||
| throw new BadHttpRequestException("Id cannot be null"); | throw new BadHttpRequestException("Id cannot be null"); | ||||
| } | } | ||||
| var req = await _requestService.GetRequestAsync(request.Id); | |||||
| var req = await _requestService.GetByIdAsync(request.Id); | |||||
| if (request == null) | if (request == null) | ||||
| { | { |
| using AutoMapper; | using AutoMapper; | ||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | using Diligent.WebAPI.Business.Services; | ||||
| using Diligent.WebAPI.Data.Entities; | using Diligent.WebAPI.Data.Entities; | ||||
| using Diligent.WebAPI.Host.DTOs.Request; | using Diligent.WebAPI.Host.DTOs.Request; | ||||
| { | { | ||||
| public class GetRoomsForWhichRequestExistHandler : IRequestHandler<GetRoomsForWhichRequestExistQuery, List<RequestRoomReadDTO>> | public class GetRoomsForWhichRequestExistHandler : IRequestHandler<GetRoomsForWhichRequestExistQuery, List<RequestRoomReadDTO>> | ||||
| { | { | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestService; | |||||
| private readonly RoomService _roomService; | private readonly RoomService _roomService; | ||||
| private readonly IMapper _mapper; | private readonly IMapper _mapper; | ||||
| public GetRoomsForWhichRequestExistHandler(RequestService requestService,RoomService roomService,IMapper mapper) | |||||
| public GetRoomsForWhichRequestExistHandler(IRequestRepository requestService,RoomService roomService,IMapper mapper) | |||||
| { | { | ||||
| _requestService = requestService; | _requestService = requestService; | ||||
| _roomService = roomService; | _roomService = roomService; | ||||
| } | } | ||||
| public async Task<List<RequestRoomReadDTO>> Handle(GetRoomsForWhichRequestExistQuery request, CancellationToken cancellationToken) | public async Task<List<RequestRoomReadDTO>> Handle(GetRoomsForWhichRequestExistQuery request, CancellationToken cancellationToken) | ||||
| { | { | ||||
| var requests = await _requestService.GetRequestsAsync(); | |||||
| var requests = await _requestService.GetAsync(); | |||||
| var rooms = await _roomService.GetRoomsAsync(); | var rooms = await _roomService.GetRoomsAsync(); | ||||
| List<Room> temp = new(); | List<Room> temp = new(); | ||||
| foreach (var req in requests) | foreach (var req in requests) |
| using AutoMapper; | using AutoMapper; | ||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | using Diligent.WebAPI.Business.Services; | ||||
| using Diligent.WebAPI.Host.DTOs.Customer; | using Diligent.WebAPI.Host.DTOs.Customer; | ||||
| using Diligent.WebAPI.Host.Mediator.Request.Queries; | using Diligent.WebAPI.Host.Mediator.Request.Queries; | ||||
| { | { | ||||
| public class GetSendersForSpecificRoomHandler : IRequestHandler<GetSendersForSpecificRequestRoomQuery, List<CustomerRequestRoomReadDTO>> | public class GetSendersForSpecificRoomHandler : IRequestHandler<GetSendersForSpecificRequestRoomQuery, List<CustomerRequestRoomReadDTO>> | ||||
| { | { | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestService; | |||||
| private readonly IMapper _mapper; | private readonly IMapper _mapper; | ||||
| public GetSendersForSpecificRoomHandler(RequestService requestService,IMapper mapper) | |||||
| public GetSendersForSpecificRoomHandler(IRequestRepository requestService,IMapper mapper) | |||||
| { | { | ||||
| _requestService = requestService; | _requestService = requestService; | ||||
| _mapper = mapper; | _mapper = mapper; | ||||
| } | } | ||||
| public async Task<List<CustomerRequestRoomReadDTO>> Handle(GetSendersForSpecificRequestRoomQuery request, CancellationToken cancellationToken) | public async Task<List<CustomerRequestRoomReadDTO>> Handle(GetSendersForSpecificRequestRoomQuery request, CancellationToken cancellationToken) | ||||
| { | { | ||||
| var requests = await _requestService.GetRequestsAsync(); | |||||
| var requests = await _requestService.GetAsync(); | |||||
| List<CustomerRequestRoomReadDTO> users = new(); | List<CustomerRequestRoomReadDTO> users = new(); | ||||
| foreach (var req in requests) | foreach (var req in requests) | ||||
| { | { |
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Business.Services; | |||||
| using Diligent.WebAPI.Host.Exceptions; | |||||
| using Diligent.WebAPI.Host.Mediator.Request.Commands; | using Diligent.WebAPI.Host.Mediator.Request.Commands; | ||||
| using MediatR; | using MediatR; | ||||
| { | { | ||||
| public class RejectCustomerRequestHandler : IRequestHandler<RejectCustomerRequestCommand, string?> | public class RejectCustomerRequestHandler : IRequestHandler<RejectCustomerRequestCommand, string?> | ||||
| { | { | ||||
| private readonly RequestService _requestService; | |||||
| private readonly IRequestRepository _requestService; | |||||
| public RejectCustomerRequestHandler(RequestService requestService) | |||||
| public RejectCustomerRequestHandler(IRequestRepository requestService) | |||||
| { | { | ||||
| _requestService = requestService; | _requestService = requestService; | ||||
| } | } | ||||
| public async Task<string?> Handle(RejectCustomerRequestCommand request, CancellationToken cancellationToken) | public async Task<string?> Handle(RejectCustomerRequestCommand request, CancellationToken cancellationToken) | ||||
| { | { | ||||
| var result = await _requestService.RemoveRequestAsync(request.CustomerId, request.RoomId); | |||||
| var req = await _requestService.FindRequestAsync(request.CustomerId, request.RoomId); | |||||
| if(req == null) | |||||
| { | |||||
| throw new NotFoundException("Request are not found"); | |||||
| } | |||||
| if(!result.IsSuccess) | |||||
| throw new BadHttpRequestException("customerId or roomId is invalid"); | |||||
| await _requestService.RemoveAsync(req.Id); | |||||
| return result.Id; | |||||
| return req.Id; | |||||
| } | } | ||||
| } | } | ||||
| } | } |
| builder.ConfigureData(builder.Configuration); | builder.ConfigureData(builder.Configuration); | ||||
| var collection = builder.Services; | var collection = builder.Services; | ||||
| builder.Services.AddSwaggerGen(); | |||||
| Diligent.WebAPI.Host.Extensions.ApiConfiguration.ConfigureServices(collection); | Diligent.WebAPI.Host.Extensions.ApiConfiguration.ConfigureServices(collection); | ||||
| builder.ConfigureValidationMiddleware(); | builder.ConfigureValidationMiddleware(); | ||||
| var app = builder.Build(); | var app = builder.Build(); | ||||
| app.UseAuthentication(); | app.UseAuthentication(); | ||||
| app.UseAuthorization(); | app.UseAuthorization(); | ||||
| app.SetupData(); | app.SetupData(); | ||||
| if (app.Environment.IsDevelopment()) | |||||
| { | |||||
| app.UseSwagger(); | |||||
| app.UseSwaggerUI(); | |||||
| } | |||||
| app.MapHub<ChatHub>("/chatHub"); | app.MapHub<ChatHub>("/chatHub"); | ||||
| app.MapHub<ConnectionHub>("/statusHub"); | app.MapHub<ConnectionHub>("/statusHub"); |
| using AutoMapper; | |||||
| using Diligent.WebAPI.Business.Interfaces; | |||||
| using Diligent.WebAPI.Data.Entities; | |||||
| using Diligent.WebAPI.Host.DTOs.Request; | |||||
| using Diligent.WebAPI.Host.Mapper; | |||||
| using Diligent.WebAPI.Host.Mediator.Request.Commands; | |||||
| using Diligent.WebAPI.Host.Mediator.Request.Handlers; | |||||
| using Microsoft.AspNetCore.Http; | |||||
| using Moq; | |||||
| namespace Tests | |||||
| { | |||||
| [TestFixture] | |||||
| public class RequestTests | |||||
| { | |||||
| private Mock<IRequestRepository> _requestRepositoryMock; | |||||
| private CreateRequestHandler _handler; | |||||
| private IMapper _mapper; | |||||
| [SetUp] | |||||
| public void Setup() | |||||
| { | |||||
| _requestRepositoryMock = new Mock<IRequestRepository>(); | |||||
| var myProfile = new RequestMappingProfile(); | |||||
| var configuration = new MapperConfiguration(cfg => cfg.AddProfile(myProfile)); | |||||
| _mapper = new Mapper(configuration); | |||||
| _handler = new CreateRequestHandler(_mapper, _requestRepositoryMock.Object); | |||||
| } | |||||
| [Test] | |||||
| public async Task CreateRequest_ObjectIsNull_ThrowsBadHttpRequestException() | |||||
| { | |||||
| var command = new CreateRequestCommand(null); | |||||
| Assert.That(async () => await _handler.Handle(command, new CancellationToken()), Throws.Exception.TypeOf<BadHttpRequestException>()); | |||||
| } | |||||
| [Test] | |||||
| public async Task CreateRequest_ObjectIsNotNull_ReturnsObject() | |||||
| { | |||||
| _requestRepositoryMock.Setup(x => x.CreateAsync(It.IsAny<Request>())).Returns(Task.CompletedTask); | |||||
| var requestDTO = new RequestCreateDTO | |||||
| { | |||||
| RoomId = "room1", | |||||
| RoomName = "room1", | |||||
| SenderId = "sender1", | |||||
| SenderUsername = "sender1" | |||||
| }; | |||||
| var command = new CreateRequestCommand(requestDTO); | |||||
| var result = await _handler.Handle(command, new CancellationToken()); | |||||
| Assert.That(result, Is.Not.Null); | |||||
| } | |||||
| } | |||||
| } |
| <ItemGroup> | <ItemGroup> | ||||
| <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" /> | <ProjectReference Include="..\Diligent.WebAPI.Business\Diligent.WebAPI.Business.csproj" /> | ||||
| <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" /> | <ProjectReference Include="..\Diligent.WebAPI.Data\Diligent.WebAPI.Data.csproj" /> | ||||
| <ProjectReference Include="..\Diligent.WebAPI.Host\Diligent.WebAPI.Host.csproj" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| </Project> | </Project> |
| namespace Tests | |||||
| { | |||||
| public class Tests | |||||
| { | |||||
| [SetUp] | |||||
| public void Setup() | |||||
| { | |||||
| } | |||||
| [Test] | |||||
| public void Test1() | |||||
| { | |||||
| Assert.Pass(); | |||||
| } | |||||
| } | |||||
| } |
| { | |||||
| "runtimeOptions": { | |||||
| "tfm": "net6.0", | |||||
| "frameworks": [ | |||||
| { | |||||
| "name": "Microsoft.NETCore.App", | |||||
| "version": "6.0.0" | |||||
| }, | |||||
| { | |||||
| "name": "Microsoft.AspNetCore.App", | |||||
| "version": "6.0.0" | |||||
| } | |||||
| ], | |||||
| "configProperties": { | |||||
| "System.GC.Server": true, | |||||
| "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false | |||||
| } | |||||
| } | |||||
| } |
| { | { | ||||
| "runtimeOptions": { | "runtimeOptions": { | ||||
| "tfm": "net6.0", | "tfm": "net6.0", | ||||
| "framework": { | |||||
| "name": "Microsoft.NETCore.App", | |||||
| "version": "6.0.0" | |||||
| } | |||||
| "frameworks": [ | |||||
| { | |||||
| "name": "Microsoft.NETCore.App", | |||||
| "version": "6.0.0" | |||||
| }, | |||||
| { | |||||
| "name": "Microsoft.AspNetCore.App", | |||||
| "version": "6.0.0" | |||||
| } | |||||
| ] | |||||
| } | } | ||||
| } | } |
| { | |||||
| "ConnectionStrings": { | |||||
| "WebApi": "Data Source=localhost,2433;User=sa;Password=developer_pw;Initial Catalog=WebApiDB;MultipleActiveResultSets=True" | |||||
| }, | |||||
| "Microsoft.AspNetCore.HttpLogging.HttpLoggingMiddleware": "Information" | |||||
| } |
| { | |||||
| "WebApiDB": { | |||||
| "ConnectionString": "mongodb+srv://dzenis12:Nekasifra123@chat.hvh4y.mongodb.net/?retryWrites=true&w=majority", | |||||
| "DatabaseName": "WebApiDB" | |||||
| }, | |||||
| "Logging": { | |||||
| "LogLevel": { | |||||
| "Default": "Information", | |||||
| "Microsoft.AspNetCore": "Warning" | |||||
| } | |||||
| }, | |||||
| "JwtSettings": { | |||||
| "validIssuer": "http://localhost:5116", | |||||
| "validAudience": "http://localhost:3000", | |||||
| "jwtSecret": "Ovo je neka sifra koja treba biti tajna" | |||||
| }, | |||||
| "Serilog": { | |||||
| "Using": [ "Serilog.Sinks.File" ], | |||||
| "MinimumLevel": { | |||||
| "Default": "Information" | |||||
| }, | |||||
| "WriteTo": [ | |||||
| //{ | |||||
| // "Name": "File", | |||||
| // "Args": { | |||||
| // "path": "../Diligent.WebAPI.Host/Logging/webapi-.log", | |||||
| // "rollingInterval": "Day", | |||||
| // "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} {CorrelationId} {Level:u3} {Username} {Message:lj}{NewLine}{Exception}]" | |||||
| // } | |||||
| //}, | |||||
| { | |||||
| "Name": "Seq", | |||||
| "Args": { | |||||
| "serverUrl": "http://localhost:5117" | |||||
| } | |||||
| } | |||||
| ] | |||||
| } | |||||
| } |
| 1936525622 | |||||
| 744594339 |
| build_property.PlatformNeutralAssembly = | build_property.PlatformNeutralAssembly = | ||||
| build_property._SupportedPlatformList = Linux,macOS,Windows | build_property._SupportedPlatformList = Linux,macOS,Windows | ||||
| build_property.RootNamespace = Tests | build_property.RootNamespace = Tests | ||||
| build_property.ProjectDir = C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\ | |||||
| build_property.ProjectDir = C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\ |
| 1f469697f36ec357d8c53793bf6f032a04cc5d7f | |||||
| e50f939d3ed7a2e5b4253b54eceac6316606a423 |
| C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.pdb | C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.pdb | ||||
| C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.genruntimeconfig.cache | C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.genruntimeconfig.cache | ||||
| C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\ref\Tests.dll | C:\Users\meris.ahmatovic\Desktop\zadnjeTestiranje\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\ref\Tests.dll | ||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\CoverletSourceRootsMapping | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testhost.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.deps.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.runtimeconfig.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\appsettings.Development.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\appsettings.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.exe | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testhost.exe | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NUnit3.TestAdapter.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NUnit3.TestAdapter.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.api.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.core.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testcentric.engine.metadata.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.deps.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.runtimeconfig.json | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AspNetCore.Identity.MongoDbCore.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AutoMapper.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Castle.Core.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\DnsClient.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\FluentAssertions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.Contracts.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.Extensions.Microsoft.DependencyInjection.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Net.Http.Formatting.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Web.Http.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.Versioning.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Identity.Client.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.OpenApi.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Bson.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Driver.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Driver.Core.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Libmongocrypt.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDbGenericRepository.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Moq.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Newtonsoft.Json.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NuGet.Frameworks.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.framework.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.AspNetCore.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Extensions.Hosting.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Extensions.Logging.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Formatting.Compact.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Settings.Configuration.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Console.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Debug.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.File.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.PeriodicBatching.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Seq.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\SharpCompress.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Drawing.Common.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Runtime.Caching.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Security.Permissions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Windows.Extensions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libsnappy64.so | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libzstd.so | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libsnappy64.dylib | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libzstd.dylib | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\libzstd.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\snappy32.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\snappy64.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libmongocrypt.so | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libmongocrypt.dylib | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\mongocrypt.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Business.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Data.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Business.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Data.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.AssemblyReference.cache | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.GeneratedMSBuildEditorConfig.editorconfig | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.AssemblyInfoInputs.cache | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.AssemblyInfo.cs | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.CoreCompileInputs.cache | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.CopyComplete | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\refint\Tests.dll | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.pdb | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.genruntimeconfig.cache | |||||
| C:\Users\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\ref\Tests.dll |
| a00f98bbc88f14f034308aebe29bfdf8dcba5af5 | |||||
| 044af939ec05b1d103aac5c0b958227457c14e24 |
| { | { | ||||
| "format": 1, | "format": 1, | ||||
| "restore": { | "restore": { | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {} | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {} | |||||
| }, | }, | ||||
| "projects": { | "projects": { | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": { | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": { | |||||
| "version": "1.0.0", | "version": "1.0.0", | ||||
| "restore": { | "restore": { | ||||
| "projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj", | |||||
| "projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj", | |||||
| "projectName": "Diligent.WebAPI.Business", | "projectName": "Diligent.WebAPI.Business", | ||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj", | |||||
| "packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\obj\\", | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj", | |||||
| "packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\obj\\", | |||||
| "projectStyle": "PackageReference", | "projectStyle": "PackageReference", | ||||
| "configFilePaths": [ | "configFilePaths": [ | ||||
| "C:\\Users\\meris.ahmatovic\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | ||||
| ], | ], | ||||
| "originalTargetFrameworks": [ | "originalTargetFrameworks": [ | ||||
| "net6.0": { | "net6.0": { | ||||
| "targetAlias": "net6.0", | "targetAlias": "net6.0", | ||||
| "projectReferences": { | "projectReferences": { | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj" | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj" | |||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| }, | }, | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "version": "1.0.0", | "version": "1.0.0", | ||||
| "restore": { | "restore": { | ||||
| "projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj", | |||||
| "projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj", | |||||
| "projectName": "Diligent.WebAPI.Data", | "projectName": "Diligent.WebAPI.Data", | ||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj", | |||||
| "packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\obj\\", | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj", | |||||
| "packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\obj\\", | |||||
| "projectStyle": "PackageReference", | "projectStyle": "PackageReference", | ||||
| "configFilePaths": [ | "configFilePaths": [ | ||||
| "C:\\Users\\meris.ahmatovic\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | ||||
| ], | ], | ||||
| "originalTargetFrameworks": [ | "originalTargetFrameworks": [ | ||||
| } | } | ||||
| } | } | ||||
| }, | }, | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": { | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": { | |||||
| "version": "1.0.0", | "version": "1.0.0", | ||||
| "restore": { | "restore": { | ||||
| "projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj", | |||||
| "projectName": "Diligent.WebAPI.Host", | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj", | |||||
| "packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\obj\\", | |||||
| "projectStyle": "PackageReference", | |||||
| "configFilePaths": [ | |||||
| "C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |||||
| ], | |||||
| "originalTargetFrameworks": [ | |||||
| "net6.0" | |||||
| ], | |||||
| "sources": { | |||||
| "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |||||
| "https://api.nuget.org/v3/index.json": {} | |||||
| }, | |||||
| "frameworks": { | |||||
| "net6.0": { | |||||
| "targetAlias": "net6.0", | |||||
| "projectReferences": { | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj" | |||||
| }, | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj" | |||||
| } | |||||
| } | |||||
| } | |||||
| }, | |||||
| "warningProperties": { | |||||
| "warnAsError": [ | |||||
| "NU1605" | |||||
| ] | |||||
| } | |||||
| }, | |||||
| "frameworks": { | |||||
| "net6.0": { | |||||
| "targetAlias": "net6.0", | |||||
| "dependencies": { | |||||
| "AutoMapper.Extensions.Microsoft.DependencyInjection": { | |||||
| "target": "Package", | |||||
| "version": "[11.0.0, )" | |||||
| }, | |||||
| "MediatR": { | |||||
| "target": "Package", | |||||
| "version": "[10.0.1, )" | |||||
| }, | |||||
| "MediatR.Extensions.Microsoft.DependencyInjection": { | |||||
| "target": "Package", | |||||
| "version": "[10.0.1, )" | |||||
| }, | |||||
| "Microsoft.AspNet.WebApi.Core": { | |||||
| "target": "Package", | |||||
| "version": "[5.2.9, )" | |||||
| }, | |||||
| "Microsoft.AspNetCore.Authentication.JwtBearer": { | |||||
| "target": "Package", | |||||
| "version": "[6.0.6, )" | |||||
| }, | |||||
| "Microsoft.AspNetCore.Identity": { | |||||
| "target": "Package", | |||||
| "version": "[2.2.0, )" | |||||
| }, | |||||
| "Microsoft.AspNetCore.Mvc.Versioning": { | |||||
| "target": "Package", | |||||
| "version": "[5.0.0, )" | |||||
| }, | |||||
| "Microsoft.EntityFrameworkCore.Design": { | |||||
| "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", | |||||
| "suppressParent": "All", | |||||
| "target": "Package", | |||||
| "version": "[6.0.3, )" | |||||
| }, | |||||
| "Serilog": { | |||||
| "target": "Package", | |||||
| "version": "[2.11.0, )" | |||||
| }, | |||||
| "Serilog.AspNetCore": { | |||||
| "target": "Package", | |||||
| "version": "[5.0.0, )" | |||||
| }, | |||||
| "Serilog.Sinks.Console": { | |||||
| "target": "Package", | |||||
| "version": "[4.0.1, )" | |||||
| }, | |||||
| "Serilog.Sinks.File": { | |||||
| "target": "Package", | |||||
| "version": "[5.0.0, )" | |||||
| }, | |||||
| "Serilog.Sinks.Seq": { | |||||
| "target": "Package", | |||||
| "version": "[5.1.1, )" | |||||
| } | |||||
| }, | |||||
| "imports": [ | |||||
| "net461", | |||||
| "net462", | |||||
| "net47", | |||||
| "net471", | |||||
| "net472", | |||||
| "net48" | |||||
| ], | |||||
| "assetTargetFallback": true, | |||||
| "warn": true, | |||||
| "frameworkReferences": { | |||||
| "Microsoft.AspNetCore.App": { | |||||
| "privateAssets": "none" | |||||
| }, | |||||
| "Microsoft.NETCore.App": { | |||||
| "privateAssets": "all" | |||||
| } | |||||
| }, | |||||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" | |||||
| } | |||||
| } | |||||
| }, | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": { | |||||
| "version": "1.0.0", | |||||
| "restore": { | |||||
| "projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "projectName": "Tests", | "projectName": "Tests", | ||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\obj\\", | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\", | |||||
| "outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\obj\\", | |||||
| "projectStyle": "PackageReference", | "projectStyle": "PackageReference", | ||||
| "configFilePaths": [ | "configFilePaths": [ | ||||
| "C:\\Users\\meris.ahmatovic\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | ||||
| ], | ], | ||||
| "originalTargetFrameworks": [ | "originalTargetFrameworks": [ | ||||
| "net6.0": { | "net6.0": { | ||||
| "targetAlias": "net6.0", | "targetAlias": "net6.0", | ||||
| "projectReferences": { | "projectReferences": { | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": { | |||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj" | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj" | |||||
| }, | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj" | |||||
| }, | }, | ||||
| "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": { | |||||
| "projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj" | |||||
| "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": { | |||||
| "projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj" | |||||
| } | } | ||||
| } | } | ||||
| } | } |
| <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | ||||
| <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | ||||
| <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | ||||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\meris.ahmatovic\.nuget\packages\</NuGetPackageFolders> | |||||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ermin.bronja\.nuget\packages\</NuGetPackageFolders> | |||||
| <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | ||||
| <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion> | <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||||
| <SourceRoot Include="C:\Users\meris.ahmatovic\.nuget\packages\" /> | |||||
| <SourceRoot Include="C:\Users\ermin.bronja\.nuget\packages\" /> | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||||
| <Import Project="$(NuGetPackageRoot)nunit3testadapter\4.2.1\build\netcoreapp2.1\NUnit3TestAdapter.props" Condition="Exists('$(NuGetPackageRoot)nunit3testadapter\4.2.1\build\netcoreapp2.1\NUnit3TestAdapter.props')" /> | <Import Project="$(NuGetPackageRoot)nunit3testadapter\4.2.1\build\netcoreapp2.1\NUnit3TestAdapter.props" Condition="Exists('$(NuGetPackageRoot)nunit3testadapter\4.2.1\build\netcoreapp2.1\NUnit3TestAdapter.props')" /> | ||||
| <Import Project="$(NuGetPackageRoot)coverlet.msbuild\3.1.2\build\coverlet.msbuild.props" Condition="Exists('$(NuGetPackageRoot)coverlet.msbuild\3.1.2\build\coverlet.msbuild.props')" /> | <Import Project="$(NuGetPackageRoot)coverlet.msbuild\3.1.2\build\coverlet.msbuild.props" Condition="Exists('$(NuGetPackageRoot)coverlet.msbuild\3.1.2\build\coverlet.msbuild.props')" /> | ||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||||
| <PkgNUnit_Analyzers Condition=" '$(PkgNUnit_Analyzers)' == '' ">C:\Users\meris.ahmatovic\.nuget\packages\nunit.analyzers\3.3.0</PkgNUnit_Analyzers> | |||||
| <PkgNUnit_Analyzers Condition=" '$(PkgNUnit_Analyzers)' == '' ">C:\Users\ermin.bronja\.nuget\packages\nunit.analyzers\3.3.0</PkgNUnit_Analyzers> | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| </Project> | </Project> |
| { | { | ||||
| "version": 2, | "version": 2, | ||||
| "dgSpecHash": "/0Wh1TwsuBA39OHwf3pCJw0whYlwcVgmB4NZWYiwkAx0p7bceETwSaDnzCPBa9nPDXYMhut1Ti1K+OHQj196Ig==", | |||||
| "dgSpecHash": "PNhN7Zeu6jCHoQiy0rSEO5BJtz9cIg9UAJ9Ky/hfCmFIoGma1+a98OUcSund0VqadKx/jV+uyQXILPwstwfytQ==", | |||||
| "success": true, | "success": true, | ||||
| "projectFilePath": "C:\\Users\\meris.ahmatovic\\Desktop\\zadnjeTestiranje\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "projectFilePath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj", | |||||
| "expectedPackageFiles": [ | "expectedPackageFiles": [ | ||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\aspnetcore.identity.mongodbcore\\3.1.2\\aspnetcore.identity.mongodbcore.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\castle.core\\5.1.0\\castle.core.5.1.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\coverlet.collector\\3.1.2\\coverlet.collector.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\fluentassertions\\6.7.0\\fluentassertions.6.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore\\2.2.0\\microsoft.aspnetcore.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.12\\microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\3.1.12\\microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.diagnostics\\2.2.0\\microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.abstractions\\2.2.0\\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.hostfiltering\\2.2.0\\microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.hosting\\2.2.0\\microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.httpoverrides\\2.2.0\\microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.iis\\2.2.0\\microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.iisintegration\\2.2.0\\microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel\\2.2.0\\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.core\\2.2.0\\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.https\\2.2.0\\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.abstractions\\2.2.0\\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.sockets\\2.2.0\\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.codecoverage\\17.1.0\\microsoft.codecoverage.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.4\\microsoft.data.sqlclient.2.1.4.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.3\\microsoft.entityframeworkcore.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.3\\microsoft.entityframeworkcore.abstractions.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.3\\microsoft.entityframeworkcore.analyzers.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.3\\microsoft.entityframeworkcore.relational.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\6.0.3\\microsoft.entityframeworkcore.sqlserver.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration\\2.2.0\\microsoft.extensions.configuration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.2.0\\microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\2.2.0\\microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\2.2.0\\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\2.2.0\\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.json\\2.2.0\\microsoft.extensions.configuration.json.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\2.2.0\\microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\2.2.0\\microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\2.2.0\\microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.identity.core\\3.1.12\\microsoft.extensions.identity.core.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.identity.stores\\3.1.12\\microsoft.extensions.identity.stores.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging.configuration\\2.2.0\\microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging.console\\2.2.0\\microsoft.extensions.logging.console.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging.debug\\2.2.0\\microsoft.extensions.logging.debug.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\2.2.0\\microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.2.0\\microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.net.test.sdk\\17.1.0\\microsoft.net.test.sdk.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.1.0\\microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.testplatform.testhost\\17.1.0\\microsoft.testplatform.testhost.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mongodb.bson\\2.16.1\\mongodb.bson.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mongodb.driver\\2.16.1\\mongodb.driver.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mongodb.driver.core\\2.16.1\\mongodb.driver.core.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mongodb.libmongocrypt\\1.5.3\\mongodb.libmongocrypt.1.5.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mongodbgenericrepository\\1.4.8\\mongodbgenericrepository.1.4.8.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\moq\\4.18.2\\moq.4.18.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\nunit\\3.13.3\\nunit.3.13.3.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\nunit.analyzers\\3.3.0\\nunit.analyzers.3.3.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\nunit3testadapter\\4.2.1\\nunit3testadapter.4.2.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.memory\\4.5.1\\system.memory.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512" | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\aspnetcore.identity.mongodbcore\\3.1.2\\aspnetcore.identity.mongodbcore.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\castle.core\\5.1.0\\castle.core.5.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\coverlet.collector\\3.1.2\\coverlet.collector.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\fluentassertions\\6.7.0\\fluentassertions.6.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mediatr\\10.0.1\\mediatr.10.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnet.webapi.client\\5.2.9\\microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnet.webapi.core\\5.2.9\\microsoft.aspnet.webapi.core.5.2.9.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore\\2.2.0\\microsoft.aspnetcore.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.authentication\\2.2.0\\microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.authentication.cookies\\2.2.0\\microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\6.0.6\\microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.12\\microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.cryptography.keyderivation\\3.1.12\\microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\2.2.0\\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\2.2.0\\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.diagnostics\\2.2.0\\microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.abstractions\\2.2.0\\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.hostfiltering\\2.2.0\\microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.hosting\\2.2.0\\microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.httpoverrides\\2.2.0\\microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.identity\\2.2.0\\microsoft.aspnetcore.identity.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning\\5.0.0\\microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.iis\\2.2.0\\microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.iisintegration\\2.2.0\\microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel\\2.2.0\\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.core\\2.2.0\\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.https\\2.2.0\\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.abstractions\\2.2.0\\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.server.kestrel.transport.sockets\\2.2.0\\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.codecoverage\\17.1.0\\microsoft.codecoverage.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.4\\microsoft.data.sqlclient.2.1.4.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.3\\microsoft.entityframeworkcore.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.3\\microsoft.entityframeworkcore.abstractions.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.3\\microsoft.entityframeworkcore.analyzers.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.3\\microsoft.entityframeworkcore.relational.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\6.0.3\\microsoft.entityframeworkcore.sqlserver.6.0.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration\\2.2.0\\microsoft.extensions.configuration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.2.0\\microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\2.2.0\\microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\2.2.0\\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\2.2.0\\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.json\\2.2.0\\microsoft.extensions.configuration.json.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\2.2.0\\microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.dependencymodel\\3.0.0\\microsoft.extensions.dependencymodel.3.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\2.2.0\\microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\2.2.0\\microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.identity.core\\3.1.12\\microsoft.extensions.identity.core.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.identity.stores\\3.1.12\\microsoft.extensions.identity.stores.3.1.12.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging.configuration\\2.2.0\\microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging.console\\2.2.0\\microsoft.extensions.logging.console.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging.debug\\2.2.0\\microsoft.extensions.logging.debug.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\2.2.0\\microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.2.0\\microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.extensions.webencoders\\2.2.0\\microsoft.extensions.webencoders.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.10.0\\microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identitymodel.logging\\6.10.0\\microsoft.identitymodel.logging.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.10.0\\microsoft.identitymodel.protocols.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.10.0\\microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.10.0\\microsoft.identitymodel.tokens.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.net.test.sdk\\17.1.0\\microsoft.net.test.sdk.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.1.0\\microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.testplatform.testhost\\17.1.0\\microsoft.testplatform.testhost.17.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mongodb.bson\\2.16.1\\mongodb.bson.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mongodb.driver\\2.16.1\\mongodb.driver.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mongodb.driver.core\\2.16.1\\mongodb.driver.core.2.16.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mongodb.libmongocrypt\\1.5.3\\mongodb.libmongocrypt.1.5.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\mongodbgenericrepository\\1.4.8\\mongodbgenericrepository.1.4.8.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\moq\\4.18.2\\moq.4.18.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\newtonsoft.json.bson\\1.0.1\\newtonsoft.json.bson.1.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\nunit\\3.13.3\\nunit.3.13.3.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\nunit.analyzers\\3.3.0\\nunit.analyzers.3.3.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\nunit3testadapter\\4.2.1\\nunit3testadapter.4.2.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.aspnetcore\\5.0.0\\serilog.aspnetcore.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.extensions.hosting\\4.2.0\\serilog.extensions.hosting.4.2.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.extensions.logging\\3.1.0\\serilog.extensions.logging.3.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.settings.configuration\\3.3.0\\serilog.settings.configuration.3.3.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.sinks.console\\4.0.1\\serilog.sinks.console.4.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.sinks.periodicbatching\\2.3.0\\serilog.sinks.periodicbatching.2.3.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\serilog.sinks.seq\\5.1.1\\serilog.sinks.seq.5.1.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.10.0\\system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.memory\\4.5.1\\system.memory.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.cryptography.pkcs\\4.5.0\\system.security.cryptography.pkcs.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.cryptography.xml\\4.5.0\\system.security.cryptography.xml.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512", | |||||
| "C:\\Users\\ermin.bronja\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512" | |||||
| ], | ], | ||||
| "logs": [] | |||||
| "logs": [ | |||||
| { | |||||
| "code": "NU1701", | |||||
| "level": "Warning", | |||||
| "warningLevel": 1, | |||||
| "message": "Package 'Microsoft.AspNet.WebApi.Core 5.2.9' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.", | |||||
| "libraryId": "Microsoft.AspNet.WebApi.Core", | |||||
| "targetGraphs": [ | |||||
| "net6.0" | |||||
| ] | |||||
| } | |||||
| ] | |||||
| } | } |