Przeglądaj źródła

added exception middleware test

feature/mongo-services-with-interfaces
meris.ahmatovic 3 lat temu
rodzic
commit
a8e314a230
26 zmienionych plików z 505 dodań i 223 usunięć
  1. 7
    0
      Backend/Diligent.WebAPI.Host/Middlewares/ExceptionHandlingMiddleware.cs
  2. 87
    0
      Backend/Tests/ExceptionHandlingMiddlewareTest.cs
  3. BIN
      Backend/Tests/bin/Debug/net6.0/CoverletSourceRootsMapping
  4. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.dll
  5. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.pdb
  6. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.dll
  7. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.pdb
  8. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.dll
  9. BIN
      Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.pdb
  10. BIN
      Backend/Tests/bin/Debug/net6.0/Tests.dll
  11. BIN
      Backend/Tests/bin/Debug/net6.0/Tests.pdb
  12. 1
    1
      Backend/Tests/bin/Debug/net6.0/nunit_random_seed.tmp
  13. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.GeneratedMSBuildEditorConfig.editorconfig
  14. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.assets.cache
  15. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.AssemblyReference.cache
  16. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.CoreCompileInputs.cache
  17. 188
    0
      Backend/Tests/obj/Debug/net6.0/Tests.csproj.FileListAbsolute.txt
  18. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.dll
  19. 1
    1
      Backend/Tests/obj/Debug/net6.0/Tests.genruntimeconfig.cache
  20. BIN
      Backend/Tests/obj/Debug/net6.0/Tests.pdb
  21. BIN
      Backend/Tests/obj/Debug/net6.0/ref/Tests.dll
  22. BIN
      Backend/Tests/obj/Debug/net6.0/refint/Tests.dll
  23. 37
    37
      Backend/Tests/obj/Tests.csproj.nuget.dgspec.json
  24. 3
    3
      Backend/Tests/obj/Tests.csproj.nuget.g.props
  25. 12
    12
      Backend/Tests/obj/project.assets.json
  26. 167
    167
      Backend/Tests/obj/project.nuget.cache

+ 7
- 0
Backend/Diligent.WebAPI.Host/Middlewares/ExceptionHandlingMiddleware.cs Wyświetl plik

@@ -1,6 +1,9 @@
using AutoMapper;
using Diligent.WebAPI.Host.Exceptions;
using Microsoft.IdentityModel.Tokens;
using System;
using System.Net;
using System.Security.Authentication;

namespace Diligent.WebAPI.Host.Middlewares
{
@@ -34,6 +37,10 @@ namespace Diligent.WebAPI.Host.Middlewares
NotFoundException => (int)HttpStatusCode.NotFound,
KeyNotFoundException => (int)HttpStatusCode.NotFound,
BadHttpRequestException => (int)HttpStatusCode.BadRequest,
SecurityTokenValidationException => (int)HttpStatusCode.InternalServerError,
AuthenticationException => (int)HttpStatusCode.InternalServerError,
UnauthorizedAccessException => (int)HttpStatusCode.InternalServerError,
ArgumentNullException => (int)HttpStatusCode.InternalServerError,
//...
_ => (int)HttpStatusCode.InternalServerError
};

+ 87
- 0
Backend/Tests/ExceptionHandlingMiddlewareTest.cs Wyświetl plik

@@ -0,0 +1,87 @@
using Diligent.WebAPI.Host.Exceptions;
using Diligent.WebAPI.Host.Middlewares;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Moq;
using System.Net;

namespace Tests
{
[TestFixture]
public class ExceptionHandlingMiddlewareTest
{
[SetUp]
public void Setup()
{

}

[Test]
public async Task ExceptionHandlingMiddleware_Returns500StatusCode_WhenArgumentNullExceptionIsThrown()
{
//arrange
var expectedException = new ArgumentNullException();
RequestDelegate mockNext = (HttpContext) =>
{
return Task.FromException(expectedException);
};
var httpContext = new DefaultHttpContext();

var logger = new Mock<ILogger<ExceptionHandlingMiddleware>>();

var exceptionHandlingMiddleware = new ExceptionHandlingMiddleware(mockNext, logger.Object); ;

//act
await exceptionHandlingMiddleware.InvokeAsync(httpContext);

//assert
Assert.AreEqual(HttpStatusCode.InternalServerError, (HttpStatusCode)httpContext.Response.StatusCode);
}

[Test]
public async Task ExceptionHandlingMiddleware_Returns404StatusCode_WhenNotFoundExceptionIsThrown()
{
//arrange
var expectedException = new NotFoundException();
RequestDelegate mockNext = (HttpContext) =>
{
return Task.FromException(expectedException);
};
var httpContext = new DefaultHttpContext();

var logger = new Mock<ILogger<ExceptionHandlingMiddleware>>();

var exceptionHandlingMiddleware = new ExceptionHandlingMiddleware(mockNext, logger.Object); ;

//act
await exceptionHandlingMiddleware.InvokeAsync(httpContext);

//assert
Assert.AreEqual(HttpStatusCode.NotFound, (HttpStatusCode)httpContext.Response.StatusCode);
}

[Test]
public async Task ExceptionHandlingMiddleware_ReturnsOkStatusCode_WhenNoExceptionIsThrown()
{
//arrange
var expectedException = new NotFoundException();
RequestDelegate mockNextMiddleware = (HttpContext) =>
{
return Task.CompletedTask;
};

var httpContext = new DefaultHttpContext();
var logger = new Mock<ILogger<ExceptionHandlingMiddleware>>();

var exceptionHandlingMiddleware = new ExceptionHandlingMiddleware(mockNextMiddleware, logger.Object); ;

//act
await exceptionHandlingMiddleware.InvokeAsync(httpContext);

//assert
Assert.Less((HttpStatusCode)httpContext.Response.StatusCode, 300);
}
}

}

