Sfoglia il codice sorgente

Room tests and request tests finished

feature/mongo-services-with-interfaces
Ermin Bronja 3 anni fa
parent
commit
268972003b
29 ha cambiato i file con 623 aggiunte e 224 eliminazioni
  1. 2
    0
      Backend/Diligent.WebAPI.Business/Services/BaseRepository.cs
  2. 2
    0
      Backend/Diligent.WebAPI.Business/Services/CustomerService.cs
  3. 2
    0
      Backend/Diligent.WebAPI.Business/Services/RoomRepository.cs
  4. 86
    1
      Backend/Tests/NotificationTests.cs
  5. 120
    0
      Backend/Tests/RoomTests.cs
  6. BIN
      Backend/Tests/bin/Debug/net6.0/CoverletSourceRootsMapping
  7. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.dll
  8. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.pdb
  9. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.dll
  10. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.pdb
  11. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.dll
  12. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.pdb
  13. BIN
      Backend/Tests/bin/Debug/net6.0/Tests.dll
  14. BIN
      Backend/Tests/bin/Debug/net6.0/Tests.pdb
  15. 1
    1
      Backend/Tests/bin/Debug/net6.0/nunit_random_seed.tmp
  16. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.GeneratedMSBuildEditorConfig.editorconfig
  17. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.assets.cache
  18. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.AssemblyReference.cache
  19. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.CoreCompileInputs.cache
  20. 188
    0
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.FileListAbsolute.txt
  21. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.dll
  22. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.genruntimeconfig.cache
  23. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.pdb
  24. BIN
      Backend/Tests/obj/Debug/net6.0/ref/Tests.dll
  25. BIN
      Backend/Tests/obj/Debug/net6.0/refint/Tests.dll
  26. 37
    37
      Backend/Tests/obj/Tests.csproj.nuget.dgspec.json
  27. 3
    3
      Backend/Tests/obj/Tests.csproj.nuget.g.props
  28. 12
    12
      Backend/Tests/obj/project.assets.json
  29. 167
    167
      Backend/Tests/obj/project.nuget.cache

+ 2
- 0
Backend/Diligent.WebAPI.Business/Services/BaseRepository.cs Vedi File

@@ -2,9 +2,11 @@
using Diligent.WebAPI.Data;
using MongoDB.Bson;
using MongoDB.Driver;
using System.Diagnostics.CodeAnalysis;

