diff --git a/Nexus.Api/Controllers/ProjectsController.cs b/Nexus.Api/Controllers/ProjectsController.cs new file mode 100644 index 0000000..c9e1956 --- /dev/null +++ b/Nexus.Api/Controllers/ProjectsController.cs @@ -0,0 +1,23 @@ +using Microsoft.AspNetCore.Mvc; +using Nexus.Application.Interfaces; + +namespace Nexus.Api.Controllers; + +[ApiController] +[Route("api/projects")] +public class ProjectsController : ControllerBase +{ + private readonly IProjectService _service; + + public ProjectsController(IProjectService service) + { + _service = service; + } + + [HttpGet] + public async Task GetAll() + { + var result = await _service.GetAllAsync(); + return Ok(result); + } +} \ No newline at end of file diff --git a/Nexus.Api/Nexus.Api.csproj b/Nexus.Api/Nexus.Api.csproj index 3b60f2a..14e7b62 100644 --- a/Nexus.Api/Nexus.Api.csproj +++ b/Nexus.Api/Nexus.Api.csproj @@ -7,7 +7,6 @@ - runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/Nexus.Api/Program.cs b/Nexus.Api/Program.cs index e677130..18e00a5 100644 --- a/Nexus.Api/Program.cs +++ b/Nexus.Api/Program.cs @@ -1,5 +1,7 @@ using Microsoft.EntityFrameworkCore; +using Nexus.Application.Interfaces; using Nexus.Infrastructure.Persistence; +using Nexus.Infrastructure.Services; var builder = WebApplication.CreateBuilder(args); @@ -8,6 +10,7 @@ builder.Services.AddDbContext(options => builder.Configuration.GetConnectionString("DefaultConnection") ) ); +builder.Services.AddScoped(); builder.Services.AddControllers(); var app = builder.Build(); diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll index 7e52028..350840b 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.dll differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe index d018d5b..6c9c9c2 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.exe differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb index 4c3ba23..5818c18 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb and b/Nexus.Api/bin/Debug/net10.0/Nexus.Api.pdb differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Application.dll b/Nexus.Api/bin/Debug/net10.0/Nexus.Application.dll index cb56a4d..ab2728c 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Application.dll and b/Nexus.Api/bin/Debug/net10.0/Nexus.Application.dll differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Application.pdb b/Nexus.Api/bin/Debug/net10.0/Nexus.Application.pdb index 8eb270e..d110da8 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Application.pdb and b/Nexus.Api/bin/Debug/net10.0/Nexus.Application.pdb differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.dll b/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.dll index c778366..6c2040f 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.dll and b/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.pdb index 148d95a..cf04ff2 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.pdb and b/Nexus.Api/bin/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.dll b/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.dll index 172cf5c..15912d4 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.dll and b/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.dll differ diff --git a/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.pdb b/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.pdb index 58c390d..3ef3484 100644 Binary files a/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.pdb and b/Nexus.Api/bin/Debug/net10.0/Nexus.Infrastructure.pdb differ diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs index 2cefe42..c79e5a8 100644 --- a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs +++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Api")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb640049c77cdab4df81c7117b1ed3d9e24ddab")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+077ee48927ee13d52504c44cc7a03836ec629880")] [assembly: System.Reflection.AssemblyProductAttribute("Nexus.Api")] [assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Api")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache index 70cdd6c..747e8d9 100644 --- a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache +++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.AssemblyInfoInputs.cache @@ -1 +1 @@ -3dccba4b4292888b6d5dc0ee632d93375d897c12969c1f788edc96fa2f85539a +f3f7f9c5d6855d6edb27639eed302265a0197579fa7ee4ce6a45e92740f87fe9 diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache index 8d4c7ab..b3e42ed 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.assets.cache differ diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache index c149c89..08cfc12 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.AssemblyReference.cache differ diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache index d86b42e..4c38c3d 100644 --- a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache +++ b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -8c629e87e33652e2b43085f87a192cd7b9006b7a9bdb74b7d3e2ce0dbf562494 +8c56a5de363909e7cc9761e7b0aefbe452d7fc1fd156e7547d61eba2e92306af diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll index 7e52028..350840b 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.dll differ diff --git a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb index 4c3ba23..5818c18 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb and b/Nexus.Api/obj/Debug/net10.0/Nexus.Api.pdb differ diff --git a/Nexus.Api/obj/Debug/net10.0/apphost.exe b/Nexus.Api/obj/Debug/net10.0/apphost.exe index d018d5b..6c9c9c2 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/apphost.exe and b/Nexus.Api/obj/Debug/net10.0/apphost.exe differ diff --git a/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll index 187b290..ca3d664 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll and b/Nexus.Api/obj/Debug/net10.0/ref/Nexus.Api.dll differ diff --git a/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll b/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll index 187b290..ca3d664 100644 Binary files a/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll and b/Nexus.Api/obj/Debug/net10.0/refint/Nexus.Api.dll differ diff --git a/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json index 8ad5bf3..0aa8272 100644 --- a/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +++ b/Nexus.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"yvQCrxdTvFPB05QkB5EFF6+ZMfU7SATb5Wjcmfx3bQg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["PGX7RMCZuMbvj02a9RZvuAtszqz2rAHmi/RrRg1DoxA=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","ezDlAfrhx1iWfzJSFSKAB7xGpd\u002B3ES4FpHY4Q8uI0k4=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","EIL8C0S3AlXw9vmTaq7r3MGloEkiVneIpVVE6RM2l0k="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"yvQCrxdTvFPB05QkB5EFF6+ZMfU7SATb5Wjcmfx3bQg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["PGX7RMCZuMbvj02a9RZvuAtszqz2rAHmi/RrRg1DoxA=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","ezDlAfrhx1iWfzJSFSKAB7xGpd\u002B3ES4FpHY4Q8uI0k4=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","vooWrF9nKV2xmw0T8Pe8GGPoZDDYNYSbhPj29kCfVqU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json index a54bb60..344150a 100644 --- a/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +++ b/Nexus.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"LvTzCZwSXjBKR/4iQAAaxQvqqdXT3s7QSjLWlEaEjXY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["PGX7RMCZuMbvj02a9RZvuAtszqz2rAHmi/RrRg1DoxA=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","ezDlAfrhx1iWfzJSFSKAB7xGpd\u002B3ES4FpHY4Q8uI0k4=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","EIL8C0S3AlXw9vmTaq7r3MGloEkiVneIpVVE6RM2l0k="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"LvTzCZwSXjBKR/4iQAAaxQvqqdXT3s7QSjLWlEaEjXY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["PGX7RMCZuMbvj02a9RZvuAtszqz2rAHmi/RrRg1DoxA=","AwZT8pl6C8KGTyLuGSCR\u002B87l7qfqdNmQSDuOKFCoVLY=","ezDlAfrhx1iWfzJSFSKAB7xGpd\u002B3ES4FpHY4Q8uI0k4=","sNXe8\u002BK9gPJF91Dz10bt/nU5pUNQMsEfKslCV08CCl8=","6aoOtNsYYs7lt6Gm0fTYUQLwbv4EfHKNA5AbTWH0kps=","vooWrF9nKV2xmw0T8Pe8GGPoZDDYNYSbhPj29kCfVqU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json b/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json index afcbf2e..90c7523 100644 --- a/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json +++ b/Nexus.Api/obj/Nexus.Api.csproj.nuget.dgspec.json @@ -55,10 +55,6 @@ "framework": "net10.0", "targetAlias": "net10.0", "dependencies": { - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[10.0.9, )" - }, "Microsoft.EntityFrameworkCore.Design": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", diff --git a/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets index 7404a09..c4d5b0d 100644 --- a/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets +++ b/Nexus.Api/obj/Nexus.Api.csproj.nuget.g.targets @@ -3,6 +3,5 @@ - \ No newline at end of file diff --git a/Nexus.Api/obj/project.assets.json b/Nexus.Api/obj/project.assets.json index 3ac1dad..fe413ce 100644 --- a/Nexus.Api/obj/project.assets.json +++ b/Nexus.Api/obj/project.assets.json @@ -15,28 +15,6 @@ } } }, - "Microsoft.AspNetCore.OpenApi/10.0.9": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "2.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ], - "build": { - "build/Microsoft.AspNetCore.OpenApi.targets": {} - } - }, "Microsoft.Build.Framework/18.0.2": { "type": "package", "compile": { @@ -458,19 +436,6 @@ "buildTransitive/net8.0/_._": {} } }, - "Microsoft.OpenApi/2.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { "type": "package", "compile": { @@ -729,24 +694,6 @@ "logo.png" ] }, - "Microsoft.AspNetCore.OpenApi/10.0.9": { - "sha512": "1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==", - "type": "package", - "path": "microsoft.aspnetcore.openapi/10.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll", - "build/Microsoft.AspNetCore.OpenApi.targets", - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll", - "lib/net10.0/Microsoft.AspNetCore.OpenApi.xml", - "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512", - "microsoft.aspnetcore.openapi.nuspec" - ] - }, "Microsoft.Build.Framework/18.0.2": { "sha512": "sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==", "type": "package", @@ -1933,24 +1880,6 @@ "useSharedDesignerContext.txt" ] }, - "Microsoft.OpenApi/2.0.0": { - "sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", - "type": "package", - "path": "microsoft.openapi/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net8.0/Microsoft.OpenApi.dll", - "lib/net8.0/Microsoft.OpenApi.pdb", - "lib/net8.0/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.2.0.0.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { "sha512": "oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==", "type": "package", @@ -2254,7 +2183,6 @@ }, "projectFileDependencyGroups": { "net10.0": [ - "Microsoft.AspNetCore.OpenApi >= 10.0.9", "Microsoft.EntityFrameworkCore.Design >= 10.0.9", "Nexus.Application >= 1.0.0", "Nexus.Infrastructure >= 1.0.0" @@ -2314,10 +2242,6 @@ "framework": "net10.0", "targetAlias": "net10.0", "dependencies": { - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[10.0.9, )" - }, "Microsoft.EntityFrameworkCore.Design": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", @@ -2761,17 +2685,5 @@ } } } - }, - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc", - "libraryId": "Microsoft.OpenApi", - "targetGraphs": [ - "net10.0" - ] - } - ] + } } \ No newline at end of file diff --git a/Nexus.Api/obj/project.nuget.cache b/Nexus.Api/obj/project.nuget.cache index 7afc5ae..7b0d288 100644 --- a/Nexus.Api/obj/project.nuget.cache +++ b/Nexus.Api/obj/project.nuget.cache @@ -1,11 +1,10 @@ { "version": 2, - "dgSpecHash": "zETjntXlZW8=", + "dgSpecHash": "1/H7+3uJidE=", "success": true, "projectFilePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj", "expectedPackageFiles": [ "C:\\Users\\klein\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\klein\\.nuget\\packages\\microsoft.aspnetcore.openapi\\10.0.9\\microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.build.framework\\18.0.2\\microsoft.build.framework.18.0.2.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.11.0\\microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.codeanalysis.common\\5.0.0\\microsoft.codeanalysis.common.5.0.0.nupkg.sha512", @@ -19,7 +18,6 @@ "C:\\Users\\klein\\.nuget\\packages\\microsoft.entityframeworkcore.design\\10.0.9\\microsoft.entityframeworkcore.design.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.9\\microsoft.entityframeworkcore.relational.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.extensions.dependencymodel\\10.0.9\\microsoft.extensions.dependencymodel.10.0.9.nupkg.sha512", - "C:\\Users\\klein\\.nuget\\packages\\microsoft.openapi\\2.0.0\\microsoft.openapi.2.0.0.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.visualstudio.solutionpersistence\\1.0.52\\microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", @@ -33,18 +31,5 @@ "C:\\Users\\klein\\.nuget\\packages\\system.composition.runtime\\9.0.0\\system.composition.runtime.9.0.0.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\system.composition.typedparts\\9.0.0\\system.composition.typedparts.9.0.0.nupkg.sha512" ], - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc", - "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj", - "warningLevel": 1, - "filePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Api\\Nexus.Api.csproj", - "libraryId": "Microsoft.OpenApi", - "targetGraphs": [ - "net10.0" - ] - } - ] + "logs": [] } \ No newline at end of file diff --git a/Nexus.Application/Dtos/Projects/ProjectDto.cs b/Nexus.Application/Dtos/Projects/ProjectDto.cs new file mode 100644 index 0000000..1218116 --- /dev/null +++ b/Nexus.Application/Dtos/Projects/ProjectDto.cs @@ -0,0 +1,8 @@ +namespace Nexus.Application.DTOs.Projects; + +public class ProjectDto +{ + public Guid Id { get; set; } + public string Name { get; set; } = null!; + public DateTime CreatedAt { get; set; } +} \ No newline at end of file diff --git a/Nexus.Application/Interfaces/IProjectService.cs b/Nexus.Application/Interfaces/IProjectService.cs new file mode 100644 index 0000000..176884e --- /dev/null +++ b/Nexus.Application/Interfaces/IProjectService.cs @@ -0,0 +1,8 @@ +using Nexus.Application.DTOs.Projects; + +namespace Nexus.Application.Interfaces; + +public interface IProjectService +{ + Task> GetAllAsync(); +} \ No newline at end of file diff --git a/Nexus.Application/bin/Debug/net10.0/Nexus.Application.dll b/Nexus.Application/bin/Debug/net10.0/Nexus.Application.dll index cb56a4d..ab2728c 100644 Binary files a/Nexus.Application/bin/Debug/net10.0/Nexus.Application.dll and b/Nexus.Application/bin/Debug/net10.0/Nexus.Application.dll differ diff --git a/Nexus.Application/bin/Debug/net10.0/Nexus.Application.pdb b/Nexus.Application/bin/Debug/net10.0/Nexus.Application.pdb index 8eb270e..d110da8 100644 Binary files a/Nexus.Application/bin/Debug/net10.0/Nexus.Application.pdb and b/Nexus.Application/bin/Debug/net10.0/Nexus.Application.pdb differ diff --git a/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.dll b/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.dll index c778366..6c2040f 100644 Binary files a/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.dll and b/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.pdb index 148d95a..cf04ff2 100644 Binary files a/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.pdb and b/Nexus.Application/bin/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfo.cs b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfo.cs index e44ef03..830dcfe 100644 --- a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfo.cs +++ b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Application")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb640049c77cdab4df81c7117b1ed3d9e24ddab")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+077ee48927ee13d52504c44cc7a03836ec629880")] [assembly: System.Reflection.AssemblyProductAttribute("Nexus.Application")] [assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Application")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfoInputs.cache b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfoInputs.cache index 58b995a..e46570d 100644 --- a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfoInputs.cache +++ b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.AssemblyInfoInputs.cache @@ -1 +1 @@ -973eecd23bf08c0d1e5c0fbe1d0f94d61ee54e6e44b7de07c7f7f138ba92da76 +ddc97d5fcdc158aa1b4c928d6d2d607eec97c63c6371318d0fd98e71d0c2bedb diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.AssemblyReference.cache b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.AssemblyReference.cache index 117f18a..0093b80 100644 Binary files a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.AssemblyReference.cache and b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.AssemblyReference.cache differ diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.CoreCompileInputs.cache b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.CoreCompileInputs.cache index a1a7e49..cffdbea 100644 --- a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.CoreCompileInputs.cache +++ b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -3b18b4c23758eaa8ebd1022d2cdd6cfef67affb7d23cfcd06959e8cfbcf2bfa4 +09e77e7ac92e9a50efcdf4965a6d43e33ae096236a23248df84917253b6e34d3 diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.dll b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.dll index cb56a4d..ab2728c 100644 Binary files a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.dll and b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.dll differ diff --git a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.pdb b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.pdb index 8eb270e..d110da8 100644 Binary files a/Nexus.Application/obj/Debug/net10.0/Nexus.Application.pdb and b/Nexus.Application/obj/Debug/net10.0/Nexus.Application.pdb differ diff --git a/Nexus.Application/obj/Debug/net10.0/ref/Nexus.Application.dll b/Nexus.Application/obj/Debug/net10.0/ref/Nexus.Application.dll index c6708ed..35ad30c 100644 Binary files a/Nexus.Application/obj/Debug/net10.0/ref/Nexus.Application.dll and b/Nexus.Application/obj/Debug/net10.0/ref/Nexus.Application.dll differ diff --git a/Nexus.Application/obj/Debug/net10.0/refint/Nexus.Application.dll b/Nexus.Application/obj/Debug/net10.0/refint/Nexus.Application.dll index c6708ed..35ad30c 100644 Binary files a/Nexus.Application/obj/Debug/net10.0/refint/Nexus.Application.dll and b/Nexus.Application/obj/Debug/net10.0/refint/Nexus.Application.dll differ diff --git a/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.dll b/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.dll index c778366..6c2040f 100644 Binary files a/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.dll and b/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.pdb index 148d95a..cf04ff2 100644 Binary files a/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.pdb and b/Nexus.Domain/bin/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfo.cs b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfo.cs index 571b487..cdd5603 100644 --- a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfo.cs +++ b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Domain")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb640049c77cdab4df81c7117b1ed3d9e24ddab")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+077ee48927ee13d52504c44cc7a03836ec629880")] [assembly: System.Reflection.AssemblyProductAttribute("Nexus.Domain")] [assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Domain")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfoInputs.cache b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfoInputs.cache index fdf17f1..b4511ad 100644 --- a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfoInputs.cache +++ b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.AssemblyInfoInputs.cache @@ -1 +1 @@ -25baa628cecc2589b2f86ac8ccfba2f6b365759e64ef7702f498f24994398476 +21ccad433ed831eb1dc6ec705b4dde5e89b1874feab718ef8930dfb138a53e24 diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.GeneratedMSBuildEditorConfig.editorconfig b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.GeneratedMSBuildEditorConfig.editorconfig index 3a81be3..dfebfd6 100644 --- a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.GeneratedMSBuildEditorConfig.editorconfig +++ b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -11,7 +11,7 @@ build_property.EnforceExtendedAnalyzerRules = build_property.EntryPointFilePath = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Nexus.Domain -build_property.ProjectDir = c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Domain\ +build_property.ProjectDir = C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Domain\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EffectiveAnalysisLevelStyle = 10.0 diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.assets.cache b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.assets.cache index 8179877..5cca149 100644 Binary files a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.assets.cache and b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.assets.cache differ diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.dll b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.dll index c778366..6c2040f 100644 Binary files a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.dll and b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.pdb index 148d95a..cf04ff2 100644 Binary files a/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.pdb and b/Nexus.Domain/obj/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Domain/obj/Debug/net10.0/ref/Nexus.Domain.dll b/Nexus.Domain/obj/Debug/net10.0/ref/Nexus.Domain.dll index db80cd9..f391f3b 100644 Binary files a/Nexus.Domain/obj/Debug/net10.0/ref/Nexus.Domain.dll and b/Nexus.Domain/obj/Debug/net10.0/ref/Nexus.Domain.dll differ diff --git a/Nexus.Domain/obj/Debug/net10.0/refint/Nexus.Domain.dll b/Nexus.Domain/obj/Debug/net10.0/refint/Nexus.Domain.dll index db80cd9..f391f3b 100644 Binary files a/Nexus.Domain/obj/Debug/net10.0/refint/Nexus.Domain.dll and b/Nexus.Domain/obj/Debug/net10.0/refint/Nexus.Domain.dll differ diff --git a/Nexus.Infrastructure/Services/ProjectService.cs b/Nexus.Infrastructure/Services/ProjectService.cs new file mode 100644 index 0000000..d5f76fb --- /dev/null +++ b/Nexus.Infrastructure/Services/ProjectService.cs @@ -0,0 +1,28 @@ +using Microsoft.EntityFrameworkCore; +using Nexus.Application.DTOs.Projects; +using Nexus.Application.Interfaces; +using Nexus.Infrastructure.Persistence; + +namespace Nexus.Infrastructure.Services; + +public class ProjectService : IProjectService +{ + private readonly NexusDbContext _db; + + public ProjectService(NexusDbContext db) + { + _db = db; + } + + public async Task> GetAllAsync() + { + return await _db.Projects + .Select(p => new ProjectDto + { + Id = p.Id, + Name = p.Name, + CreatedAt = p.CreatedAt + }) + .ToListAsync(); + } +} diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.dll b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.dll index cb56a4d..ab2728c 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.dll and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.dll differ diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.pdb b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.pdb index 8eb270e..d110da8 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.pdb and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Application.pdb differ diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.dll b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.dll index c778366..6c2040f 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.dll and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.pdb index 148d95a..cf04ff2 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.pdb and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.dll b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.dll index 172cf5c..15912d4 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.dll and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.dll differ diff --git a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.pdb b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.pdb index 58c390d..3ef3484 100644 Binary files a/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.pdb and b/Nexus.Infrastructure/bin/Debug/net10.0/Nexus.Infrastructure.pdb differ diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfo.cs b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfo.cs index eb12f5f..b295331 100644 --- a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfo.cs +++ b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Infrastructure")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb640049c77cdab4df81c7117b1ed3d9e24ddab")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+077ee48927ee13d52504c44cc7a03836ec629880")] [assembly: System.Reflection.AssemblyProductAttribute("Nexus.Infrastructure")] [assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Infrastructure")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfoInputs.cache b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfoInputs.cache index 1f65fa8..d73811c 100644 --- a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfoInputs.cache +++ b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.AssemblyInfoInputs.cache @@ -1 +1 @@ -49d0be73ca54f0507f57e2888d8281cb12dd7e180c680f20061d2c16631ab1ae +7242e1188045198925aa1679bddbacfea03121a711266c9581659b20e8f5d0c5 diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.AssemblyReference.cache b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.AssemblyReference.cache index 3350424..a7b8e35 100644 Binary files a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.AssemblyReference.cache and b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.CoreCompileInputs.cache b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.CoreCompileInputs.cache index ae3aceb..b19d998 100644 --- a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.CoreCompileInputs.cache +++ b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -28cdf172aae0285d81941db1b92e3ab2bcfc42a4e69af523e8d0bfd5f95e3ac4 +309cf6e6ed9718b4d459bdf1f24005abb8e7976e48d1bb6211bad446c4279fbf diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.dll b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.dll index 172cf5c..15912d4 100644 Binary files a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.dll and b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.dll differ diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.pdb b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.pdb index 58c390d..3ef3484 100644 Binary files a/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.pdb and b/Nexus.Infrastructure/obj/Debug/net10.0/Nexus.Infrastructure.pdb differ diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/ref/Nexus.Infrastructure.dll b/Nexus.Infrastructure/obj/Debug/net10.0/ref/Nexus.Infrastructure.dll index 92d7e1c..3990e50 100644 Binary files a/Nexus.Infrastructure/obj/Debug/net10.0/ref/Nexus.Infrastructure.dll and b/Nexus.Infrastructure/obj/Debug/net10.0/ref/Nexus.Infrastructure.dll differ diff --git a/Nexus.Infrastructure/obj/Debug/net10.0/refint/Nexus.Infrastructure.dll b/Nexus.Infrastructure/obj/Debug/net10.0/refint/Nexus.Infrastructure.dll index 92d7e1c..3990e50 100644 Binary files a/Nexus.Infrastructure/obj/Debug/net10.0/refint/Nexus.Infrastructure.dll and b/Nexus.Infrastructure/obj/Debug/net10.0/refint/Nexus.Infrastructure.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Nexus.Tests b/Nexus.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Nexus.Tests index 0dfa732..b7a6589 100644 Binary files a/Nexus.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Nexus.Tests and b/Nexus.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Nexus.Tests differ diff --git a/Nexus.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_Nexus.Tests b/Nexus.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_Nexus.Tests index 0dfa732..b7a6589 100644 Binary files a/Nexus.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_Nexus.Tests and b/Nexus.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_Nexus.Tests differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100644 index 0000000..a2cd7ae Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..60d4f5e Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..7464efc Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..cdb8305 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.OpenApi.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..96cb5dc Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.OpenApi.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..55ce79c Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..e06f7bf Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..9b6de68 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..39fb3bd Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..abf4a0b Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..e2fbdcb Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..32a461c Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..c9ab03e Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Newtonsoft.Json.dll b/Nexus.Tests/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.deps.json b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.deps.json new file mode 100644 index 0000000..a28954f --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.deps.json @@ -0,0 +1,739 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Nexus.Api/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "10.0.9", + "Microsoft.EntityFrameworkCore.Design": "10.0.9", + "Nexus.Application": "1.0.0", + "Nexus.Infrastructure": "1.0.0" + }, + "runtime": { + "Nexus.Api.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.9": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.Build.Framework/18.0.2": { + "runtime": { + "lib/net10.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "18.0.2.52102" + } + } + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "5.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "5.0.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "18.0.2", + "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", + "Microsoft.VisualStudio.SolutionPersistence": "1.0.52", + "Newtonsoft.Json": "13.0.3", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + }, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.25.56712" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.9" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.9": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.EntityFrameworkCore.Design/10.0.9": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "18.0.2", + "Microsoft.CodeAnalysis.CSharp": "5.0.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.9", + "Microsoft.Extensions.DependencyModel": "10.0.9", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.Extensions.DependencyModel/10.0.9": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.9", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.52.6595" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/10.0.3": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9", + "Microsoft.EntityFrameworkCore.Relational": "10.0.9", + "Npgsql": "10.0.3" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.2.0", + "fileVersion": "10.0.2.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + } + }, + "System.Composition.AttributedModel/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Convention/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Hosting/9.0.0": { + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Runtime/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.TypedParts/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Nexus.Application/1.0.0": { + "dependencies": { + "Nexus.Domain": "1.0.0" + }, + "runtime": { + "Nexus.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Nexus.Domain/1.0.0": { + "runtime": { + "Nexus.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Nexus.Infrastructure/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9", + "Nexus.Application": "1.0.0", + "Nexus.Domain": "1.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.2" + }, + "runtime": { + "Nexus.Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Nexus.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==", + "path": "microsoft.aspnetcore.openapi/10.0.9", + "hashPath": "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512" + }, + "Microsoft.Build.Framework/18.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==", + "path": "microsoft.build.framework/18.0.2", + "hashPath": "microsoft.build.framework.18.0.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", + "path": "microsoft.codeanalysis.common/5.0.0", + "hashPath": "microsoft.codeanalysis.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", + "path": "microsoft.codeanalysis.csharp/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", + "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", + "path": "microsoft.codeanalysis.workspaces.common/5.0.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==", + "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tu85SRzOT021V7EQlViCiAE7TqldVn469Y6lt5TEn/+XC4/MeNCHgMRSxqYuWqvF4zAQZUhCmtNEZuM3ss4LeA==", + "path": "microsoft.entityframeworkcore/10.0.9", + "hashPath": "microsoft.entityframeworkcore.10.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GRMaiPkqYna/gCsyDffYDWmefGPC3hDrdMw+2rrGcQwhs6uZOsaMQXMJnoXQ35tx9SkBV2ieRRU9N/jLOO6BZw==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.9", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NxgqhpB89S6BViMku9B476KopBumtk0IQ4/iVn2GeeUBW9SyzLvWwOR0zPgcooAtRlR0UVzXkaUs71gYHSAbHg==", + "path": "microsoft.entityframeworkcore.design/10.0.9", + "hashPath": "microsoft.entityframeworkcore.design.10.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dEoyYKgiaZHHgOFm1WMWm1sFEsEuhPWufX4L9PekKtqd/RaIcPjkCjvbrVvJtApErb5wPSJhYvnTlxhH+p9h2g==", + "path": "microsoft.entityframeworkcore.relational/10.0.9", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.9.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SCDTQ6HubnRvTUjR7dgMKHZvNoCb03t44ttHL8trlFTGgfDteWn/0nRdOxDhcI+lTWhKgd/flCVJEtAOPhSLNg==", + "path": "microsoft.extensions.dependencymodel/10.0.9", + "hashPath": "microsoft.extensions.dependencymodel.10.0.9.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + }, + "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==", + "path": "microsoft.visualstudio.solutionpersistence/1.0.52", + "hashPath": "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PsNYgPOSW41Xx19gin7y4EdZAPteWr9Cb01XkdObxOsPzi+mgBupBEN7J7+erXFsROPOILM7MlIoO9QzL8+LGQ==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.2", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.2.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Composition/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "path": "system.composition/9.0.0", + "hashPath": "system.composition.9.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "path": "system.composition.attributedmodel/9.0.0", + "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "path": "system.composition.convention/9.0.0", + "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "path": "system.composition.hosting/9.0.0", + "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "path": "system.composition.runtime/9.0.0", + "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "path": "system.composition.typedparts/9.0.0", + "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" + }, + "Nexus.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nexus.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nexus.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.dll b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.dll new file mode 100644 index 0000000..350840b Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.exe b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.exe new file mode 100644 index 0000000..6c9c9c2 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.exe differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.pdb b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.pdb new file mode 100644 index 0000000..5818c18 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.pdb differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json new file mode 100644 index 0000000..bf15a00 --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/Nexus.Api.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.dll b/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.dll new file mode 100644 index 0000000..ab2728c Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.pdb b/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.pdb new file mode 100644 index 0000000..d110da8 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Application.pdb differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.dll b/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.dll new file mode 100644 index 0000000..6c2040f Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.pdb b/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.pdb new file mode 100644 index 0000000..cf04ff2 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Domain.pdb differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.dll b/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.dll new file mode 100644 index 0000000..15912d4 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.pdb b/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.pdb new file mode 100644 index 0000000..3ef3484 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Infrastructure.pdb differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.deps.json b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.deps.json new file mode 100644 index 0000000..2393534 --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.deps.json @@ -0,0 +1,608 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Nexus.Tests/1.0.0": { + "dependencies": { + "Microsoft.NET.Test.Sdk": "17.14.1", + "Nexus.Api": "1.0.0", + "Nexus.Application": "1.0.0", + "Nexus.Domain": "1.0.0", + "Nexus.Infrastructure": "1.0.0", + "xunit": "2.9.3" + }, + "runtime": { + "Nexus.Tests.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.9": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.CodeCoverage/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.225.12603" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.9" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.9": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.9.0", + "fileVersion": "10.0.926.27113" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.4.0", + "fileVersion": "10.0.426.12010" + } + } + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "dependencies": { + "Microsoft.CodeCoverage": "17.14.1", + "Microsoft.TestPlatform.TestHost": "17.14.1" + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.14.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/10.0.3": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.3.0", + "fileVersion": "10.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9", + "Microsoft.EntityFrameworkCore.Relational": "10.0.4", + "Npgsql": "10.0.3" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.2.0", + "fileVersion": "10.0.2.0" + } + } + }, + "xunit/2.9.3": { + "dependencies": { + "xunit.assert": "2.9.3", + "xunit.core": "2.9.3" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "xunit.assert/2.9.3": { + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.core/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3", + "xunit.extensibility.execution": "2.9.3" + } + }, + "xunit.extensibility.core/2.9.3": { + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.extensibility.execution/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "Nexus.Api/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "10.0.9", + "Nexus.Application": "1.0.0", + "Nexus.Infrastructure": "1.0.0" + }, + "runtime": { + "Nexus.Api.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Nexus.Application/1.0.0": { + "dependencies": { + "Nexus.Domain": "1.0.0" + }, + "runtime": { + "Nexus.Application.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Nexus.Domain/1.0.0": { + "runtime": { + "Nexus.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Nexus.Infrastructure/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.9", + "Nexus.Application": "1.0.0", + "Nexus.Domain": "1.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.2" + }, + "runtime": { + "Nexus.Infrastructure.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Nexus.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OpenApi/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==", + "path": "microsoft.aspnetcore.openapi/10.0.9", + "hashPath": "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", + "path": "microsoft.codecoverage/17.14.1", + "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tu85SRzOT021V7EQlViCiAE7TqldVn469Y6lt5TEn/+XC4/MeNCHgMRSxqYuWqvF4zAQZUhCmtNEZuM3ss4LeA==", + "path": "microsoft.entityframeworkcore/10.0.9", + "hashPath": "microsoft.entityframeworkcore.10.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GRMaiPkqYna/gCsyDffYDWmefGPC3hDrdMw+2rrGcQwhs6uZOsaMQXMJnoXQ35tx9SkBV2ieRRU9N/jLOO6BZw==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.9", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DOTjTHy93W3TwpMLM4SCm0n57Sc0Jj3+m2S6LSTstKyBB34eT1UouaMS19mpWwvtj42+sRiEjA3+rOTNoNzXFQ==", + "path": "microsoft.entityframeworkcore.relational/10.0.4", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.4.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", + "path": "microsoft.net.test.sdk/17.14.1", + "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", + "path": "microsoft.testplatform.objectmodel/17.14.1", + "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", + "path": "microsoft.testplatform.testhost/17.14.1", + "hashPath": "microsoft.testplatform.testhost.17.14.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", + "path": "npgsql/10.0.3", + "hashPath": "npgsql.10.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PsNYgPOSW41Xx19gin7y4EdZAPteWr9Cb01XkdObxOsPzi+mgBupBEN7J7+erXFsROPOILM7MlIoO9QzL8+LGQ==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.2", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.2.nupkg.sha512" + }, + "xunit/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", + "path": "xunit/2.9.3", + "hashPath": "xunit.2.9.3.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.assert/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", + "path": "xunit.assert/2.9.3", + "hashPath": "xunit.assert.2.9.3.nupkg.sha512" + }, + "xunit.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", + "path": "xunit.core/2.9.3", + "hashPath": "xunit.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", + "path": "xunit.extensibility.core/2.9.3", + "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.execution/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", + "path": "xunit.extensibility.execution/2.9.3", + "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" + }, + "Nexus.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nexus.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nexus.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Nexus.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.dll b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.dll new file mode 100644 index 0000000..3098f17 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.pdb b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.pdb new file mode 100644 index 0000000..4320abc Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.pdb differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.runtimeconfig.json b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.runtimeconfig.json new file mode 100644 index 0000000..3251c8d --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/Nexus.Tests.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "MSTest.EnableParentProcessQuery": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Nexus.Tests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/Nexus.Tests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100644 index 0000000..14a1321 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/Npgsql.dll b/Nexus.Tests/bin/Debug/net10.0/Npgsql.dll new file mode 100644 index 0000000..184db8d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/Npgsql.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/appsettings.Development.json b/Nexus.Tests/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..a068f09 --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "DefaultConnection": "Host=192.168.68.66;Port=5432;Database=nexus;Username=nexus_app;Password=VsGWSFjWJFn8Nsh" + } +} diff --git a/Nexus.Tests/bin/Debug/net10.0/appsettings.json b/Nexus.Tests/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/Nexus.Tests/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..6b4cb52 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..4bd6351 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..7b44217 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..711b34d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..8e5665d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..7430499 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..310ab84 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..451e2d2 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..e606f2d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..c4a0f6d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..861e885 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..a3867c8 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..08ad46b Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..44c4b7f Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..668630a Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e7ac83f Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..305ae61 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a2eeac8 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..7394ada Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..36ad487 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..21fd3a2 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..3138d0b Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..e0afbb4 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..591475d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f6d7529 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..008facc Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7a2bc17 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f5e04ec Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4c707a0 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..84e7a2d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..4198d29 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..6583956 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..354b0bf Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..f46d948 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..42c1de2 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9e65b3a Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..26b5522 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bdc41ed Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..302a135 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..b435708 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..c9f988e Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..0849e28 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..8657f14 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a2a3f0e Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..834e160 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..2b48978 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..59fa16a Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a4b7361 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..968210b Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..5f94d05 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/testhost.dll b/Nexus.Tests/bin/Debug/net10.0/testhost.dll new file mode 100644 index 0000000..538cc6d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/testhost.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/testhost.exe b/Nexus.Tests/bin/Debug/net10.0/testhost.exe new file mode 100644 index 0000000..c741b7a Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/testhost.exe differ diff --git a/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..d397c2d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..1f753be Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..fb6e8f0 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..e032b07 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..c5b5b63 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/xunit.abstractions.dll b/Nexus.Tests/bin/Debug/net10.0/xunit.abstractions.dll new file mode 100644 index 0000000..d1e90bf Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/xunit.abstractions.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/xunit.assert.dll b/Nexus.Tests/bin/Debug/net10.0/xunit.assert.dll new file mode 100644 index 0000000..99bc34c Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/xunit.assert.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/xunit.core.dll b/Nexus.Tests/bin/Debug/net10.0/xunit.core.dll new file mode 100644 index 0000000..d56aa16 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/xunit.core.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/xunit.execution.dotnet.dll b/Nexus.Tests/bin/Debug/net10.0/xunit.execution.dotnet.dll new file mode 100644 index 0000000..7a1cc87 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/xunit.execution.dotnet.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/Nexus.Tests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll new file mode 100644 index 0000000..8126550 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..34e54ed Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..dc5e3d1 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bf6c73d Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..cfbf0bc Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f671e52 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..f30f879 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..c2b89ef Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a0764e6 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a6014d3 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..3e7e989 Binary files /dev/null and b/Nexus.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Te.EF483BC8.Up2Date b/Nexus.Tests/obj/Debug/net10.0/Nexus.Te.EF483BC8.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfo.cs b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfo.cs index e3c1095..dfd14ec 100644 --- a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfo.cs +++ b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Nexus.Tests")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb640049c77cdab4df81c7117b1ed3d9e24ddab")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+077ee48927ee13d52504c44cc7a03836ec629880")] [assembly: System.Reflection.AssemblyProductAttribute("Nexus.Tests")] [assembly: System.Reflection.AssemblyTitleAttribute("Nexus.Tests")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfoInputs.cache b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfoInputs.cache index c8bda56..e8d93df 100644 --- a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfoInputs.cache +++ b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.AssemblyInfoInputs.cache @@ -1 +1 @@ -767ed074f099b40fbc3c01493927c88af002b0dcaebbc05e099eb7e76a2f5bd6 +76a6a7926f144f8852bfc883c725bf459e47dc481e1539b82463c5f2d4a6122a diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.assets.cache b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.assets.cache index 5eafa43..efcf98e 100644 Binary files a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.assets.cache and b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.assets.cache differ diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.AssemblyReference.cache b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.AssemblyReference.cache index e537ac0..c2525b3 100644 Binary files a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.AssemblyReference.cache and b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.AssemblyReference.cache differ diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.CoreCompileInputs.cache b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b61ddd9 --- /dev/null +++ b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4f985e2de6fc46917d9cbeaa7ffd0fbc490a31aeb554e9817b4ea90a84e377b0 diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.FileListAbsolute.txt b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..92e123c --- /dev/null +++ b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,119 @@ +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\.msCoverageSourceRootsMapping_Nexus.Tests +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\CoverletSourceRootsMapping_Nexus.Tests +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\testhost.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\xunit.abstractions.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.deps.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.runtimeconfig.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\appsettings.Development.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\appsettings.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.staticwebassets.endpoints.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.exe +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\testhost.exe +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\xunit.runner.visualstudio.testadapter.dll +C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Tests.deps.json +C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Tests.runtimeconfig.json +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Tests.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Tests.pdb +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.AspNetCore.OpenApi.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.OpenApi.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.TestPlatform.CoreUtilities.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.TestPlatform.Utilities.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Newtonsoft.Json.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Npgsql.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\xunit.assert.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\xunit.core.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\xunit.execution.dotnet.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Application.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Domain.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Infrastructure.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Api.pdb +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Application.pdb +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Domain.pdb +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\bin\Debug\net10.0\Nexus.Infrastructure.pdb +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.csproj.AssemblyReference.cache +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.GeneratedMSBuildEditorConfig.editorconfig +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.AssemblyInfoInputs.cache +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.AssemblyInfo.cs +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.csproj.CoreCompileInputs.cache +C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Te.EF483BC8.Up2Date +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\refint\Nexus.Tests.dll +c:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.pdb +C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\Nexus.Tests.genruntimeconfig.cache +C:\Users\klein\Vscode\Nexus\nexus-backend\Nexus.Tests\obj\Debug\net10.0\ref\Nexus.Tests.dll diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.dll b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.dll new file mode 100644 index 0000000..3098f17 Binary files /dev/null and b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.dll differ diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.genruntimeconfig.cache b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..af080cb --- /dev/null +++ b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +445edec396d8263c3c6a4297140cb914917fa051ee59508c476435969e818953 diff --git a/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.pdb b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.pdb new file mode 100644 index 0000000..4320abc Binary files /dev/null and b/Nexus.Tests/obj/Debug/net10.0/Nexus.Tests.pdb differ diff --git a/Nexus.Tests/obj/Debug/net10.0/ref/Nexus.Tests.dll b/Nexus.Tests/obj/Debug/net10.0/ref/Nexus.Tests.dll new file mode 100644 index 0000000..8a23b75 Binary files /dev/null and b/Nexus.Tests/obj/Debug/net10.0/ref/Nexus.Tests.dll differ diff --git a/Nexus.Tests/obj/Debug/net10.0/refint/Nexus.Tests.dll b/Nexus.Tests/obj/Debug/net10.0/refint/Nexus.Tests.dll new file mode 100644 index 0000000..8a23b75 Binary files /dev/null and b/Nexus.Tests/obj/Debug/net10.0/refint/Nexus.Tests.dll differ diff --git a/Nexus.Tests/obj/Nexus.Tests.csproj.nuget.dgspec.json b/Nexus.Tests/obj/Nexus.Tests.csproj.nuget.dgspec.json index 9251fab..e03a8fe 100644 --- a/Nexus.Tests/obj/Nexus.Tests.csproj.nuget.dgspec.json +++ b/Nexus.Tests/obj/Nexus.Tests.csproj.nuget.dgspec.json @@ -55,10 +55,6 @@ "framework": "net10.0", "targetAlias": "net10.0", "dependencies": { - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[10.0.9, )" - }, "Microsoft.EntityFrameworkCore.Design": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", diff --git a/Nexus.Tests/obj/project.assets.json b/Nexus.Tests/obj/project.assets.json index 805484f..0b97cf4 100644 --- a/Nexus.Tests/obj/project.assets.json +++ b/Nexus.Tests/obj/project.assets.json @@ -8,28 +8,6 @@ "build/netstandard2.0/coverlet.collector.targets": {} } }, - "Microsoft.AspNetCore.OpenApi/10.0.9": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "2.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ], - "build": { - "build/_._": {} - } - }, "Microsoft.CodeCoverage/17.14.1": { "type": "package", "compile": { @@ -289,19 +267,6 @@ "build/net8.0/Microsoft.NET.Test.Sdk.targets": {} } }, - "Microsoft.OpenApi/2.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, "Microsoft.TestPlatform.ObjectModel/17.14.1": { "type": "package", "compile": { @@ -696,7 +661,6 @@ "type": "project", "framework": ".NETCoreApp,Version=v10.0", "dependencies": { - "Microsoft.AspNetCore.OpenApi": "10.0.9", "Nexus.Application": "1.0.0", "Nexus.Infrastructure": "1.0.0" }, @@ -822,24 +786,6 @@ "coverlet.collector.nuspec" ] }, - "Microsoft.AspNetCore.OpenApi/10.0.9": { - "sha512": "1ihb8FO9cGgEK1/m3CTtT/SfnynwmiZib0W2pcDVj3KSWk/Sca4VOXEtaptKQc582zpFrzTFiwkGRCglt6H+WQ==", - "type": "package", - "path": "microsoft.aspnetcore.openapi/10.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll", - "build/Microsoft.AspNetCore.OpenApi.targets", - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll", - "lib/net10.0/Microsoft.AspNetCore.OpenApi.xml", - "microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512", - "microsoft.aspnetcore.openapi.nuspec" - ] - }, "Microsoft.CodeCoverage/17.14.1": { "sha512": "pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", "type": "package", @@ -1325,24 +1271,6 @@ "microsoft.net.test.sdk.nuspec" ] }, - "Microsoft.OpenApi/2.0.0": { - "sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", - "type": "package", - "path": "microsoft.openapi/2.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net8.0/Microsoft.OpenApi.dll", - "lib/net8.0/Microsoft.OpenApi.pdb", - "lib/net8.0/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.2.0.0.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, "Microsoft.TestPlatform.ObjectModel/17.14.1": { "sha512": "xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", "type": "package", @@ -1755,11 +1683,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", + "projectUniqueName": "c:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", "projectName": "Nexus.Tests", - "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", + "projectPath": "c:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", "packagesPath": "C:\\Users\\klein\\.nuget\\packages\\", - "outputPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\obj\\", + "outputPath": "c:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\klein\\AppData\\Roaming\\NuGet\\NuGet.Config", @@ -2119,17 +2047,5 @@ } } } - }, - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc", - "libraryId": "Microsoft.OpenApi", - "targetGraphs": [ - "net10.0" - ] - } - ] + } } \ No newline at end of file diff --git a/Nexus.Tests/obj/project.nuget.cache b/Nexus.Tests/obj/project.nuget.cache index 5de22ec..d3b349d 100644 --- a/Nexus.Tests/obj/project.nuget.cache +++ b/Nexus.Tests/obj/project.nuget.cache @@ -1,11 +1,10 @@ { "version": 2, - "dgSpecHash": "+2vkS6aclmA=", + "dgSpecHash": "Yc0MzbsBL4E=", "success": true, "projectFilePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", "expectedPackageFiles": [ "C:\\Users\\klein\\.nuget\\packages\\coverlet.collector\\6.0.4\\coverlet.collector.6.0.4.nupkg.sha512", - "C:\\Users\\klein\\.nuget\\packages\\microsoft.aspnetcore.openapi\\10.0.9\\microsoft.aspnetcore.openapi.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.codecoverage\\17.14.1\\microsoft.codecoverage.17.14.1.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.9\\microsoft.entityframeworkcore.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.9\\microsoft.entityframeworkcore.abstractions.10.0.9.nupkg.sha512", @@ -21,7 +20,6 @@ "C:\\Users\\klein\\.nuget\\packages\\microsoft.extensions.options\\10.0.9\\microsoft.extensions.options.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.9\\microsoft.extensions.primitives.10.0.9.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.net.test.sdk\\17.14.1\\microsoft.net.test.sdk.17.14.1.nupkg.sha512", - "C:\\Users\\klein\\.nuget\\packages\\microsoft.openapi\\2.0.0\\microsoft.openapi.2.0.0.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.14.1\\microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\microsoft.testplatform.testhost\\17.14.1\\microsoft.testplatform.testhost.17.14.1.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", @@ -36,18 +34,5 @@ "C:\\Users\\klein\\.nuget\\packages\\xunit.extensibility.execution\\2.9.3\\xunit.extensibility.execution.2.9.3.nupkg.sha512", "C:\\Users\\klein\\.nuget\\packages\\xunit.runner.visualstudio\\3.1.4\\xunit.runner.visualstudio.3.1.4.nupkg.sha512" ], - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "message": "Package 'Microsoft.OpenApi' 2.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc", - "projectPath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", - "warningLevel": 1, - "filePath": "C:\\Users\\klein\\Vscode\\Nexus\\nexus-backend\\Nexus.Tests\\Nexus.Tests.csproj", - "libraryId": "Microsoft.OpenApi", - "targetGraphs": [ - "net10.0" - ] - } - ] + "logs": [] } \ No newline at end of file