BIN
Backend/Tests/bin/Debug/net6.0/CoverletSourceRootsMapping Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.dll Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Business.pdb Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.dll Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Data.pdb Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.dll Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Diligent.WebAPI.Host.pdb Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Tests.dll Wyświetl plik


BIN
Backend/Tests/bin/Debug/net6.0/Tests.pdb Wyświetl plik


+ 1
- 1
Backend/Tests/bin/Debug/net6.0/nunit_random_seed.tmp Wyświetl plik

@@ -1 +1 @@
1092455672
219955387

+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.GeneratedMSBuildEditorConfig.editorconfig Wyświetl plik

@@ -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\ermin.bronja\Desktop\Tests\WebAPISignalRChat\Backend\Tests\
build_property.ProjectDir = C:\Users\meris.ahmatovic\Desktop\8222022\WebAPISignalRChat\Backend\Tests\

BIN
Backend/Tests/obj/Debug/net6.0/Tests.assets.cache Wyświetl plik


BIN
Backend/Tests/obj/Debug/net6.0/Tests.csproj.AssemblyReference.cache Wyświetl plik


+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.csproj.CoreCompileInputs.cache Wyświetl plik

@@ -1 +1 @@
e589fafcf9d99ca65b70020566215ac328396075
4260cf941650494d42f82ac070d88a866ed26069

+ 188
- 0
Backend/Tests/obj/Debug/net6.0/Tests.csproj.FileListAbsolute.txt Wyświetl plik

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

BIN
Backend/Tests/obj/Debug/net6.0/Tests.dll Wyświetl plik


+ 1
- 1
Backend/Tests/obj/Debug/net6.0/Tests.genruntimeconfig.cache Wyświetl plik

@@ -1 +1 @@
044af939ec05b1d103aac5c0b958227457c14e24
45d9414986a9855bf08d2528590ba4e6b429856e

BIN
Backend/Tests/obj/Debug/net6.0/Tests.pdb Wyświetl plik


BIN
Backend/Tests/obj/Debug/net6.0/ref/Tests.dll Wyświetl plik


BIN
Backend/Tests/obj/Debug/net6.0/refint/Tests.dll Wyświetl plik


+ 37
- 37
Backend/Tests/obj/Tests.csproj.nuget.dgspec.json Wyświetl plik

@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
"C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {}
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {}
},
"projects": {
"C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"projectName": "Diligent.WebAPI.Business",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\obj\\",
"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\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\meris.ahmatovic\\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\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\meris.ahmatovic\\Desktop\\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"
}
}
}
@@ -76,17 +76,17 @@
}
}
},
"C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"projectName": "Diligent.WebAPI.Data",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\obj\\",
"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\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\meris.ahmatovic\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
@@ -162,17 +162,17 @@
}
}
},
"C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"projectName": "Diligent.WebAPI.Host",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\obj\\",
"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\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\meris.ahmatovic\\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\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
"C:\\Users\\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\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\meris.ahmatovic\\Desktop\\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"
}
}
}
@@ -282,17 +282,17 @@
}
}
},
"C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {
"C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectUniqueName": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectName": "Tests",
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"packagesPath": "C:\\Users\\ermin.bronja\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\obj\\",
"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\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ermin.bronja\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\meris.ahmatovic\\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\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Business\\Diligent.WebAPI.Business.csproj"
"C:\\Users\\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\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Data\\Diligent.WebAPI.Data.csproj"
"C:\\Users\\meris.ahmatovic\\Desktop\\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\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj": {
"projectPath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Diligent.WebAPI.Host\\Diligent.WebAPI.Host.csproj"
"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"
}
}
}

+ 3
- 3
Backend/Tests/obj/Tests.csproj.nuget.g.props Wyświetl plik

@@ -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\ermin.bronja\.nuget\packages\</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\meris.ahmatovic\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\ermin.bronja\.nuget\packages\" />
<SourceRoot Include="C:\Users\meris.ahmatovic\.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\ermin.bronja\.nuget\packages\nunit.analyzers\3.3.0</PkgNUnit_Analyzers>
<PkgNUnit_Analyzers Condition=" '$(PkgNUnit_Analyzers)' == '' ">C:\Users\meris.ahmatovic\.nuget\packages\nunit.analyzers\3.3.0</PkgNUnit_Analyzers>
</PropertyGroup>
</Project>

+ 12
- 12
Backend/Tests/obj/project.assets.json Wyświetl plik

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

+ 167
- 167
Backend/Tests/obj/project.nuget.cache Wyświetl plik

@@ -1,174 +1,174 @@
{
"version": 2,
"dgSpecHash": "PNhN7Zeu6jCHoQiy0rSEO5BJtz9cIg9UAJ9Ky/hfCmFIoGma1+a98OUcSund0VqadKx/jV+uyQXILPwstwfytQ==",
"dgSpecHash": "jrOJUcB0SorFtrYSLUFeBbuWqzqvePL+GxNLYmJvZL9Mn7M40/r1o4T3zDoTuDevpP+/dF9YRU/uNQHQh1/log==",
"success": true,
"projectFilePath": "C:\\Users\\ermin.bronja\\Desktop\\Tests\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"projectFilePath": "C:\\Users\\meris.ahmatovic\\Desktop\\8222022\\WebAPISignalRChat\\Backend\\Tests\\Tests.csproj",
"expectedPackageFiles": [
"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"
"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"
],
"logs": [
{

Ładowanie…
Anuluj
Zapisz