namespace Diligent.WebAPI.Business.Services
{
[ExcludeFromCodeCoverage]
public class BaseRepository<TEntity> : IBaseRepository<TEntity> where TEntity : class
{
protected readonly IMongoDBContext _mongoContext;

+ 2
- 0
Backend/Diligent.WebAPI.Business/Services/CustomerService.cs Vedi File

@@ -3,12 +3,14 @@ using Diligent.WebAPI.Data.Entities;
using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Diligent.WebAPI.Business.Services
{
[ExcludeFromCodeCoverage]
public class CustomerService : ICustomerService
{
private readonly UserManager<Customer> _customerManager;

+ 2
- 0
Backend/Diligent.WebAPI.Business/Services/RoomRepository.cs Vedi File

@@ -3,9 +3,11 @@ using Diligent.WebAPI.Data;
using Diligent.WebAPI.Data.Entities;
using Diligent.WebAPI.Data.HelperModels;
using MongoDB.Driver;
using System.Diagnostics.CodeAnalysis;

namespace Diligent.WebAPI.Business.Services
{
[ExcludeFromCodeCoverage]
public class RoomRepository : BaseRepository<Room>, IRoomRepository
{
protected new IMongoCollection<Room> _dbCollection;

+ 86
- 1
Backend/Tests/NotificationTests.cs Vedi File

@@ -110,7 +110,92 @@ namespace Tests
await deleteNotificationHandler.Handle(deleteNotificationCommand, new CancellationToken());

_customerServiceMock.Verify(mock => mock.DeleteNotification(customer, customer.Notifications[1]));

}

[Test]
public async Task AddNotification_ReceiverIsNull_ThrowsNotFoundException()
{
_customerServiceMock.Setup(x => x.GetCustomerById(It.IsAny<string>()))
.ReturnsAsync((Customer)null);
var command = new AddNotificationCommand(new NotificationSaveDTO
{
ReceiverId = "1",
RoomId = "1"
});
var handler = new AddNotificationHandler(_customerServiceMock.Object);

Assert.That(async () => await handler.Handle(command, new CancellationToken()), Throws.Exception.TypeOf<NotFoundException>());
}

[Test]
public async Task AddNotification_NotificationIsNull_ThrowsNotFoundException()
{
var customer = new Customer
{
FirstName = "Dzenis",
LastName = "Hadzifejzovic",
Notifications = new List<Notification>()
{
new Notification
{
RoomId = "1",
Count = 1
},
new Notification
{
RoomId = "2",
Count = 2
}
}
};

_customerServiceMock.Setup(x => x.GetCustomerById(It.IsAny<string>()))
.ReturnsAsync(customer);
var command = new AddNotificationCommand(new NotificationSaveDTO
{
ReceiverId = "1",
RoomId = "3"
});
var handler = new AddNotificationHandler(_customerServiceMock.Object);
await handler.Handle(command, new CancellationToken());

_customerServiceMock.Verify(mock => mock.AddNotification(customer));
}

[Test]
public async Task AddNotification_NotificationIsNotNull_ThrowsNotFoundException()
{
var customer = new Customer
{
FirstName = "Dzenis",
LastName = "Hadzifejzovic",
Notifications = new List<Notification>()
{
new Notification
{
RoomId = "1",
Count = 1
},
new Notification
{
RoomId = "2",
Count = 2
}
}
};

_customerServiceMock.Setup(x => x.GetCustomerById(It.IsAny<string>()))
.ReturnsAsync(customer);
var command = new AddNotificationCommand(new NotificationSaveDTO
{
ReceiverId = "1",
RoomId = "2"
});
var handler = new AddNotificationHandler(_customerServiceMock.Object);
await handler.Handle(command, new CancellationToken());

_customerServiceMock.Verify(mock => mock.AddNotification(customer));
}
}
}

+ 120
- 0
Backend/Tests/RoomTests.cs Vedi File

@@ -4,6 +4,7 @@ using Diligent.WebAPI.Data.HelperModels;
using Diligent.WebAPI.Host.Exceptions;
using Diligent.WebAPI.Host.Mediator.Chat.Handlers;
using Diligent.WebAPI.Host.Mediator.Rooms.Commands;
using Diligent.WebAPI.Host.Mediator.Rooms.Queries;
using Microsoft.AspNetCore.Http;
using Moq;
using System;
@@ -18,6 +19,89 @@ namespace Tests
public class RoomTests
{
private Mock<IRoomRepository> _roomRepositoryMock;
private readonly List<Room> _rooms = new()
{
new Room
{
Id = "123",
CreatedBy = "123",
Customers = new List<CustomerDTO>
{
new CustomerDTO
{
CustomerId = "1",
DateOfEnteringRoom = new DateTime(2021, 2, 3)
},
new CustomerDTO
{
CustomerId = "2",
DateOfEnteringRoom = DateTime.UtcNow
}
},
CreatedAtUtc = DateTime.UtcNow,
IsOneToOne = true,
Messages = new List<Message>
{
new Message
{
Id = "1",
Content = "AA",
SenderId = "1",
Username = "username1",
CreatedAtUtc = DateTime.Now,
},
new Message
{
Id = "2",
Content = "BB",
SenderId = "2",
Username = "username2",
CreatedAtUtc = DateTime.Now,
}
},
Name = "room1"
},
new Room
{
Id = "1234",
CreatedBy = "1234",
Customers = new List<CustomerDTO>()
{
new CustomerDTO
{
CustomerId = "3",
DateOfEnteringRoom = DateTime.Now
},
new CustomerDTO
{
CustomerId = "4",
DateOfEnteringRoom = DateTime.Now
}
},
CreatedAtUtc = DateTime.Now,
IsOneToOne = true,
Messages = new List<Message>
{
new Message
{
Id = "3",
Content = "CC",
SenderId = "3",
Username = "username1",
CreatedAtUtc = new DateTime(2021, 2, 3)
},
new Message
{
Id = "4",
Content = "DD",
SenderId = "4",
Username = "username2",
CreatedAtUtc = new DateTime(2021, 2, 3)
}
},
Name = "room2"
},
};

[SetUp]

@@ -84,5 +168,41 @@ namespace Tests
_roomRepositoryMock.Verify(mock => mock.LeaveChatRoom(room, userConnection));

}

[Test]
public async Task GetAllRoomsWithFilteredMessages_CustomerIsNull_ReturnsEmptyList()
{
_roomRepositoryMock.Setup(x => x.GetAsync()).Returns(Task.FromResult(_rooms));
var query = new GetAllRoomsWithFilteredMessagesQuery("5");
var handler = new GetAllRoomsWithFilteredMessagesHandler(_roomRepositoryMock.Object);

var result = await handler.Handle(query, new CancellationToken());

Assert.That(result[0].Messages.Count(), Is.EqualTo(0));
}

[Test]
public async Task GetAllRoomsWithFilteredMessages_CustomerIsNotNull_ReturnsEmptyListWithMessage()
{
_roomRepositoryMock.Setup(x => x.GetAsync()).Returns(Task.FromResult(_rooms));
var query = new GetAllRoomsWithFilteredMessagesQuery("3");
var handler = new GetAllRoomsWithFilteredMessagesHandler(_roomRepositoryMock.Object);

var result = await handler.Handle(query, new CancellationToken());

Assert.That(result[0].Messages.Count(), Is.EqualTo(0));
}

[Test]
public async Task GetAllRoomsWithFilteredMessages_CustomerIsNotNull_Messages()
{
_roomRepositoryMock.Setup(x => x.GetAsync()).Returns(Task.FromResult(_rooms));
var query = new GetAllRoomsWithFilteredMessagesQuery("1");
var handler = new GetAllRoomsWithFilteredMessagesHandler(_roomRepositoryMock.Object);

var result = await handler.Handle(query, new CancellationToken());

Assert.That(result[0].Messages.Count(), Is.EqualTo(2));
}
}
}

BIN
Backend/Tests/bin/Debug/net6.0/CoverletSourceRootsMapping Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.dll Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.pdb Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.dll Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.pdb Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.dll Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.pdb Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Tests.dll Vedi File


BIN
Backend/Tests/bin/Debug/net6.0/Tests.pdb Vedi File


+ 1
- 1
Backend/Tests/bin/Debug/net6.0/nunit_random_seed.tmp Vedi File

@@ -1 +1 @@
671024648
229038342

+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.GeneratedMSBuildEditorConfig.editorconfig Vedi File

@@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Tests
build_property.ProjectDir = C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\
build_property.ProjectDir = C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\

BIN
Backend/Tests/obj/Debug/net6.0/Tests.assets.cache Vedi File


BIN
Backend/Tests/obj/Debug/net6.0/Tests.csproj.AssemblyReference.cache Vedi File


+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.csproj.CoreCompileInputs.cache Vedi File

@@ -1 +1 @@
16c93e8d4a4c74f74ee47efac450a1cb0b2fabe7
917d889d4c0eaf3abb2b733d13a530c4bdb1c430

+ 188
- 0
Backend/Tests/obj/Debug/net6.0/Tests.csproj.FileListAbsolute.txt Vedi File

@@ -594,3 +594,191 @@ C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\obj\Deb
C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.pdb
C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.genruntimeconfig.cache
C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\ref\Tests.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\CoverletSourceRootsMapping
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\appsettings.Development.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\appsettings.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testhost.exe
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testhost.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NUnit3.TestAdapter.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NUnit3.TestAdapter.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.api.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.engine.core.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\testcentric.engine.metadata.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.deps.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.runtimeconfig.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.exe
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.deps.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.runtimeconfig.json
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Tests.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AspNetCore.Identity.MongoDbCore.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AutoMapper.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Castle.Core.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\DnsClient.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\FluentAssertions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.Contracts.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MediatR.Extensions.Microsoft.DependencyInjection.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Net.Http.Formatting.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Web.Http.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.Versioning.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Identity.Client.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Bson.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Driver.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Driver.Core.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDB.Libmongocrypt.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\MongoDbGenericRepository.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Moq.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Newtonsoft.Json.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\NuGet.Frameworks.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\nunit.framework.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.AspNetCore.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Extensions.Hosting.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Extensions.Logging.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Formatting.Compact.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Settings.Configuration.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Console.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Debug.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.File.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.PeriodicBatching.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Serilog.Sinks.Seq.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\SharpCompress.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Drawing.Common.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Runtime.Caching.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Security.Permissions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\System.Windows.Extensions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libsnappy64.so
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libzstd.so
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libsnappy64.dylib
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libzstd.dylib
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\libzstd.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\snappy32.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\snappy64.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\linux\native\libmongocrypt.so
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\osx\native\libmongocrypt.dylib
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\native\mongocrypt.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Business.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Data.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Business.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Data.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\bin\Debug\net6.0\Diligent.WebAPI.Host.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.AssemblyReference.cache
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.AssemblyInfoInputs.cache
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.AssemblyInfo.cs
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.CoreCompileInputs.cache
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.csproj.CopyComplete
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\refint\Tests.dll
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.pdb
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\Tests.genruntimeconfig.cache
C:\Users\ermin.bronja\Desktop\RoomAndRequestTests\WebAPISignalRChat\Backend\Tests\obj\Debug\net6.0\ref\Tests.dll

BIN
Backend/Tests/obj/Debug/net6.0/Tests.dll Vedi File


+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.genruntimeconfig.cache Vedi File

@@ -1 +1 @@
45d9414986a9855bf08d2528590ba4e6b429856e
33ca884775a6fe234e8dca7c0ae40181ef84cf87

BIN
Backend/Tests/obj/Debug/net6.0/Tests.pdb Vedi File


BIN
Backend/Tests/obj/Debug/net6.0/ref/Tests.dll Vedi File


BIN
Backend/Tests/obj/Debug/net6.0/refint/Tests.dll Vedi File


+ 37
- 37
Backend/Tests/obj/Tests.csproj.nuget.dgspec.json Vedi File

@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {}
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {}
},
"projects": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"projectName": "Diligent.WebAPI.Business",
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\",
"outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\obj\\",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\obj\\",
"projectStyle": "PackageReference",
"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"
],
"originalTargetFrameworks": [
@@ -28,8 +28,8 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
}
}
}
@@ -76,17 +76,17 @@
}
}
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"projectName": "Diligent.WebAPI.Data",
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\",
"outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\obj\\",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\obj\\",
"projectStyle": "PackageReference",
"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"
],
"originalTargetFrameworks": [
@@ -162,17 +162,17 @@
}
}
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"projectName": "Diligent.WebAPI.Host",
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\",
"outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\obj\\",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\obj\\",
"projectStyle": "PackageReference",
"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"
],
"originalTargetFrameworks": [
@@ -186,11 +186,11 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
}
}
}
@@ -282,17 +282,17 @@
}
}
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectName": "Tests",
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\",
"outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\obj\\",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\obj\\",
"projectStyle": "PackageReference",
"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"
],
"originalTargetFrameworks": [
@@ -306,14 +306,14 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj"
}
}
}

+ 3
- 3
Backend/Tests/obj/Tests.csproj.nuget.g.props Vedi File

@@ -5,12 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<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>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\meris.ahmatovic\.nuget\packages\" />
<SourceRoot Include="C:\Users\ermin.bronja\.nuget\packages\" />
</ItemGroup>
<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')" />
@@ -21,6 +21,6 @@
<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>
<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>
</Project>

+ 12
- 12
Backend/Tests/obj/project.assets.json Vedi File

@@ -7509,19 +7509,19 @@
]
},
"packageFolders": {
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\": {}
"C:\\Users\\ermin.bronja\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectName": "Tests",
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"packagesPath": "C:\\Users\\meris.ahmatovic\\.nuget\\packages\\",
"outputPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\obj\\",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\obj\\",
"projectStyle": "PackageReference",
"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"
],
"originalTargetFrameworks": [
@@ -7535,14 +7535,14 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
},
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"projectPath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj"
"C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj"
}
}
}

+ 167
- 167
Backend/Tests/obj/project.nuget.cache Vedi File

@@ -1,174 +1,174 @@
{
"version": 2,
"dgSpecHash": "jrOJUcB0SorFtrYSLUFeBbuWqzqvePL+GxNLYmJvZL9Mn7M40/r1o4T3zDoTuDevpP+/dF9YRU/uNQHQh1/log==",
"dgSpecHash": "tHh5J+zM0qvQwqISPfW0Umlos4fzPwOOcO90WriSpvvx+D/+gxGUj+Fe6RrjfM9VCStpN4VV6iVWkVjDHOw4Lw==",
"success": true,
"projectFilePath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectFilePath": "C:\\Users\\ermin.bronja\\Desktop\\RoomAndRequestTests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"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\\mediatr\\10.0.1\\mediatr.10.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnet.webapi.client\\5.2.9\\microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnet.webapi.core\\5.2.9\\microsoft.aspnet.webapi.core.5.2.9.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\\2.2.0\\microsoft.aspnetcore.authentication.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.cookies\\2.2.0\\microsoft.aspnetcore.authentication.cookies.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.authentication.jwtbearer\\6.0.6\\microsoft.aspnetcore.authentication.jwtbearer.6.0.6.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.dataprotection\\2.2.0\\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\2.2.0\\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.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.identity\\2.2.0\\microsoft.aspnetcore.identity.2.2.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning\\5.0.0\\microsoft.aspnetcore.mvc.versioning.5.0.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.dependencymodel\\3.0.0\\microsoft.extensions.dependencymodel.3.0.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.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\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.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.extensions.webencoders\\2.2.0\\microsoft.extensions.webencoders.2.2.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.10.0\\microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.logging\\6.10.0\\microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.10.0\\microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.10.0\\microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.10.0\\microsoft.identitymodel.tokens.6.10.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.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.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\\newtonsoft.json.bson\\1.0.1\\newtonsoft.json.bson.1.0.1.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\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.aspnetcore\\5.0.0\\serilog.aspnetcore.5.0.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.extensions.hosting\\4.2.0\\serilog.extensions.hosting.4.2.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.extensions.logging\\3.1.0\\serilog.extensions.logging.3.1.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.settings.configuration\\3.3.0\\serilog.settings.configuration.3.3.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.sinks.console\\4.0.1\\serilog.sinks.console.4.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.sinks.periodicbatching\\2.3.0\\serilog.sinks.periodicbatching.2.3.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\serilog.sinks.seq\\5.1.1\\serilog.sinks.seq.5.1.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\\4.0.11\\system.collections.4.0.11.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.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.debug\\4.0.11\\system.diagnostics.debug.4.0.11.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.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.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.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.10.0\\system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.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\\4.1.0\\system.reflection.4.1.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.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.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.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.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.pkcs\\4.5.0\\system.security.cryptography.pkcs.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.cryptography.xml\\4.5.0\\system.security.cryptography.xml.4.5.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\\4.0.11\\system.text.encoding.4.0.11.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.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512",
"C:\\Users\\meris.ahmatovic\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.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.threading.timer\\4.0.1\\system.threading.timer.4.0.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": [
{

Loading…
Annulla
Salva