diff --git a/.gitignore b/.gitignore index 3a65e9b..ee641aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,19 @@ WebApi/obj/Debug/net6.0/WebApi.assets.cache +Application/bin +Application/obj +Gateway/bin +Gateway/obj +IOC/bin +IOC/obj +WebApi/appsettings.Development.json +WebApi/appsettings.json IOC/obj/Debug/net6.0/IOC.assets.cache Domain/obj/Debug/net6.0/Domain.assets.cache Persistence/obj/Debug/net6.0/Persistence.assets.cache Application/obj/Debug/net6.0/Application.assets.cache +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..fa53a86 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/WebApi/bin/Debug/net6.0/WebApi.dll", + "args": [], + "cwd": "${workspaceFolder}/WebApi", + "stopAtEntry": false, + // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser + "serverReadyAction": { + "action": "openExternally", + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..ead6fab --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/Application/Application.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/Application/Application.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/Application/Application.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/Application/Implementations/Utilities/MessageService.cs b/Application/Implementations/Utilities/MessageService.cs index eacdb84..1d750b2 100644 --- a/Application/Implementations/Utilities/MessageService.cs +++ b/Application/Implementations/Utilities/MessageService.cs @@ -1,11 +1,29 @@ +using Application.Interfaces.Repositories; using Application.Interfaces.Services.ApplicationServices; namespace Application.Implementations.Utilities; public class MessageService : IMessageService { - public Task CreateMessageAsync(string content, string farmerPhoneNumber, string farmLocation, DateTime dateOfIncidence) + private readonly IFarmRepository _farmRepo; + private readonly IMessageRepository _messageRepo; + + public MessageService(IFarmRepository farmRepo, IMessageRepository messageRepo) { - throw new NotImplementedException(); + _farmRepo = farmRepo; + _messageRepo = messageRepo; + } + + public async Task CreateMessageAsync(string content, string farmerPhoneNumber, + string farmLocation, DateTime dateOfIncidence) + { + var weatherResponses = await _farmRepo.Hazard(); + + foreach (var item in weatherResponses) + { + // var messageExists = await _messageRepo.ExistsAsync(p => p.FarmerPhoneNumber == item.FarmerPhoneNumber + // && p.DateOfIncidence == item.DateOfIncidence); + } + } } diff --git a/Application/bin/Debug/net6.0/Application.dll b/Application/bin/Debug/net6.0/Application.dll index e0ecaf0..ff4b47b 100644 Binary files a/Application/bin/Debug/net6.0/Application.dll and b/Application/bin/Debug/net6.0/Application.dll differ diff --git a/Application/bin/Debug/net6.0/Application.pdb b/Application/bin/Debug/net6.0/Application.pdb index 9b9543d..7956602 100644 Binary files a/Application/bin/Debug/net6.0/Application.pdb and b/Application/bin/Debug/net6.0/Application.pdb differ diff --git a/Application/bin/Debug/net6.0/Domain.dll b/Application/bin/Debug/net6.0/Domain.dll index a953c37..e699991 100644 Binary files a/Application/bin/Debug/net6.0/Domain.dll and b/Application/bin/Debug/net6.0/Domain.dll differ diff --git a/Application/bin/Debug/net6.0/Domain.pdb b/Application/bin/Debug/net6.0/Domain.pdb index 1b8898a..bd9ae1e 100644 Binary files a/Application/bin/Debug/net6.0/Domain.pdb and b/Application/bin/Debug/net6.0/Domain.pdb differ diff --git a/Application/obj/Application.csproj.nuget.dgspec.json b/Application/obj/Application.csproj.nuget.dgspec.json index e2246fa..7ec2b08 100644 --- a/Application/obj/Application.csproj.nuget.dgspec.json +++ b/Application/obj/Application.csproj.nuget.dgspec.json @@ -1,33 +1,35 @@ { "format": 1, "restore": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": {} + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": {} }, "projects": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" } } } @@ -69,8 +71,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -79,26 +80,28 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -122,8 +125,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -132,7 +134,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/Application/obj/Application.csproj.nuget.g.props b/Application/obj/Application.csproj.nuget.g.props index 7085e81..0779fa9 100644 --- a/Application/obj/Application.csproj.nuget.g.props +++ b/Application/obj/Application.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\user\.nuget\packages\ PackageReference - 6.3.1 + 6.2.0 diff --git a/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs b/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs index ee1dfe7..cc17bae 100644 --- a/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs +++ b/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig b/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig index 89c10fc..cc3fce6 100644 --- a/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig +++ b/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig @@ -7,4 +7,4 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Application -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\Application\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\Application\ diff --git a/Application/obj/Debug/net6.0/Application.assets.cache b/Application/obj/Debug/net6.0/Application.assets.cache index a9d1e3c..57db57e 100644 Binary files a/Application/obj/Debug/net6.0/Application.assets.cache and b/Application/obj/Debug/net6.0/Application.assets.cache differ diff --git a/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache b/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache index 803976a..4463863 100644 Binary files a/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache and b/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache differ diff --git a/Application/obj/Debug/net6.0/Application.csproj.CoreCompileInputs.cache b/Application/obj/Debug/net6.0/Application.csproj.CoreCompileInputs.cache index 04984f7..d1377a0 100644 --- a/Application/obj/Debug/net6.0/Application.csproj.CoreCompileInputs.cache +++ b/Application/obj/Debug/net6.0/Application.csproj.CoreCompileInputs.cache @@ -1,5 +1 @@ -<<<<<<< HEAD -cad091292b31bab7b83f543b6b315cd4df4208a6 -======= -e0972a51f207da9a0e71a4cc536ab9899d1b2048 ->>>>>>> c0d6bcf55d26d6de98fb96417bfd34c39c20abb2 +1106d89111b4bbdefbcaaba36e5813f7850c3af9 diff --git a/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt b/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt index 9bb074c..a80ef49 100644 --- a/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt +++ b/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt @@ -54,3 +54,18 @@ c:\Users\user\Desktop\Extern\new\AARR-Backend\Application\obj\Debug\net6.0\refin c:\Users\user\Desktop\Extern\new\AARR-Backend\Application\obj\Debug\net6.0\Application.pdb c:\Users\user\Desktop\Extern\new\AARR-Backend\Application\obj\Debug\net6.0\ref\Application.dll >>>>>>> c0d6bcf55d26d6de98fb96417bfd34c39c20abb2 +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\bin\Debug\net6.0\Application.deps.json +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\bin\Debug\net6.0\Application.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\bin\Debug\net6.0\Application.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\bin\Debug\net6.0\Domain.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\bin\Debug\net6.0\Domain.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.csproj.AssemblyReference.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.AssemblyInfoInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.AssemblyInfo.cs +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.csproj.CoreCompileInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.csproj.CopyComplete +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\refint\Application.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\Application.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Application\obj\Debug\net6.0\ref\Application.dll diff --git a/Application/obj/Debug/net6.0/Application.dll b/Application/obj/Debug/net6.0/Application.dll new file mode 100644 index 0000000..ff4b47b Binary files /dev/null and b/Application/obj/Debug/net6.0/Application.dll differ diff --git a/Application/obj/Debug/net6.0/Application.pdb b/Application/obj/Debug/net6.0/Application.pdb index 9b9543d..7956602 100644 Binary files a/Application/obj/Debug/net6.0/Application.pdb and b/Application/obj/Debug/net6.0/Application.pdb differ diff --git a/Application/obj/Debug/net6.0/ref/Application.dll b/Application/obj/Debug/net6.0/ref/Application.dll index 3d0c843..9d0a200 100644 Binary files a/Application/obj/Debug/net6.0/ref/Application.dll and b/Application/obj/Debug/net6.0/ref/Application.dll differ diff --git a/Application/obj/Debug/net6.0/refint/Application.dll b/Application/obj/Debug/net6.0/refint/Application.dll index 3d0c843..9d0a200 100644 Binary files a/Application/obj/Debug/net6.0/refint/Application.dll and b/Application/obj/Debug/net6.0/refint/Application.dll differ diff --git a/Application/obj/project.assets.json b/Application/obj/project.assets.json index 3bc5281..3ba03dc 100644 --- a/Application/obj/project.assets.json +++ b/Application/obj/project.assets.json @@ -31,27 +31,19 @@ "MediatR.Contracts": "1.0.1" }, "compile": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} }, "runtime": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} } }, "MediatR.Contracts/1.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} }, "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} } }, "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { @@ -74,14 +66,10 @@ "System.IO.Pipelines": "5.0.2" }, "compile": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} }, "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} } }, "Microsoft.CSharp/4.3.0": { @@ -105,9 +93,7 @@ "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netstandard1.0/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netstandard1.3/Microsoft.CSharp.dll": {} @@ -116,14 +102,10 @@ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -132,14 +114,10 @@ "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "build": { "build/Microsoft.Extensions.Logging.Abstractions.targets": {}, @@ -149,14 +127,10 @@ "Microsoft.Extensions.Primitives/5.0.1": { "type": "package", "compile": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} } }, "Microsoft.NETCore.Platforms/1.1.0": { @@ -185,9 +159,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Diagnostics.Debug/4.3.0": { @@ -198,9 +170,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Dynamic.Runtime/4.3.0": { @@ -222,9 +192,7 @@ "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} @@ -238,9 +206,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.IO/4.3.0": { @@ -253,22 +219,16 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.IO.dll": {} } }, "System.IO.Pipelines/5.0.2": { "type": "package", "compile": { - "ref/netcoreapp2.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} } }, "System.Linq/4.3.0": { @@ -281,9 +241,7 @@ "System.Runtime.Extensions": "4.3.0" }, "compile": { - "ref/netstandard1.6/_._": { - "related": ".xml" - } + "ref/netstandard1.6/_._": {} }, "runtime": { "lib/netstandard1.6/System.Linq.dll": {} @@ -311,9 +269,7 @@ "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/netstandard1.6/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netstandard1.6/System.Linq.Expressions.dll": {} @@ -329,9 +285,7 @@ "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.ObjectModel.dll": {} }, "runtime": { "lib/netstandard1.3/System.ObjectModel.dll": {} @@ -347,9 +301,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Reflection.dll": {} } }, "System.Reflection.Emit/4.3.0": { @@ -362,9 +314,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/netstandard1.1/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.dll": {} @@ -378,9 +328,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} @@ -395,9 +343,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} @@ -412,9 +358,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} } }, "System.Reflection.Primitives/4.3.0": { @@ -425,9 +369,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, "System.Reflection.TypeExtensions/4.3.0": { @@ -437,9 +379,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } + "ref/netstandard1.5/_._": {} }, "runtime": { "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} @@ -455,9 +395,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} } }, "System.Runtime/4.3.0": { @@ -467,9 +405,7 @@ "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Runtime.dll": {} } }, "System.Runtime.Extensions/4.3.0": { @@ -480,9 +416,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } + "ref/netstandard1.5/_._": {} } }, "System.Runtime.Handles/4.3.0": { @@ -493,9 +427,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Runtime.InteropServices/4.3.0": { @@ -520,9 +452,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Text.Encoding.dll": {} } }, "System.Threading/4.3.0": { @@ -532,9 +462,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { "lib/netstandard1.3/System.Threading.dll": {} @@ -548,9 +476,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Threading.Tasks.dll": {} } }, "Domain/1.0.0": { @@ -2419,27 +2345,29 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" } } } @@ -2481,8 +2409,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -2491,16 +2418,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + } } \ No newline at end of file diff --git a/Application/obj/project.nuget.cache b/Application/obj/project.nuget.cache index 68ae271..69616ca 100644 --- a/Application/obj/project.nuget.cache +++ b/Application/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "Gmw0YMQXRCEpg12Lk6y+tyYRyHOuV4ABx2XgTlP8KMyHKl3XSEh2Cvu3G6zjAnkl4dH1ji9+8+G6qvJ0PjQbVA==", + "dgSpecHash": "6R4q/oNZ6QPRryg/dqLTL690MZTAvvTyy9CKiRo5N33I7Y/vVKyqTKnH0B0G3rZc1u2k5dY4PMGaIHqEkDIRGA==", "success": true, - "projectFilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "expectedPackageFiles": [ "C:\\Users\\user\\.nuget\\packages\\mapster\\7.3.0\\mapster.7.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", @@ -41,12 +41,5 @@ "C:\\Users\\user\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512" ], - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + "logs": [] } \ No newline at end of file diff --git a/Domain/bin/Debug/net6.0/Domain.dll b/Domain/bin/Debug/net6.0/Domain.dll index 5bca3bb..e699991 100644 Binary files a/Domain/bin/Debug/net6.0/Domain.dll and b/Domain/bin/Debug/net6.0/Domain.dll differ diff --git a/Domain/bin/Debug/net6.0/Domain.pdb b/Domain/bin/Debug/net6.0/Domain.pdb index 53c7c9d..bd9ae1e 100644 Binary files a/Domain/bin/Debug/net6.0/Domain.pdb and b/Domain/bin/Debug/net6.0/Domain.pdb differ diff --git a/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs b/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs index 1d8e988..fe5688b 100644 --- a/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs +++ b/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig b/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig index df3a469..5fd30a7 100644 --- a/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +++ b/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -7,4 +7,4 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Domain -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\Domain\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\ diff --git a/Domain/obj/Debug/net6.0/Domain.assets.cache b/Domain/obj/Debug/net6.0/Domain.assets.cache index 8b5adda..373f313 100644 Binary files a/Domain/obj/Debug/net6.0/Domain.assets.cache and b/Domain/obj/Debug/net6.0/Domain.assets.cache differ diff --git a/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache b/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache index ad43c1b..e46789b 100644 Binary files a/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache and b/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache differ diff --git a/Domain/obj/Debug/net6.0/Domain.csproj.CoreCompileInputs.cache b/Domain/obj/Debug/net6.0/Domain.csproj.CoreCompileInputs.cache index 91975f3..47bde8e 100644 --- a/Domain/obj/Debug/net6.0/Domain.csproj.CoreCompileInputs.cache +++ b/Domain/obj/Debug/net6.0/Domain.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -d6d5a9d661e88bd6489c487917caf05cab78a45c +a4aae064965d1de406dbdd680e4d9fa0b8527227 diff --git a/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt b/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt index e2375b5..6d98d73 100644 --- a/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt +++ b/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt @@ -49,3 +49,15 @@ c:\Users\user\Desktop\Extern\new\AARR-Backend\Domain\obj\Debug\net6.0\refint\Dom c:\Users\user\Desktop\Extern\new\AARR-Backend\Domain\obj\Debug\net6.0\Domain.pdb c:\Users\user\Desktop\Extern\new\AARR-Backend\Domain\obj\Debug\net6.0\ref\Domain.dll >>>>>>> c0d6bcf55d26d6de98fb96417bfd34c39c20abb2 +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\bin\Debug\net6.0\Domain.deps.json +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\bin\Debug\net6.0\Domain.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\bin\Debug\net6.0\Domain.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.csproj.AssemblyReference.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.AssemblyInfoInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.AssemblyInfo.cs +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.csproj.CoreCompileInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\refint\Domain.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\Domain.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Domain\obj\Debug\net6.0\ref\Domain.dll diff --git a/Domain/obj/Debug/net6.0/Domain.dll b/Domain/obj/Debug/net6.0/Domain.dll index 5bca3bb..e699991 100644 Binary files a/Domain/obj/Debug/net6.0/Domain.dll and b/Domain/obj/Debug/net6.0/Domain.dll differ diff --git a/Domain/obj/Debug/net6.0/Domain.pdb b/Domain/obj/Debug/net6.0/Domain.pdb index 53c7c9d..bd9ae1e 100644 Binary files a/Domain/obj/Debug/net6.0/Domain.pdb and b/Domain/obj/Debug/net6.0/Domain.pdb differ diff --git a/Domain/obj/Debug/net6.0/ref/Domain.dll b/Domain/obj/Debug/net6.0/ref/Domain.dll index 01b1900..cba0b59 100644 Binary files a/Domain/obj/Debug/net6.0/ref/Domain.dll and b/Domain/obj/Debug/net6.0/ref/Domain.dll differ diff --git a/Domain/obj/Debug/net6.0/refint/Domain.dll b/Domain/obj/Debug/net6.0/refint/Domain.dll index 01b1900..cba0b59 100644 Binary files a/Domain/obj/Debug/net6.0/refint/Domain.dll and b/Domain/obj/Debug/net6.0/refint/Domain.dll differ diff --git a/Domain/obj/Domain.csproj.nuget.dgspec.json b/Domain/obj/Domain.csproj.nuget.dgspec.json index ccd21f6..f999da9 100644 --- a/Domain/obj/Domain.csproj.nuget.dgspec.json +++ b/Domain/obj/Domain.csproj.nuget.dgspec.json @@ -1,25 +1,27 @@ { "format": 1, "restore": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": {} + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": {} }, "projects": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -43,8 +45,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -53,7 +54,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/Domain/obj/Domain.csproj.nuget.g.props b/Domain/obj/Domain.csproj.nuget.g.props index 7085e81..0779fa9 100644 --- a/Domain/obj/Domain.csproj.nuget.g.props +++ b/Domain/obj/Domain.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\user\.nuget\packages\ PackageReference - 6.3.1 + 6.2.0 diff --git a/Domain/obj/project.assets.json b/Domain/obj/project.assets.json index ad363b4..7b0b4d4 100644 --- a/Domain/obj/project.assets.json +++ b/Domain/obj/project.assets.json @@ -13,19 +13,21 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -49,8 +51,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -59,16 +60,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + } } \ No newline at end of file diff --git a/Domain/obj/project.nuget.cache b/Domain/obj/project.nuget.cache index 97d52f3..3ec59c9 100644 --- a/Domain/obj/project.nuget.cache +++ b/Domain/obj/project.nuget.cache @@ -1,15 +1,8 @@ { "version": 2, - "dgSpecHash": "nBEVbfc+r38K5kctJ1gbrSv4CAyTaXTmGf+UhspDfRKpzHkx27hZNOfUBbOsfao54XD5MPSkENJC5Hs8FBRu9Q==", + "dgSpecHash": "tSRR+1i2Zy9qc7SDio6vEbx77MhAaHYU0YkSvQZBcOwbE8I53Q8CrfgLx2rU7mXUmhSflOwmaDBlZvT543N6yg==", "success": true, - "projectFilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "expectedPackageFiles": [], - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + "logs": [] } \ No newline at end of file diff --git a/Gateway/ServiceCollectionExtension.cs b/Gateway/ServiceCollectionExtension.cs index b3f3e5f..9b56617 100644 --- a/Gateway/ServiceCollectionExtension.cs +++ b/Gateway/ServiceCollectionExtension.cs @@ -8,9 +8,10 @@ public static class ServiceCollectionExtension public static IServiceCollection AddGateway(this IServiceCollection services) { services. - AddScoped() + AddScoped() .AddScoped() - .AddScoped(); + .AddScoped() + .AddScoped(); return services; } } diff --git a/Gateway/bin/Debug/net6.0/Application.dll b/Gateway/bin/Debug/net6.0/Application.dll index e0ecaf0..ff4b47b 100644 Binary files a/Gateway/bin/Debug/net6.0/Application.dll and b/Gateway/bin/Debug/net6.0/Application.dll differ diff --git a/Gateway/bin/Debug/net6.0/Application.pdb b/Gateway/bin/Debug/net6.0/Application.pdb index 9b9543d..7956602 100644 Binary files a/Gateway/bin/Debug/net6.0/Application.pdb and b/Gateway/bin/Debug/net6.0/Application.pdb differ diff --git a/Gateway/bin/Debug/net6.0/Domain.dll b/Gateway/bin/Debug/net6.0/Domain.dll index a953c37..e699991 100644 Binary files a/Gateway/bin/Debug/net6.0/Domain.dll and b/Gateway/bin/Debug/net6.0/Domain.dll differ diff --git a/Gateway/bin/Debug/net6.0/Domain.pdb b/Gateway/bin/Debug/net6.0/Domain.pdb index 1b8898a..bd9ae1e 100644 Binary files a/Gateway/bin/Debug/net6.0/Domain.pdb and b/Gateway/bin/Debug/net6.0/Domain.pdb differ diff --git a/Gateway/bin/Debug/net6.0/Gateway.deps.json b/Gateway/bin/Debug/net6.0/Gateway.deps.json index 967be9d..690754f 100644 --- a/Gateway/bin/Debug/net6.0/Gateway.deps.json +++ b/Gateway/bin/Debug/net6.0/Gateway.deps.json @@ -9,7 +9,8 @@ "Gateway/1.0.0": { "dependencies": { "Application": "1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" }, "runtime": { "Gateway.dll": {} @@ -18,7 +19,7 @@ "Mapster/7.3.0": { "dependencies": { "Mapster.Core": "1.2.0", - "Microsoft.CSharp": "4.3.0", + "Microsoft.CSharp": "4.5.0", "System.Reflection.Emit": "4.3.0" }, "runtime": { @@ -79,26 +80,7 @@ } } }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, + "Microsoft.CSharp/4.5.0": {}, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "dependencies": { "Microsoft.Extensions.Primitives": "6.0.0" @@ -137,45 +119,114 @@ } } }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, - "System.Collections/4.3.0": { + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.Debug/4.3.0": { + "System.Globalization/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Dynamic.Runtime/4.3.0": { + "System.Globalization.Extensions/4.3.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.InteropServices": "4.3.0" } }, - "System.Globalization/4.3.0": { + "System.IdentityModel.Tokens.Jwt/6.19.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } } }, "System.IO/4.3.0": { @@ -195,45 +246,6 @@ } } }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -259,22 +271,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Reflection.Primitives/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -282,12 +278,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -328,6 +318,7 @@ "System.Runtime.Handles": "4.3.0" } }, + "System.Security.Cryptography.Cng/4.5.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -348,6 +339,20 @@ "System.Runtime": "4.3.0" } }, + "Twilio/5.81.2": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": { + "assemblyVersion": "5.81.2.0", + "fileVersion": "5.81.2.0" + } + } + }, "Application/1.0.0": { "dependencies": { "Domain": "1.0.0", @@ -416,12 +421,12 @@ "path": "microsoft.aspnetcore.http.features/5.0.17", "hashPath": "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512" }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" }, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { "type": "package", @@ -451,6 +456,34 @@ "path": "microsoft.extensions.primitives/6.0.0", "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "hashPath": "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "path": "microsoft.identitymodel.logging/6.19.0", + "hashPath": "microsoft.identitymodel.logging.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "path": "microsoft.identitymodel.tokens/6.19.0", + "hashPath": "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -465,12 +498,26 @@ "path": "microsoft.netcore.targets/1.1.0", "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" }, - "System.Collections/4.3.0": { + "Newtonsoft.Json/13.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" }, "System.Diagnostics.Debug/4.3.0": { "type": "package", @@ -479,13 +526,6 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -493,6 +533,20 @@ "path": "system.globalization/4.3.0", "hashPath": "system.globalization.4.3.0.nupkg.sha512" }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "hashPath": "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512" + }, "System.IO/4.3.0": { "type": "package", "serviceable": true, @@ -507,27 +561,6 @@ "path": "system.io.pipelines/5.0.2", "hashPath": "system.io.pipelines.5.0.2.nupkg.sha512" }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, @@ -549,20 +582,6 @@ "path": "system.reflection.emit.ilgeneration/4.3.0", "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -570,13 +589,6 @@ "path": "system.reflection.primitives/4.3.0", "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, "System.Resources.ResourceManager/4.3.0": { "type": "package", "serviceable": true, @@ -619,6 +631,13 @@ "path": "system.runtime.interopservices/4.3.0", "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, @@ -640,6 +659,13 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, + "Twilio/5.81.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "path": "twilio/5.81.2", + "hashPath": "twilio.5.81.2.nupkg.sha512" + }, "Application/1.0.0": { "type": "project", "serviceable": false, diff --git a/Gateway/bin/Debug/net6.0/Gateway.dll b/Gateway/bin/Debug/net6.0/Gateway.dll index 1192fac..ae7ece1 100644 Binary files a/Gateway/bin/Debug/net6.0/Gateway.dll and b/Gateway/bin/Debug/net6.0/Gateway.dll differ diff --git a/Gateway/bin/Debug/net6.0/Gateway.pdb b/Gateway/bin/Debug/net6.0/Gateway.pdb index 7eee54e..67b8a8d 100644 Binary files a/Gateway/bin/Debug/net6.0/Gateway.pdb and b/Gateway/bin/Debug/net6.0/Gateway.pdb differ diff --git a/Gateway/obj/Debug/net6.0/Gateway.AssemblyInfo.cs b/Gateway/obj/Debug/net6.0/Gateway.AssemblyInfo.cs index d03ae12..e7732ca 100644 --- a/Gateway/obj/Debug/net6.0/Gateway.AssemblyInfo.cs +++ b/Gateway/obj/Debug/net6.0/Gateway.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/Gateway/obj/Debug/net6.0/Gateway.GeneratedMSBuildEditorConfig.editorconfig b/Gateway/obj/Debug/net6.0/Gateway.GeneratedMSBuildEditorConfig.editorconfig index 8b4afc5..078ec55 100644 --- a/Gateway/obj/Debug/net6.0/Gateway.GeneratedMSBuildEditorConfig.editorconfig +++ b/Gateway/obj/Debug/net6.0/Gateway.GeneratedMSBuildEditorConfig.editorconfig @@ -7,4 +7,4 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Gateway -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\Gateway\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\ diff --git a/Gateway/obj/Debug/net6.0/Gateway.assets.cache b/Gateway/obj/Debug/net6.0/Gateway.assets.cache index d17c313..a9d0388 100644 Binary files a/Gateway/obj/Debug/net6.0/Gateway.assets.cache and b/Gateway/obj/Debug/net6.0/Gateway.assets.cache differ diff --git a/Gateway/obj/Debug/net6.0/Gateway.csproj.AssemblyReference.cache b/Gateway/obj/Debug/net6.0/Gateway.csproj.AssemblyReference.cache index 1d3877f..eeb3a59 100644 Binary files a/Gateway/obj/Debug/net6.0/Gateway.csproj.AssemblyReference.cache and b/Gateway/obj/Debug/net6.0/Gateway.csproj.AssemblyReference.cache differ diff --git a/Gateway/obj/Debug/net6.0/Gateway.csproj.CoreCompileInputs.cache b/Gateway/obj/Debug/net6.0/Gateway.csproj.CoreCompileInputs.cache index c66301f..95715eb 100644 --- a/Gateway/obj/Debug/net6.0/Gateway.csproj.CoreCompileInputs.cache +++ b/Gateway/obj/Debug/net6.0/Gateway.csproj.CoreCompileInputs.cache @@ -1,5 +1 @@ -<<<<<<< HEAD -e5e7724ae980ee5dfd92fa7373e3aff7fab79d34 -======= -ae26700f4359f7a2ec0c89a455716ccb789bca8c ->>>>>>> c0d6bcf55d26d6de98fb96417bfd34c39c20abb2 +e713e73d83ecbdf127c8e2494f91676d541c4330 diff --git a/Gateway/obj/Debug/net6.0/Gateway.csproj.FileListAbsolute.txt b/Gateway/obj/Debug/net6.0/Gateway.csproj.FileListAbsolute.txt index 40d8f94..62f5d4c 100644 --- a/Gateway/obj/Debug/net6.0/Gateway.csproj.FileListAbsolute.txt +++ b/Gateway/obj/Debug/net6.0/Gateway.csproj.FileListAbsolute.txt @@ -60,3 +60,20 @@ c:\Users\user\Desktop\Extern\new\AARR-Backend\Gateway\obj\Debug\net6.0\refint\Ga c:\Users\user\Desktop\Extern\new\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.pdb c:\Users\user\Desktop\Extern\new\AARR-Backend\Gateway\obj\Debug\net6.0\ref\Gateway.dll >>>>>>> c0d6bcf55d26d6de98fb96417bfd34c39c20abb2 +C:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Gateway.deps.json +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Gateway.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Gateway.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Application.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Domain.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Application.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\bin\Debug\net6.0\Domain.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.csproj.AssemblyReference.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.GeneratedMSBuildEditorConfig.editorconfig +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.AssemblyInfoInputs.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.AssemblyInfo.cs +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.csproj.CoreCompileInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.csproj.CopyComplete +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\refint\Gateway.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\Gateway.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\Gateway\obj\Debug\net6.0\ref\Gateway.dll diff --git a/Gateway/obj/Debug/net6.0/Gateway.dll b/Gateway/obj/Debug/net6.0/Gateway.dll index 1192fac..ae7ece1 100644 Binary files a/Gateway/obj/Debug/net6.0/Gateway.dll and b/Gateway/obj/Debug/net6.0/Gateway.dll differ diff --git a/Gateway/obj/Debug/net6.0/Gateway.pdb b/Gateway/obj/Debug/net6.0/Gateway.pdb index 7eee54e..67b8a8d 100644 Binary files a/Gateway/obj/Debug/net6.0/Gateway.pdb and b/Gateway/obj/Debug/net6.0/Gateway.pdb differ diff --git a/Gateway/obj/Debug/net6.0/ref/Gateway.dll b/Gateway/obj/Debug/net6.0/ref/Gateway.dll index 3a98d59..fc2c591 100644 Binary files a/Gateway/obj/Debug/net6.0/ref/Gateway.dll and b/Gateway/obj/Debug/net6.0/ref/Gateway.dll differ diff --git a/Gateway/obj/Debug/net6.0/refint/Gateway.dll b/Gateway/obj/Debug/net6.0/refint/Gateway.dll new file mode 100644 index 0000000..fc2c591 Binary files /dev/null and b/Gateway/obj/Debug/net6.0/refint/Gateway.dll differ diff --git a/Gateway/obj/Gateway.csproj.nuget.dgspec.json b/Gateway/obj/Gateway.csproj.nuget.dgspec.json index c2bc797..35bd0c5 100644 --- a/Gateway/obj/Gateway.csproj.nuget.dgspec.json +++ b/Gateway/obj/Gateway.csproj.nuget.dgspec.json @@ -1,33 +1,35 @@ { "format": 1, "restore": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": {} + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": {} }, "projects": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" } } } @@ -69,8 +71,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -79,26 +80,28 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -122,8 +125,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -132,34 +134,36 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "projectName": "Gateway", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" } } } @@ -177,6 +181,10 @@ "Microsoft.Extensions.Configuration.Abstractions": { "target": "Package", "version": "[6.0.0, )" + }, + "Twilio": { + "target": "Package", + "version": "[5.81.2, )" } }, "imports": [ @@ -185,8 +193,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -195,7 +202,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/Gateway/obj/Gateway.csproj.nuget.g.props b/Gateway/obj/Gateway.csproj.nuget.g.props index 7085e81..0779fa9 100644 --- a/Gateway/obj/Gateway.csproj.nuget.g.props +++ b/Gateway/obj/Gateway.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\user\.nuget\packages\ PackageReference - 6.3.1 + 6.2.0 diff --git a/Gateway/obj/project.assets.json b/Gateway/obj/project.assets.json index 50b091e..d70c71b 100644 --- a/Gateway/obj/project.assets.json +++ b/Gateway/obj/project.assets.json @@ -31,27 +31,19 @@ "MediatR.Contracts": "1.0.1" }, "compile": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} }, "runtime": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} } }, "MediatR.Contracts/1.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} }, "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} } }, "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { @@ -74,43 +66,19 @@ "System.IO.Pipelines": "5.0.2" }, "compile": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} }, "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/_._": {} }, "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} + "lib/netcoreapp2.0/_._": {} } }, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { @@ -119,27 +87,19 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -148,14 +108,10 @@ "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -167,19 +123,62 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} } }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { @@ -198,60 +197,51 @@ "lib/netstandard1.0/_._": {} } }, - "System.Collections/4.3.0": { + "Newtonsoft.Json/13.0.1": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "System.Diagnostics.Debug/4.3.0": { + "System.Collections.NonGeneric/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} } }, - "System.Dynamic.Runtime/4.3.0": { + "System.Collections.Specialized/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Collections.Specialized.dll": {} }, "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + "lib/netstandard1.3/System.Collections.Specialized.dll": {} } }, - "System.Globalization/4.3.0": { + "System.Diagnostics.Debug/4.3.0": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -259,103 +249,77 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, - "System.IO/4.3.0": { + "System.Globalization/4.3.0": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, - "System.IO.Pipelines/5.0.2": { + "System.Globalization.Extensions/4.3.0": { "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, "compile": { - "ref/netcoreapp2.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, - "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "related": ".xml" + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" } } }, - "System.Linq/4.3.0": { + "System.IdentityModel.Tokens.Jwt/6.19.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" }, "compile": { - "ref/netstandard1.6/_._": { - "related": ".xml" - } + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} }, "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} } }, - "System.Linq.Expressions/4.3.0": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} + "ref/netstandard1.5/System.IO.dll": {} } }, - "System.ObjectModel/4.3.0": { + "System.IO.Pipelines/5.0.2": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} + "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} } }, "System.Reflection/4.3.0": { @@ -368,9 +332,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Reflection.dll": {} } }, "System.Reflection.Emit/4.3.0": { @@ -383,9 +345,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/netstandard1.1/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.dll": {} @@ -399,45 +359,12 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { @@ -446,24 +373,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, "System.Resources.ResourceManager/4.3.0": { @@ -476,9 +386,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} } }, "System.Runtime/4.3.0": { @@ -488,22 +396,16 @@ "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Runtime.dll": {} } }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -517,9 +419,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } + "ref/netstandard1.5/_._": {} } }, "System.Runtime.Handles/4.3.0": { @@ -530,9 +430,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Runtime.InteropServices/4.3.0": { @@ -549,6 +447,21 @@ "ref/netcoreapp1.1/_._": {} } }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { @@ -557,9 +470,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Text.Encoding.dll": {} } }, "System.Threading/4.3.0": { @@ -569,9 +480,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { "lib/netstandard1.3/System.Threading.dll": {} @@ -585,9 +494,22 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "Twilio/5.81.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Twilio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": {} } }, "Application/1.0.0": { @@ -713,21 +635,24 @@ "microsoft.aspnetcore.http.features.nuspec" ] }, - "Microsoft.CSharp/4.3.0": { - "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", "type": "package", - "path": "microsoft.csharp/4.3.0", + "path": "microsoft.csharp/4.5.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", @@ -735,7 +660,7 @@ "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.4.5.0.nupkg.sha512", "microsoft.csharp.nuspec", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", @@ -751,6 +676,7 @@ "ref/netcore50/ru/Microsoft.CSharp.xml", "ref/netcore50/zh-hans/Microsoft.CSharp.xml", "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", "ref/netstandard1.0/Microsoft.CSharp.dll", "ref/netstandard1.0/Microsoft.CSharp.xml", "ref/netstandard1.0/de/Microsoft.CSharp.xml", @@ -762,14 +688,19 @@ "ref/netstandard1.0/ru/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" ] }, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { @@ -893,6 +824,82 @@ "useSharedDesignerContext.txt" ] }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "sha512": "SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "sha512": "PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "sha512": "773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "sha512": "kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, "Microsoft.NETCore.Platforms/1.1.0": { "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", @@ -923,10 +930,37 @@ "runtime.json" ] }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", "type": "package", - "path": "system.collections/4.3.0", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -934,61 +968,71 @@ "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" ] }, "System.Diagnostics.Debug/4.3.0": { @@ -1059,77 +1103,6 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -1198,6 +1171,66 @@ "system.globalization.nuspec" ] }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "sha512": "iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, "System.IO/4.3.0": { "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", "type": "package", @@ -1305,232 +1338,6 @@ "version.txt" ] }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, "System.Reflection/4.3.0": { "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", @@ -1693,108 +1500,6 @@ "system.reflection.emit.ilgeneration.nuspec" ] }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, "System.Reflection.Primitives/4.3.0": { "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", "type": "package", @@ -1852,60 +1557,6 @@ "system.reflection.primitives.nuspec" ] }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, "System.Resources.ResourceManager/4.3.0": { "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", "type": "package", @@ -2292,6 +1943,69 @@ "system.runtime.interopservices.nuspec" ] }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding/4.3.0": { "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", @@ -2499,6 +2213,25 @@ "system.threading.tasks.nuspec" ] }, + "Twilio/5.81.2": { + "sha512": "mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "type": "package", + "path": "twilio/5.81.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/Twilio.dll", + "lib/net35/Twilio.xml", + "lib/net451/Twilio.dll", + "lib/net451/Twilio.xml", + "lib/netstandard1.4/Twilio.dll", + "lib/netstandard1.4/Twilio.xml", + "lib/netstandard2.0/Twilio.dll", + "lib/netstandard2.0/Twilio.xml", + "twilio.5.81.2.nupkg.sha512", + "twilio.nuspec" + ] + }, "Application/1.0.0": { "type": "project", "path": "../Application/Application.csproj", @@ -2513,7 +2246,8 @@ "projectFileDependencyGroups": { "net6.0": [ "Application >= 1.0.0", - "Microsoft.Extensions.Configuration.Abstractions >= 6.0.0" + "Microsoft.Extensions.Configuration.Abstractions >= 6.0.0", + "Twilio >= 5.81.2" ] }, "packageFolders": { @@ -2522,27 +2256,29 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectUniqueName": "c:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "projectName": "Gateway", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectPath": "c:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\", + "outputPath": "c:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" } } } @@ -2560,6 +2296,10 @@ "Microsoft.Extensions.Configuration.Abstractions": { "target": "Package", "version": "[6.0.0, )" + }, + "Twilio": { + "target": "Package", + "version": "[5.81.2, )" } }, "imports": [ @@ -2568,8 +2308,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -2578,16 +2317,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + } } \ No newline at end of file diff --git a/Gateway/obj/project.nuget.cache b/Gateway/obj/project.nuget.cache index ee0a1db..407ef3c 100644 --- a/Gateway/obj/project.nuget.cache +++ b/Gateway/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "MHf/mEp1P0shYBFbNcHBr5HSI4Jon1gQHslm33T//fbJH5w7f3ETRNYpqfx5QrDS4K0AH8M9EKNSoy9x5MTr0A==", + "dgSpecHash": "eNJWudDHZgcKWfPN+jB/pVHx6SZlTaJMvwOfXm1B8lMO3W4LLj0WFpBnWfpuQJyZcnXV18ivH6d30HQeA6dlVg==", "success": true, - "projectFilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "expectedPackageFiles": [ "C:\\Users\\user\\.nuget\\packages\\mapster\\7.3.0\\mapster.7.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", @@ -10,45 +10,41 @@ "C:\\Users\\user\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.1\\microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.19.0\\microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.19.0\\microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.logging\\6.19.0\\microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.19.0\\microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.19.0\\system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512" + "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\twilio\\5.81.2\\twilio.5.81.2.nupkg.sha512" ], - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + "logs": [] } \ No newline at end of file diff --git a/IOC/bin/Debug/net6.0/Application.dll b/IOC/bin/Debug/net6.0/Application.dll index e0ecaf0..ff4b47b 100644 Binary files a/IOC/bin/Debug/net6.0/Application.dll and b/IOC/bin/Debug/net6.0/Application.dll differ diff --git a/IOC/bin/Debug/net6.0/Application.pdb b/IOC/bin/Debug/net6.0/Application.pdb index 9b9543d..7956602 100644 Binary files a/IOC/bin/Debug/net6.0/Application.pdb and b/IOC/bin/Debug/net6.0/Application.pdb differ diff --git a/IOC/bin/Debug/net6.0/Domain.dll b/IOC/bin/Debug/net6.0/Domain.dll index a953c37..e699991 100644 Binary files a/IOC/bin/Debug/net6.0/Domain.dll and b/IOC/bin/Debug/net6.0/Domain.dll differ diff --git a/IOC/bin/Debug/net6.0/Domain.pdb b/IOC/bin/Debug/net6.0/Domain.pdb index 1b8898a..bd9ae1e 100644 Binary files a/IOC/bin/Debug/net6.0/Domain.pdb and b/IOC/bin/Debug/net6.0/Domain.pdb differ diff --git a/IOC/bin/Debug/net6.0/Gateway.dll b/IOC/bin/Debug/net6.0/Gateway.dll index 1192fac..ae7ece1 100644 Binary files a/IOC/bin/Debug/net6.0/Gateway.dll and b/IOC/bin/Debug/net6.0/Gateway.dll differ diff --git a/IOC/bin/Debug/net6.0/Gateway.pdb b/IOC/bin/Debug/net6.0/Gateway.pdb index 7eee54e..67b8a8d 100644 Binary files a/IOC/bin/Debug/net6.0/Gateway.pdb and b/IOC/bin/Debug/net6.0/Gateway.pdb differ diff --git a/IOC/bin/Debug/net6.0/IOC.deps.json b/IOC/bin/Debug/net6.0/IOC.deps.json index e286f6f..21a1387 100644 --- a/IOC/bin/Debug/net6.0/IOC.deps.json +++ b/IOC/bin/Debug/net6.0/IOC.deps.json @@ -19,7 +19,7 @@ "Mapster/7.3.0": { "dependencies": { "Mapster.Core": "1.2.0", - "Microsoft.CSharp": "4.3.0", + "Microsoft.CSharp": "4.5.0", "System.Reflection.Emit": "4.3.0" }, "runtime": { @@ -80,26 +80,7 @@ } } }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, + "Microsoft.CSharp/4.5.0": {}, "Microsoft.EntityFrameworkCore/6.0.7": { "dependencies": { "Microsoft.EntityFrameworkCore.Abstractions": "6.0.7", @@ -241,6 +222,49 @@ } } }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "MySqlConnector/2.1.2": { @@ -251,6 +275,14 @@ } } }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, "Pomelo.EntityFrameworkCore.MySql/6.0.2": { "dependencies": { "Microsoft.EntityFrameworkCore.Relational": "6.0.7", @@ -264,16 +296,30 @@ } } }, - "System.Collections/4.3.0": { + "System.Collections.Immutable/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.Collections.Immutable/6.0.0": { + "System.Collections.NonGeneric/4.3.0": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" } }, "System.Diagnostics.Debug/4.3.0": { @@ -288,29 +334,33 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.Dynamic.Runtime/4.3.0": { + "System.Globalization/4.3.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.InteropServices": "4.3.0" } }, - "System.Globalization/4.3.0": { + "System.IdentityModel.Tokens.Jwt/6.19.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } } }, "System.IO/4.3.0": { @@ -330,45 +380,6 @@ } } }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -394,22 +405,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Reflection.Primitives/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -417,12 +412,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -463,6 +452,7 @@ "System.Runtime.Handles": "4.3.0" } }, + "System.Security.Cryptography.Cng/4.5.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -483,6 +473,20 @@ "System.Runtime": "4.3.0" } }, + "Twilio/5.81.2": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": { + "assemblyVersion": "5.81.2.0", + "fileVersion": "5.81.2.0" + } + } + }, "Application/1.0.0": { "dependencies": { "Domain": "1.0.0", @@ -504,7 +508,8 @@ "Gateway/1.0.0": { "dependencies": { "Application": "1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" }, "runtime": { "Gateway.dll": {} @@ -515,6 +520,8 @@ "Application": "1.0.0", "Domain": "1.0.0", "Gateway": "1.0.0", + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", "Pomelo.EntityFrameworkCore.MySql": "6.0.2" }, "runtime": { @@ -571,12 +578,12 @@ "path": "microsoft.aspnetcore.http.features/5.0.17", "hashPath": "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512" }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" }, "Microsoft.EntityFrameworkCore/6.0.7": { "type": "package", @@ -669,6 +676,34 @@ "path": "microsoft.extensions.primitives/6.0.0", "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "hashPath": "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "path": "microsoft.identitymodel.logging/6.19.0", + "hashPath": "microsoft.identitymodel.logging.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "path": "microsoft.identitymodel.tokens/6.19.0", + "hashPath": "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -690,6 +725,13 @@ "path": "mysqlconnector/2.1.2", "hashPath": "mysqlconnector.2.1.2.nupkg.sha512" }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, "Pomelo.EntityFrameworkCore.MySql/6.0.2": { "type": "package", "serviceable": true, @@ -697,13 +739,6 @@ "path": "pomelo.entityframeworkcore.mysql/6.0.2", "hashPath": "pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512" }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, "System.Collections.Immutable/6.0.0": { "type": "package", "serviceable": true, @@ -711,6 +746,20 @@ "path": "system.collections.immutable/6.0.0", "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -725,13 +774,6 @@ "path": "system.diagnostics.diagnosticsource/6.0.0", "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -739,6 +781,20 @@ "path": "system.globalization/4.3.0", "hashPath": "system.globalization.4.3.0.nupkg.sha512" }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "hashPath": "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512" + }, "System.IO/4.3.0": { "type": "package", "serviceable": true, @@ -753,27 +809,6 @@ "path": "system.io.pipelines/5.0.2", "hashPath": "system.io.pipelines.5.0.2.nupkg.sha512" }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, @@ -795,20 +830,6 @@ "path": "system.reflection.emit.ilgeneration/4.3.0", "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -816,13 +837,6 @@ "path": "system.reflection.primitives/4.3.0", "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, "System.Resources.ResourceManager/4.3.0": { "type": "package", "serviceable": true, @@ -865,6 +879,13 @@ "path": "system.runtime.interopservices/4.3.0", "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, @@ -886,6 +907,13 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, + "Twilio/5.81.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "path": "twilio/5.81.2", + "hashPath": "twilio.5.81.2.nupkg.sha512" + }, "Application/1.0.0": { "type": "project", "serviceable": false, diff --git a/IOC/bin/Debug/net6.0/IOC.dll b/IOC/bin/Debug/net6.0/IOC.dll index a9dfb38..43439bb 100644 Binary files a/IOC/bin/Debug/net6.0/IOC.dll and b/IOC/bin/Debug/net6.0/IOC.dll differ diff --git a/IOC/bin/Debug/net6.0/IOC.pdb b/IOC/bin/Debug/net6.0/IOC.pdb index 332bbfb..89bba1e 100644 Binary files a/IOC/bin/Debug/net6.0/IOC.pdb and b/IOC/bin/Debug/net6.0/IOC.pdb differ diff --git a/IOC/bin/Debug/net6.0/Persistence.dll b/IOC/bin/Debug/net6.0/Persistence.dll index 57e37e3..97b49ac 100644 Binary files a/IOC/bin/Debug/net6.0/Persistence.dll and b/IOC/bin/Debug/net6.0/Persistence.dll differ diff --git a/IOC/bin/Debug/net6.0/Persistence.pdb b/IOC/bin/Debug/net6.0/Persistence.pdb index 58145b0..25cb85d 100644 Binary files a/IOC/bin/Debug/net6.0/Persistence.pdb and b/IOC/bin/Debug/net6.0/Persistence.pdb differ diff --git a/IOC/obj/Debug/net6.0/IOC.AssemblyInfo.cs b/IOC/obj/Debug/net6.0/IOC.AssemblyInfo.cs index 193fa45..a5bf50c 100644 --- a/IOC/obj/Debug/net6.0/IOC.AssemblyInfo.cs +++ b/IOC/obj/Debug/net6.0/IOC.AssemblyInfo.cs @@ -1,7 +1,6 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/IOC/obj/Debug/net6.0/IOC.GeneratedMSBuildEditorConfig.editorconfig b/IOC/obj/Debug/net6.0/IOC.GeneratedMSBuildEditorConfig.editorconfig index 88215a4..c08a24a 100644 --- a/IOC/obj/Debug/net6.0/IOC.GeneratedMSBuildEditorConfig.editorconfig +++ b/IOC/obj/Debug/net6.0/IOC.GeneratedMSBuildEditorConfig.editorconfig @@ -7,4 +7,4 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = IOC -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\IOC\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\IOC\ diff --git a/IOC/obj/Debug/net6.0/IOC.assets.cache b/IOC/obj/Debug/net6.0/IOC.assets.cache index a2fa592..7ed8412 100644 Binary files a/IOC/obj/Debug/net6.0/IOC.assets.cache and b/IOC/obj/Debug/net6.0/IOC.assets.cache differ diff --git a/IOC/obj/Debug/net6.0/IOC.csproj.AssemblyReference.cache b/IOC/obj/Debug/net6.0/IOC.csproj.AssemblyReference.cache index 09415a7..f1b8cf3 100644 Binary files a/IOC/obj/Debug/net6.0/IOC.csproj.AssemblyReference.cache and b/IOC/obj/Debug/net6.0/IOC.csproj.AssemblyReference.cache differ diff --git a/IOC/obj/Debug/net6.0/IOC.csproj.CoreCompileInputs.cache b/IOC/obj/Debug/net6.0/IOC.csproj.CoreCompileInputs.cache index cf874ce..7fe3a85 100644 --- a/IOC/obj/Debug/net6.0/IOC.csproj.CoreCompileInputs.cache +++ b/IOC/obj/Debug/net6.0/IOC.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -4eb47d32e31715f39ee5a1dd4355307cb46c0f8e +d064cd99423fd6e46670d014200b88b1daf2d362 diff --git a/IOC/obj/Debug/net6.0/IOC.csproj.FileListAbsolute.txt b/IOC/obj/Debug/net6.0/IOC.csproj.FileListAbsolute.txt index e6aea55..a1e4ce4 100644 --- a/IOC/obj/Debug/net6.0/IOC.csproj.FileListAbsolute.txt +++ b/IOC/obj/Debug/net6.0/IOC.csproj.FileListAbsolute.txt @@ -61,3 +61,24 @@ c:\Users\user\Desktop\Extern\new\AARR-Backend\IOC\obj\Debug\net6.0\IOC.dll c:\Users\user\Desktop\Extern\new\AARR-Backend\IOC\obj\Debug\net6.0\refint\IOC.dll c:\Users\user\Desktop\Extern\new\AARR-Backend\IOC\obj\Debug\net6.0\IOC.pdb c:\Users\user\Desktop\Extern\new\AARR-Backend\IOC\obj\Debug\net6.0\ref\IOC.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\IOC.deps.json +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\IOC.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\IOC.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Application.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Domain.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Gateway.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Persistence.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Persistence.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Application.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Domain.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\bin\Debug\net6.0\Gateway.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.csproj.AssemblyReference.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.GeneratedMSBuildEditorConfig.editorconfig +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.AssemblyInfoInputs.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.AssemblyInfo.cs +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.csproj.CoreCompileInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.csproj.CopyComplete +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\refint\IOC.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\IOC.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\IOC\obj\Debug\net6.0\ref\IOC.dll diff --git a/IOC/obj/Debug/net6.0/IOC.dll b/IOC/obj/Debug/net6.0/IOC.dll index a9dfb38..43439bb 100644 Binary files a/IOC/obj/Debug/net6.0/IOC.dll and b/IOC/obj/Debug/net6.0/IOC.dll differ diff --git a/IOC/obj/Debug/net6.0/IOC.pdb b/IOC/obj/Debug/net6.0/IOC.pdb index 332bbfb..89bba1e 100644 Binary files a/IOC/obj/Debug/net6.0/IOC.pdb and b/IOC/obj/Debug/net6.0/IOC.pdb differ diff --git a/IOC/obj/Debug/net6.0/ref/IOC.dll b/IOC/obj/Debug/net6.0/ref/IOC.dll index 92af022..6b35a47 100644 Binary files a/IOC/obj/Debug/net6.0/ref/IOC.dll and b/IOC/obj/Debug/net6.0/ref/IOC.dll differ diff --git a/IOC/obj/Debug/net6.0/refint/IOC.dll b/IOC/obj/Debug/net6.0/refint/IOC.dll index 92af022..6b35a47 100644 Binary files a/IOC/obj/Debug/net6.0/refint/IOC.dll and b/IOC/obj/Debug/net6.0/refint/IOC.dll differ diff --git a/IOC/obj/IOC.csproj.nuget.dgspec.json b/IOC/obj/IOC.csproj.nuget.dgspec.json index 3c01259..dac77a9 100644 --- a/IOC/obj/IOC.csproj.nuget.dgspec.json +++ b/IOC/obj/IOC.csproj.nuget.dgspec.json @@ -1,33 +1,35 @@ { "format": 1, "restore": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj": {} + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj": {} }, "projects": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" } } } @@ -69,8 +71,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -79,26 +80,28 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -122,8 +125,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -132,34 +134,36 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "projectName": "Gateway", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" } } } @@ -177,6 +181,10 @@ "Microsoft.Extensions.Configuration.Abstractions": { "target": "Package", "version": "[6.0.0, )" + }, + "Twilio": { + "target": "Package", + "version": "[5.81.2, )" } }, "imports": [ @@ -185,8 +193,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -195,34 +202,36 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "projectName": "IOC", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj" } } } @@ -252,8 +261,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -262,40 +270,42 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", "projectName": "Persistence", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj" } } } @@ -310,6 +320,14 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.7, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, "Pomelo.EntityFrameworkCore.MySql": { "target": "Package", "version": "[6.0.2, )" @@ -321,8 +339,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -331,7 +348,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/IOC/obj/IOC.csproj.nuget.g.props b/IOC/obj/IOC.csproj.nuget.g.props index 24b9da6..6908180 100644 --- a/IOC/obj/IOC.csproj.nuget.g.props +++ b/IOC/obj/IOC.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\user\.nuget\packages\ PackageReference - 6.3.1 + 6.2.0 diff --git a/IOC/obj/project.assets.json b/IOC/obj/project.assets.json index ce0b0a7..75b806d 100644 --- a/IOC/obj/project.assets.json +++ b/IOC/obj/project.assets.json @@ -31,27 +31,19 @@ "MediatR.Contracts": "1.0.1" }, "compile": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} }, "runtime": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} } }, "MediatR.Contracts/1.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} }, "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} } }, "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { @@ -74,43 +66,19 @@ "System.IO.Pipelines": "5.0.2" }, "compile": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} }, "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/_._": {} }, "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} + "lib/netcoreapp2.0/_._": {} } }, "Microsoft.EntityFrameworkCore/6.0.7": { @@ -125,14 +93,10 @@ "System.Diagnostics.DiagnosticSource": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} }, "build": { "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} @@ -141,14 +105,10 @@ "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { "type": "package", "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} } }, "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": { @@ -167,14 +127,10 @@ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} } }, "Microsoft.Extensions.Caching.Abstractions/6.0.0": { @@ -183,14 +139,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} } }, "Microsoft.Extensions.Caching.Memory/6.0.1": { @@ -203,14 +155,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} } }, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { @@ -219,14 +167,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, "Microsoft.Extensions.DependencyInjection/6.0.0": { @@ -236,14 +180,10 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -252,14 +192,10 @@ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -275,27 +211,19 @@ "System.Diagnostics.DiagnosticSource": "6.0.0" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} } }, "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -308,14 +236,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} } }, "Microsoft.Extensions.Primitives/6.0.0": { @@ -324,264 +248,256 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} } }, - "Microsoft.NETCore.Platforms/1.1.0": { + "Microsoft.IdentityModel.Abstractions/6.19.0": { "type": "package", "compile": { - "lib/netstandard1.0/_._": {} + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} }, "runtime": { - "lib/netstandard1.0/_._": {} + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} } }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, "compile": { - "lib/netstandard1.0/_._": {} + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} }, "runtime": { - "lib/netstandard1.0/_._": {} + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} } }, - "MySqlConnector/2.1.2": { + "Microsoft.IdentityModel.Logging/6.19.0": { "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, "compile": { - "lib/net6.0/MySqlConnector.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} }, "runtime": { - "lib/net6.0/MySqlConnector.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} } }, - "Pomelo.EntityFrameworkCore.MySql/6.0.2": { + "Microsoft.IdentityModel.Tokens/6.19.0": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "[6.0.7, 7.0.0)", - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "MySqlConnector": "2.1.2" + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" }, "compile": { - "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} }, "runtime": { - "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} } }, - "System.Collections/4.3.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} } }, - "System.Collections.Immutable/6.0.0": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "compile": { + "lib/netstandard1.0/_._": {} }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "MySqlConnector/2.1.2": { + "type": "package", "compile": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/net6.0/MySqlConnector.dll": {} }, "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/net6.0/MySqlConnector.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "System.Diagnostics.Debug/4.3.0": { + "Pomelo.EntityFrameworkCore.MySql/6.0.2": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "Microsoft.EntityFrameworkCore.Relational": "[6.0.7, 7.0.0)", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "MySqlConnector": "2.1.2" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} } }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Collections.Immutable/6.0.0": { "type": "package", "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } + "lib/net6.0/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } + "lib/net6.0/System.Collections.Immutable.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} } }, - "System.Dynamic.Runtime/4.3.0": { + "System.Collections.NonGeneric/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", + "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} } }, - "System.Globalization/4.3.0": { + "System.Collections.Specialized/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} } }, - "System.IO/4.3.0": { + "System.Diagnostics.Debug/4.3.0": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, - "System.IO.Pipelines/5.0.2": { + "System.Diagnostics.DiagnosticSource/6.0.0": { "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "compile": { - "ref/netcoreapp2.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, - "System.Linq/4.3.0": { + "System.Globalization/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.6/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} + "ref/netstandard1.3/_._": {} } }, - "System.Linq.Expressions/4.3.0": { + "System.Globalization.Extensions/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.InteropServices": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" } + } + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} }, "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} } }, - "System.ObjectModel/4.3.0": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Pipelines/5.0.2": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} + "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} } }, "System.Reflection/4.3.0": { @@ -594,9 +510,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Reflection.dll": {} } }, "System.Reflection.Emit/4.3.0": { @@ -609,9 +523,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/netstandard1.1/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.dll": {} @@ -625,45 +537,12 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { @@ -672,24 +551,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, "System.Resources.ResourceManager/4.3.0": { @@ -702,9 +564,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} } }, "System.Runtime/4.3.0": { @@ -714,22 +574,16 @@ "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Runtime.dll": {} } }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -743,9 +597,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } + "ref/netstandard1.5/_._": {} } }, "System.Runtime.Handles/4.3.0": { @@ -756,9 +608,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Runtime.InteropServices/4.3.0": { @@ -775,6 +625,21 @@ "ref/netcoreapp1.1/_._": {} } }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { @@ -783,9 +648,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Text.Encoding.dll": {} } }, "System.Threading/4.3.0": { @@ -795,9 +658,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { "lib/netstandard1.3/System.Threading.dll": {} @@ -811,9 +672,22 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "Twilio/5.81.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Twilio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": {} } }, "Application/1.0.0": { @@ -849,7 +723,8 @@ "framework": ".NETCoreApp,Version=v6.0", "dependencies": { "Application": "1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" }, "compile": { "bin/placeholder/Gateway.dll": {} @@ -865,6 +740,8 @@ "Application": "1.0.0", "Domain": "1.0.0", "Gateway": "1.0.0", + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", "Pomelo.EntityFrameworkCore.MySql": "6.0.2" }, "compile": { @@ -969,21 +846,24 @@ "microsoft.aspnetcore.http.features.nuspec" ] }, - "Microsoft.CSharp/4.3.0": { - "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", "type": "package", - "path": "microsoft.csharp/4.3.0", + "path": "microsoft.csharp/4.5.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", @@ -991,7 +871,7 @@ "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.4.5.0.nupkg.sha512", "microsoft.csharp.nuspec", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", @@ -1007,6 +887,7 @@ "ref/netcore50/ru/Microsoft.CSharp.xml", "ref/netcore50/zh-hans/Microsoft.CSharp.xml", "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", "ref/netstandard1.0/Microsoft.CSharp.dll", "ref/netstandard1.0/Microsoft.CSharp.xml", "ref/netstandard1.0/de/Microsoft.CSharp.xml", @@ -1018,14 +899,19 @@ "ref/netstandard1.0/ru/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" ] }, "Microsoft.EntityFrameworkCore/6.0.7": { @@ -1311,6 +1197,82 @@ "useSharedDesignerContext.txt" ] }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "sha512": "SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "sha512": "PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "sha512": "773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "sha512": "kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, "Microsoft.NETCore.Platforms/1.1.0": { "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", @@ -1370,6 +1332,33 @@ "mysqlconnector.nuspec" ] }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, "Pomelo.EntityFrameworkCore.MySql/6.0.2": { "sha512": "KvlZ800CnEuEGnxj5OT1fCKGjQXxW5kpPlCP91JqBYG+2Z3927eqXmlX6LLKUt4swqE8ZsEQ+Zkpab8bqstf4g==", "type": "package", @@ -1384,10 +1373,33 @@ "pomelo.entityframeworkcore.mysql.nuspec" ] }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "System.Collections.Immutable/6.0.0": { + "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "type": "package", + "path": "system.collections.immutable/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.6.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", "type": "package", - "path": "system.collections/4.3.0", + "path": "system.collections.nongeneric/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -1395,84 +1407,71 @@ "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" ] }, - "System.Collections.Immutable/6.0.0": { - "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", "type": "package", - "path": "system.collections.immutable/6.0.0", + "path": "system.collections.specialized/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/net6.0/System.Collections.Immutable.dll", - "lib/net6.0/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "system.collections.immutable.6.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt" + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" ] }, "System.Diagnostics.Debug/4.3.0": { @@ -1568,77 +1567,6 @@ "useSharedDesignerContext.txt" ] }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -1707,6 +1635,66 @@ "system.globalization.nuspec" ] }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "sha512": "iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, "System.IO/4.3.0": { "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", "type": "package", @@ -1814,232 +1802,6 @@ "version.txt" ] }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, "System.Reflection/4.3.0": { "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", @@ -2202,108 +1964,6 @@ "system.reflection.emit.ilgeneration.nuspec" ] }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, "System.Reflection.Primitives/4.3.0": { "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", "type": "package", @@ -2361,60 +2021,6 @@ "system.reflection.primitives.nuspec" ] }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, "System.Resources.ResourceManager/4.3.0": { "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", "type": "package", @@ -2801,6 +2407,69 @@ "system.runtime.interopservices.nuspec" ] }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding/4.3.0": { "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", @@ -3008,6 +2677,25 @@ "system.threading.tasks.nuspec" ] }, + "Twilio/5.81.2": { + "sha512": "mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "type": "package", + "path": "twilio/5.81.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/Twilio.dll", + "lib/net35/Twilio.xml", + "lib/net451/Twilio.dll", + "lib/net451/Twilio.xml", + "lib/netstandard1.4/Twilio.dll", + "lib/netstandard1.4/Twilio.xml", + "lib/netstandard2.0/Twilio.dll", + "lib/netstandard2.0/Twilio.xml", + "twilio.5.81.2.nupkg.sha512", + "twilio.nuspec" + ] + }, "Application/1.0.0": { "type": "project", "path": "../Application/Application.csproj", @@ -3042,27 +2730,29 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "projectName": "IOC", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj" } } } @@ -3092,8 +2782,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -3102,16 +2791,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + } } \ No newline at end of file diff --git a/IOC/obj/project.nuget.cache b/IOC/obj/project.nuget.cache index cd43ee8..4f4dadc 100644 --- a/IOC/obj/project.nuget.cache +++ b/IOC/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "xCtVOnq76CwQzfY8i6nweMfZT7T9/aKcsk/ymMK6gczLfRszq0OfisA+9ir14Q3Q5WqpQ1w7UPptOD0pA2UKDA==", + "dgSpecHash": "DdyTXkdpWgju7AWOnDfbU5mVINat92kxP7Kp0YFYgf9NF5PMQCivwfkrnuzdMMwkD5d9Rk3UYgC2SPU3C5ibwA==", "success": true, - "projectFilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "expectedPackageFiles": [ "C:\\Users\\user\\.nuget\\packages\\mapster\\7.3.0\\mapster.7.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", @@ -10,7 +10,7 @@ "C:\\Users\\user\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.7\\microsoft.entityframeworkcore.6.0.7.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.7\\microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.7\\microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", @@ -24,44 +24,40 @@ "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.1\\microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.19.0\\microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.19.0\\microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.logging\\6.19.0\\microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.19.0\\microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\6.0.2\\pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.19.0\\system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512" + "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\twilio\\5.81.2\\twilio.5.81.2.nupkg.sha512" ], - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + "logs": [] } \ No newline at end of file diff --git a/Persistence/Extensions/ServiceCollectionExtension.cs b/Persistence/Extensions/ServiceCollectionExtension.cs index 98dd0b5..63b1ace 100644 --- a/Persistence/Extensions/ServiceCollectionExtension.cs +++ b/Persistence/Extensions/ServiceCollectionExtension.cs @@ -27,12 +27,13 @@ public static IServiceCollection AddRepositories(this IServiceCollection service .AddScoped(typeof(IGenericRepository<>), typeof(GenericRepository<>)); return services; } - public static IServiceCollection AddGateway(this IServiceCollection services) + public static IServiceCollection AddGateway(this IServiceCollection services) { services. AddScoped() .AddScoped() - .AddScoped(); + .AddScoped() + .AddScoped(); return services; } diff --git a/Persistence/Implementation/Repositories/WeatherResponse.cs b/Persistence/Implementation/Repositories/WeatherResponse.cs deleted file mode 100644 index 57254ec..0000000 --- a/Persistence/Implementation/Repositories/WeatherResponse.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.Collections.Generic; - -namespace Persistence.Implementation.Repositories; - -public class WeatherResponse -{ - public List Description{get; set;} - public string FarmName{get;set;} - public string FarmLocation{get; set;} - public string FarmerPhoneNumber{get; set;} -} diff --git a/Persistence/Migrations/20221027135137_AARR.Designer.cs b/Persistence/Migrations/20221027135137_AARR.Designer.cs deleted file mode 100644 index 614a824..0000000 --- a/Persistence/Migrations/20221027135137_AARR.Designer.cs +++ /dev/null @@ -1,141 +0,0 @@ -// -using System; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; -using Persistence.Context; - -#nullable disable - -namespace Persistence.Migrations -{ - [DbContext(typeof(ApplicationContext))] - [Migration("20221027135137_AARR")] - partial class AARR - { - protected override void BuildTargetModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "6.0.7") - .HasAnnotation("Relational:MaxIdentifierLength", 64); - - modelBuilder.Entity("Domain.Entities.Farm", b => - { - b.Property("Id") - .HasColumnType("varchar(255)"); - - b.Property("CreatedBy") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("CreatedOn") - .HasColumnType("datetime(6)"); - - b.Property("CropType") - .HasColumnType("int"); - - b.Property("DeletedBy") - .HasColumnType("longtext"); - - b.Property("DeletedOn") - .HasColumnType("datetime(6)"); - - b.Property("FarmName") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("FarmerId") - .IsRequired() - .HasColumnType("varchar(255)"); - - b.Property("IsDeleted") - .HasColumnType("tinyint(1)"); - - b.Property("LastModifiedBy") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("LastModifiedOn") - .HasColumnType("datetime(6)"); - - b.Property("LocatedCity") - .IsRequired() - .HasColumnType("longtext"); - - b.HasKey("Id"); - - b.HasIndex("FarmerId"); - - b.ToTable("Farms"); - }); - - modelBuilder.Entity("Domain.Entities.Farmer", b => - { - b.Property("Id") - .HasColumnType("varchar(255)"); - - b.Property("CountryCode") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("CreatedBy") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("CreatedOn") - .HasColumnType("datetime(6)"); - - b.Property("DeletedBy") - .HasColumnType("longtext"); - - b.Property("DeletedOn") - .HasColumnType("datetime(6)"); - - b.Property("IsDeleted") - .HasColumnType("tinyint(1)"); - - b.Property("Language") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("LastModifiedBy") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("LastModifiedOn") - .HasColumnType("datetime(6)"); - - b.Property("Name") - .IsRequired() - .HasColumnType("longtext"); - - b.Property("PhoneNumber") - .IsRequired() - .HasColumnType("longtext"); - - b.HasKey("Id"); - - b.ToTable("Farmers"); - }); - - modelBuilder.Entity("Domain.Entities.Farm", b => - { - b.HasOne("Domain.Entities.Farmer", "Farmer") - .WithMany("Farms") - .HasForeignKey("FarmerId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Farmer"); - }); - - modelBuilder.Entity("Domain.Entities.Farmer", b => - { - b.Navigation("Farms"); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/Persistence/Migrations/20221103100342_init.cs b/Persistence/Migrations/20221103100342_init.cs deleted file mode 100644 index 4db5344..0000000 --- a/Persistence/Migrations/20221103100342_init.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace Persistence.Migrations -{ - public partial class init : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AddColumn( - name: "CountryPhoneCode", - table: "Farmers", - type: "longtext", - nullable: false) - .Annotation("MySql:CharSet", "utf8mb4"); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropColumn( - name: "CountryPhoneCode", - table: "Farmers"); - } - } -} diff --git a/Persistence/Migrations/20221103100342_init.Designer.cs b/Persistence/Migrations/20221112222734_Message.Designer.cs similarity index 70% rename from Persistence/Migrations/20221103100342_init.Designer.cs rename to Persistence/Migrations/20221112222734_Message.Designer.cs index a55c8fa..47c2a19 100644 --- a/Persistence/Migrations/20221103100342_init.Designer.cs +++ b/Persistence/Migrations/20221112222734_Message.Designer.cs @@ -11,8 +11,8 @@ namespace Persistence.Migrations { [DbContext(typeof(ApplicationContext))] - [Migration("20221103100342_init")] - partial class init + [Migration("20221112222734_Message")] + partial class Message { protected override void BuildTargetModel(ModelBuilder modelBuilder) { @@ -27,7 +27,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .HasColumnType("varchar(255)"); b.Property("CreatedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("CreatedOn") @@ -43,25 +42,21 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .HasColumnType("datetime(6)"); b.Property("FarmName") - .IsRequired() .HasColumnType("longtext"); b.Property("FarmerId") - .IsRequired() .HasColumnType("varchar(255)"); b.Property("IsDeleted") .HasColumnType("tinyint(1)"); b.Property("LastModifiedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedOn") .HasColumnType("datetime(6)"); b.Property("LocatedCity") - .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); @@ -77,15 +72,12 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .HasColumnType("varchar(255)"); b.Property("CountryCode") - .IsRequired() .HasColumnType("longtext"); b.Property("CountryPhoneCode") - .IsRequired() .HasColumnType("longtext"); b.Property("CreatedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("CreatedOn") @@ -97,26 +89,25 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Property("DeletedOn") .HasColumnType("datetime(6)"); + b.Property("FarmerCity") + .HasColumnType("longtext"); + b.Property("IsDeleted") .HasColumnType("tinyint(1)"); b.Property("Language") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedOn") .HasColumnType("datetime(6)"); b.Property("Name") - .IsRequired() .HasColumnType("longtext"); b.Property("PhoneNumber") - .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); @@ -124,13 +115,54 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.ToTable("Farmers"); }); + modelBuilder.Entity("Domain.Entities.Message", b => + { + b.Property("Id") + .HasColumnType("varchar(255)"); + + b.Property("CreatedBy") + .HasColumnType("longtext"); + + b.Property("CreatedOn") + .HasColumnType("datetime(6)"); + + b.Property("DateOfIncidence") + .HasColumnType("datetime(6)"); + + b.Property("DeletedBy") + .HasColumnType("longtext"); + + b.Property("DeletedOn") + .HasColumnType("datetime(6)"); + + b.Property("FarmLocation") + .HasColumnType("longtext"); + + b.Property("FarmerPhoneNumber") + .HasColumnType("longtext"); + + b.Property("IsDeleted") + .HasColumnType("tinyint(1)"); + + b.Property("LastModifiedBy") + .HasColumnType("longtext"); + + b.Property("LastModifiedOn") + .HasColumnType("datetime(6)"); + + b.Property("MessageContent") + .HasColumnType("longtext"); + + b.HasKey("Id"); + + b.ToTable("Messages"); + }); + modelBuilder.Entity("Domain.Entities.Farm", b => { b.HasOne("Domain.Entities.Farmer", "Farmer") .WithMany("Farms") - .HasForeignKey("FarmerId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); + .HasForeignKey("FarmerId"); b.Navigation("Farmer"); }); diff --git a/Persistence/Migrations/20221027135137_AARR.cs b/Persistence/Migrations/20221112222734_Message.cs similarity index 62% rename from Persistence/Migrations/20221027135137_AARR.cs rename to Persistence/Migrations/20221112222734_Message.cs index e6a97de..22b1d3e 100644 --- a/Persistence/Migrations/20221027135137_AARR.cs +++ b/Persistence/Migrations/20221112222734_Message.cs @@ -5,7 +5,7 @@ namespace Persistence.Migrations { - public partial class AARR : Migration + public partial class Message : Migration { protected override void Up(MigrationBuilder migrationBuilder) { @@ -18,18 +18,22 @@ protected override void Up(MigrationBuilder migrationBuilder) { Id = table.Column(type: "varchar(255)", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"), - Name = table.Column(type: "longtext", nullable: false) + Name = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - CountryCode = table.Column(type: "longtext", nullable: false) + CountryCode = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - PhoneNumber = table.Column(type: "longtext", nullable: false) + CountryPhoneCode = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - Language = table.Column(type: "longtext", nullable: false) + PhoneNumber = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - CreatedBy = table.Column(type: "longtext", nullable: false) + Language = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + FarmerCity = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + CreatedBy = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), CreatedOn = table.Column(type: "datetime(6)", nullable: false), - LastModifiedBy = table.Column(type: "longtext", nullable: false) + LastModifiedBy = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), LastModifiedOn = table.Column(type: "datetime(6)", nullable: true), DeletedOn = table.Column(type: "datetime(6)", nullable: true), @@ -43,23 +47,53 @@ protected override void Up(MigrationBuilder migrationBuilder) }) .Annotation("MySql:CharSet", "utf8mb4"); + migrationBuilder.CreateTable( + name: "Messages", + columns: table => new + { + Id = table.Column(type: "varchar(255)", nullable: false) + .Annotation("MySql:CharSet", "utf8mb4"), + MessageContent = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + DateOfIncidence = table.Column(type: "datetime(6)", nullable: false), + FarmLocation = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + FarmerPhoneNumber = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + CreatedBy = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + CreatedOn = table.Column(type: "datetime(6)", nullable: false), + LastModifiedBy = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + LastModifiedOn = table.Column(type: "datetime(6)", nullable: true), + DeletedOn = table.Column(type: "datetime(6)", nullable: true), + DeletedBy = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + IsDeleted = table.Column(type: "tinyint(1)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Messages", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + migrationBuilder.CreateTable( name: "Farms", columns: table => new { Id = table.Column(type: "varchar(255)", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"), - FarmName = table.Column(type: "longtext", nullable: false) + FarmName = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - LocatedCity = table.Column(type: "longtext", nullable: false) + LocatedCity = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), CropType = table.Column(type: "int", nullable: false), - FarmerId = table.Column(type: "varchar(255)", nullable: false) + FarmerId = table.Column(type: "varchar(255)", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), - CreatedBy = table.Column(type: "longtext", nullable: false) + CreatedBy = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), CreatedOn = table.Column(type: "datetime(6)", nullable: false), - LastModifiedBy = table.Column(type: "longtext", nullable: false) + LastModifiedBy = table.Column(type: "longtext", nullable: true) .Annotation("MySql:CharSet", "utf8mb4"), LastModifiedOn = table.Column(type: "datetime(6)", nullable: true), DeletedOn = table.Column(type: "datetime(6)", nullable: true), @@ -74,8 +108,7 @@ protected override void Up(MigrationBuilder migrationBuilder) name: "FK_Farms_Farmers_FarmerId", column: x => x.FarmerId, principalTable: "Farmers", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); + principalColumn: "Id"); }) .Annotation("MySql:CharSet", "utf8mb4"); @@ -90,6 +123,9 @@ protected override void Down(MigrationBuilder migrationBuilder) migrationBuilder.DropTable( name: "Farms"); + migrationBuilder.DropTable( + name: "Messages"); + migrationBuilder.DropTable( name: "Farmers"); } diff --git a/Persistence/Migrations/ApplicationContextModelSnapshot.cs b/Persistence/Migrations/ApplicationContextModelSnapshot.cs index 4e8d2be..25b6052 100644 --- a/Persistence/Migrations/ApplicationContextModelSnapshot.cs +++ b/Persistence/Migrations/ApplicationContextModelSnapshot.cs @@ -25,7 +25,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("varchar(255)"); b.Property("CreatedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("CreatedOn") @@ -41,25 +40,21 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("datetime(6)"); b.Property("FarmName") - .IsRequired() .HasColumnType("longtext"); b.Property("FarmerId") - .IsRequired() .HasColumnType("varchar(255)"); b.Property("IsDeleted") .HasColumnType("tinyint(1)"); b.Property("LastModifiedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedOn") .HasColumnType("datetime(6)"); b.Property("LocatedCity") - .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); @@ -75,11 +70,12 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("varchar(255)"); b.Property("CountryCode") - .IsRequired() + .HasColumnType("longtext"); + + b.Property("CountryPhoneCode") .HasColumnType("longtext"); b.Property("CreatedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("CreatedOn") @@ -91,26 +87,25 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("DeletedOn") .HasColumnType("datetime(6)"); + b.Property("FarmerCity") + .HasColumnType("longtext"); + b.Property("IsDeleted") .HasColumnType("tinyint(1)"); b.Property("Language") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedBy") - .IsRequired() .HasColumnType("longtext"); b.Property("LastModifiedOn") .HasColumnType("datetime(6)"); b.Property("Name") - .IsRequired() .HasColumnType("longtext"); b.Property("PhoneNumber") - .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); @@ -118,13 +113,54 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.ToTable("Farmers"); }); + modelBuilder.Entity("Domain.Entities.Message", b => + { + b.Property("Id") + .HasColumnType("varchar(255)"); + + b.Property("CreatedBy") + .HasColumnType("longtext"); + + b.Property("CreatedOn") + .HasColumnType("datetime(6)"); + + b.Property("DateOfIncidence") + .HasColumnType("datetime(6)"); + + b.Property("DeletedBy") + .HasColumnType("longtext"); + + b.Property("DeletedOn") + .HasColumnType("datetime(6)"); + + b.Property("FarmLocation") + .HasColumnType("longtext"); + + b.Property("FarmerPhoneNumber") + .HasColumnType("longtext"); + + b.Property("IsDeleted") + .HasColumnType("tinyint(1)"); + + b.Property("LastModifiedBy") + .HasColumnType("longtext"); + + b.Property("LastModifiedOn") + .HasColumnType("datetime(6)"); + + b.Property("MessageContent") + .HasColumnType("longtext"); + + b.HasKey("Id"); + + b.ToTable("Messages"); + }); + modelBuilder.Entity("Domain.Entities.Farm", b => { b.HasOne("Domain.Entities.Farmer", "Farmer") .WithMany("Farms") - .HasForeignKey("FarmerId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); + .HasForeignKey("FarmerId"); b.Navigation("Farmer"); }); diff --git a/Persistence/Persistence.csproj b/Persistence/Persistence.csproj index 2d75651..aa201b4 100644 --- a/Persistence/Persistence.csproj +++ b/Persistence/Persistence.csproj @@ -1,15 +1,17 @@ + + + + + + + net6.0 enable - disable + enable - - - - - \ No newline at end of file diff --git a/Persistence/bin/Debug/net6.0/Application.dll b/Persistence/bin/Debug/net6.0/Application.dll new file mode 100644 index 0000000..ff4b47b Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Application.dll differ diff --git a/Persistence/bin/Debug/net6.0/Application.pdb b/Persistence/bin/Debug/net6.0/Application.pdb new file mode 100644 index 0000000..7956602 Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Application.pdb differ diff --git a/Persistence/bin/Debug/net6.0/Domain.dll b/Persistence/bin/Debug/net6.0/Domain.dll new file mode 100644 index 0000000..e699991 Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Domain.dll differ diff --git a/Persistence/bin/Debug/net6.0/Domain.pdb b/Persistence/bin/Debug/net6.0/Domain.pdb new file mode 100644 index 0000000..bd9ae1e Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Domain.pdb differ diff --git a/Persistence/bin/Debug/net6.0/Gateway.dll b/Persistence/bin/Debug/net6.0/Gateway.dll new file mode 100644 index 0000000..ae7ece1 Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Gateway.dll differ diff --git a/Persistence/bin/Debug/net6.0/Gateway.pdb b/Persistence/bin/Debug/net6.0/Gateway.pdb new file mode 100644 index 0000000..67b8a8d Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Gateway.pdb differ diff --git a/Persistence/bin/Debug/net6.0/Persistence.deps.json b/Persistence/bin/Debug/net6.0/Persistence.deps.json new file mode 100644 index 0000000..17dabc0 --- /dev/null +++ b/Persistence/bin/Debug/net6.0/Persistence.deps.json @@ -0,0 +1,923 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Persistence/1.0.0": { + "dependencies": { + "Application": "1.0.0", + "Domain": "1.0.0", + "Gateway": "1.0.0", + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Pomelo.EntityFrameworkCore.MySql": "6.0.2" + }, + "runtime": { + "Persistence.dll": {} + } + }, + "Mapster/7.3.0": { + "dependencies": { + "Mapster.Core": "1.2.0", + "Microsoft.CSharp": "4.5.0", + "System.Reflection.Emit": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Mapster.dll": { + "assemblyVersion": "7.3.0.0", + "fileVersion": "7.3.0.0" + } + } + }, + "Mapster.Core/1.2.0": { + "runtime": { + "lib/netstandard2.0/Mapster.Core.dll": { + "assemblyVersion": "1.2.0.0", + "fileVersion": "1.2.0.0" + } + } + }, + "MediatR/10.0.1": { + "dependencies": { + "MediatR.Contracts": "1.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.1.0" + } + } + }, + "MediatR.Contracts/1.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "1.0.1.0", + "fileVersion": "1.0.1.0" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { + "dependencies": { + "MediatR": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.1.0" + } + } + }, + "Microsoft.AspNetCore.Http.Features/5.0.17": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.IO.Pipelines": "5.0.2" + }, + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1722.21507" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.EntityFrameworkCore/6.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "6.0.7", + "Microsoft.Extensions.Caching.Memory": "6.0.1", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "System.Collections.Immutable": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "6.0.7.0", + "fileVersion": "6.0.722.31501" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "6.0.7.0", + "fileVersion": "6.0.722.31501" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": {}, + "Microsoft.EntityFrameworkCore.Relational/6.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "6.0.7.0", + "fileVersion": "6.0.722.31501" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.222.6406" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "MySqlConnector/2.1.2": { + "runtime": { + "lib/net6.0/MySqlConnector.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.2.0" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Pomelo.EntityFrameworkCore.MySql/6.0.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "6.0.7", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "MySqlConnector": "2.1.2" + }, + "runtime": { + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.2.0" + } + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Pipelines/5.0.2": { + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.1522.11506" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Twilio/5.81.2": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": { + "assemblyVersion": "5.81.2.0", + "fileVersion": "5.81.2.0" + } + } + }, + "Application/1.0.0": { + "dependencies": { + "Domain": "1.0.0", + "Mapster": "7.3.0", + "MediatR": "10.0.1", + "MediatR.Extensions.Microsoft.DependencyInjection": "10.0.1", + "Microsoft.AspNetCore.Http.Features": "5.0.17", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1" + }, + "runtime": { + "Application.dll": {} + } + }, + "Domain/1.0.0": { + "runtime": { + "Domain.dll": {} + } + }, + "Gateway/1.0.0": { + "dependencies": { + "Application": "1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" + }, + "runtime": { + "Gateway.dll": {} + } + } + } + }, + "libraries": { + "Persistence/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Mapster/7.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrCUX/rJa5PTyo6iW4AL5dZLU9PDNlYnrJOVjgdpo5OQM9EtWH2CMHnC5sSuJWC0d0b0SnmeRrIviEem6WxtuQ==", + "path": "mapster/7.3.0", + "hashPath": "mapster.7.3.0.nupkg.sha512" + }, + "Mapster.Core/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==", + "path": "mapster.core/1.2.0", + "hashPath": "mapster.core.1.2.0.nupkg.sha512" + }, + "MediatR/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vnjbk4giDJzJelh34Ygt0eorApCKrRFB7j0pauFPY1oxfO3cEZ7FugBrIOjCM76SDGTOmPFfbfmVnz1t3iFrGA==", + "path": "mediatr/10.0.1", + "hashPath": "mediatr.10.0.1.nupkg.sha512" + }, + "MediatR.Contracts/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NsRvOxthhkYml4DcBMyJsmym8C4MchioH7wxKVPEg7plFj9Euh/i4IcmZ3Gvgx6+K8obeuhPeJdoBl56wnuo3A==", + "path": "mediatr.contracts/1.0.1", + "hashPath": "mediatr.contracts.1.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYdfMvpkahCAj4tRfBoeMlUBZa2WthaONdQ4y5TtIyxcZYb5e7AE7c1eITTZVWcQhguxvD8AdExdaiAW6RhrVA==", + "path": "mediatr.extensions.microsoft.dependencyinjection/10.0.1", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/5.0.17": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==", + "path": "microsoft.aspnetcore.http.features/5.0.17", + "hashPath": "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9BsvGSpTzxvqnxH19wLBFivK5TzWmsHZQc/1cQ4b2e+k85aIG9R4FYewQLHZdPrAxNQImXjTyW5nRI3s1rpt6A==", + "path": "microsoft.entityframeworkcore/6.0.7", + "hashPath": "microsoft.entityframeworkcore.6.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bjU0CkTqldgpVPTSj9M+R/3EaTz+u0jMeQMIC91YdGYDbpX/tAN5UYx+Ihzk4AtP8gmhburQUgMTdnmCE9c5sA==", + "path": "microsoft.entityframeworkcore.abstractions/6.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VAOrGma8mRspUb/9quwIr21UZVqfWOcRQqhcYNkHBUD7woenwFTBvntiC9h2Ebtvj/BrRfezqjaHpWVvPSg4dw==", + "path": "microsoft.entityframeworkcore.analyzers/6.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0uo4fPDHutMbd9AJJEKl2q/2fYuFGA8tEBE2fQeQFaNDd+F/aUjaXc1FUD84J7Wcax8WP40rZo1E0u9A0yPPZw==", + "path": "microsoft.entityframeworkcore.relational/6.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.6.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==", + "path": "microsoft.extensions.caching.memory/6.0.1", + "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", + "path": "microsoft.extensions.logging.abstractions/6.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "hashPath": "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "path": "microsoft.identitymodel.logging/6.19.0", + "hashPath": "microsoft.identitymodel.logging.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "path": "microsoft.identitymodel.tokens/6.19.0", + "hashPath": "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "MySqlConnector/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JVokQTUNN3WHAu9Vw8ieeq1dXTFokJiig5P0VJ4f439UxRrsPo6SaVWC8Zdm6mkPeQFhZ0/9afdWa02EY/1j/w==", + "path": "mysqlconnector/2.1.2", + "hashPath": "mysqlconnector.2.1.2.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Pomelo.EntityFrameworkCore.MySql/6.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KvlZ800CnEuEGnxj5OT1fCKGjQXxW5kpPlCP91JqBYG+2Z3927eqXmlX6LLKUt4swqE8ZsEQ+Zkpab8bqstf4g==", + "path": "pomelo.entityframeworkcore.mysql/6.0.2", + "hashPath": "pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "hashPath": "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==", + "path": "system.io.pipelines/5.0.2", + "hashPath": "system.io.pipelines.5.0.2.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "Twilio/5.81.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "path": "twilio/5.81.2", + "hashPath": "twilio.5.81.2.nupkg.sha512" + }, + "Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Gateway/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Persistence/bin/Debug/net6.0/Persistence.dll b/Persistence/bin/Debug/net6.0/Persistence.dll new file mode 100644 index 0000000..97b49ac Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Persistence.dll differ diff --git a/Persistence/bin/Debug/net6.0/Persistence.pdb b/Persistence/bin/Debug/net6.0/Persistence.pdb new file mode 100644 index 0000000..25cb85d Binary files /dev/null and b/Persistence/bin/Debug/net6.0/Persistence.pdb differ diff --git a/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig b/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig index 7699de7..ba8eb4f 100644 --- a/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig +++ b/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig @@ -7,4 +7,4 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Persistence -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\Persistence\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\ diff --git a/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache b/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache index 0fb9c05..1e54566 100644 Binary files a/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache and b/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache differ diff --git a/Persistence/obj/Debug/net6.0/Persistence.csproj.CopyComplete b/Persistence/obj/Debug/net6.0/Persistence.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Persistence/obj/Debug/net6.0/Persistence.csproj.CoreCompileInputs.cache b/Persistence/obj/Debug/net6.0/Persistence.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f9efd16 --- /dev/null +++ b/Persistence/obj/Debug/net6.0/Persistence.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +faf4bdb8d8f18274e4b50be7482cd27a06656f59 diff --git a/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt b/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt index e69de29..0568015 100644 --- a/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt +++ b/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Persistence.deps.json +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Persistence.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Persistence.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Application.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Domain.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Gateway.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Domain.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Gateway.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\bin\Debug\net6.0\Application.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.csproj.AssemblyReference.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.GeneratedMSBuildEditorConfig.editorconfig +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.AssemblyInfoInputs.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.AssemblyInfo.cs +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.csproj.CoreCompileInputs.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.csproj.CopyComplete +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\refint\Persistence.dll +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\Persistence.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\Persistence\obj\Debug\net6.0\ref\Persistence.dll diff --git a/Persistence/obj/Debug/net6.0/Persistence.dll b/Persistence/obj/Debug/net6.0/Persistence.dll new file mode 100644 index 0000000..97b49ac Binary files /dev/null and b/Persistence/obj/Debug/net6.0/Persistence.dll differ diff --git a/Persistence/obj/Debug/net6.0/Persistence.pdb b/Persistence/obj/Debug/net6.0/Persistence.pdb new file mode 100644 index 0000000..25cb85d Binary files /dev/null and b/Persistence/obj/Debug/net6.0/Persistence.pdb differ diff --git a/Persistence/obj/Debug/net6.0/ref/Persistence.dll b/Persistence/obj/Debug/net6.0/ref/Persistence.dll new file mode 100644 index 0000000..0d8950f Binary files /dev/null and b/Persistence/obj/Debug/net6.0/ref/Persistence.dll differ diff --git a/Persistence/obj/Debug/net6.0/refint/Persistence.dll b/Persistence/obj/Debug/net6.0/refint/Persistence.dll new file mode 100644 index 0000000..0d8950f Binary files /dev/null and b/Persistence/obj/Debug/net6.0/refint/Persistence.dll differ diff --git a/Persistence/obj/Persistence.csproj.EntityFrameworkCore.targets b/Persistence/obj/Persistence.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/Persistence/obj/Persistence.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Persistence/obj/Persistence.csproj.nuget.dgspec.json b/Persistence/obj/Persistence.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7e7edcc --- /dev/null +++ b/Persistence/obj/Persistence.csproj.nuget.dgspec.json @@ -0,0 +1,288 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": {} + }, + "projects": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", + "projectName": "Application", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", + "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Mapster": { + "target": "Package", + "version": "[7.3.0, )" + }, + "MediatR": { + "target": "Package", + "version": "[10.0.1, )" + }, + "MediatR.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[10.0.1, )" + }, + "Microsoft.AspNetCore.Http.Features": { + "target": "Package", + "version": "[5.0.17, )" + }, + "Microsoft.Extensions.Logging.Abstractions": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectName": "Gateway", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", + "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Twilio": { + "target": "Package", + "version": "[5.81.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectName": "Persistence", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", + "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.7, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[6.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Persistence/obj/Persistence.csproj.nuget.g.props b/Persistence/obj/Persistence.csproj.nuget.g.props new file mode 100644 index 0000000..6908180 --- /dev/null +++ b/Persistence/obj/Persistence.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\user\.nuget\packages\ + PackageReference + 6.2.0 + + + + + + + + \ No newline at end of file diff --git a/Persistence/obj/Persistence.csproj.nuget.g.targets b/Persistence/obj/Persistence.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Persistence/obj/Persistence.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Persistence/obj/project.assets.json b/Persistence/obj/project.assets.json new file mode 100644 index 0000000..884f73e --- /dev/null +++ b/Persistence/obj/project.assets.json @@ -0,0 +1,2788 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Mapster/7.3.0": { + "type": "package", + "dependencies": { + "Mapster.Core": "1.2.0", + "Microsoft.CSharp": "4.3.0", + "System.Reflection.Emit": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Mapster.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Mapster.dll": {} + } + }, + "Mapster.Core/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Mapster.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Mapster.Core.dll": {} + } + }, + "MediatR/10.0.1": { + "type": "package", + "dependencies": { + "MediatR.Contracts": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/MediatR.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": {} + } + }, + "MediatR.Contracts/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": {} + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { + "type": "package", + "dependencies": { + "MediatR": "10.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/5.0.17": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.1", + "System.IO.Pipelines": "5.0.2" + }, + "compile": { + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "6.0.7", + "Microsoft.Extensions.Caching.Memory": "6.0.1", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "System.Collections.Immutable": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} + }, + "build": { + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "MySqlConnector/2.1.2": { + "type": "package", + "compile": { + "lib/net6.0/MySqlConnector.dll": {} + }, + "runtime": { + "lib/net6.0/MySqlConnector.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/6.0.2": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "[6.0.7, 7.0.0)", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "MySqlConnector": "2.1.2" + }, + "compile": { + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/net6.0/System.Collections.Immutable.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Pipelines/5.0.2": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "Twilio/5.81.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Twilio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": {} + } + }, + "Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Domain": "1.0.0", + "Mapster": "7.3.0", + "MediatR": "10.0.1", + "MediatR.Extensions.Microsoft.DependencyInjection": "10.0.1", + "Microsoft.AspNetCore.Http.Features": "5.0.17", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1" + }, + "compile": { + "bin/placeholder/Application.dll": {} + }, + "runtime": { + "bin/placeholder/Application.dll": {} + } + }, + "Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "compile": { + "bin/placeholder/Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.dll": {} + } + }, + "Gateway/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Application": "1.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" + }, + "compile": { + "bin/placeholder/Gateway.dll": {} + }, + "runtime": { + "bin/placeholder/Gateway.dll": {} + } + } + } + }, + "libraries": { + "Mapster/7.3.0": { + "sha512": "NrCUX/rJa5PTyo6iW4AL5dZLU9PDNlYnrJOVjgdpo5OQM9EtWH2CMHnC5sSuJWC0d0b0SnmeRrIviEem6WxtuQ==", + "type": "package", + "path": "mapster/7.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard1.3/Mapster.dll", + "lib/netstandard2.0/Mapster.dll", + "mapster.7.3.0.nupkg.sha512", + "mapster.nuspec" + ] + }, + "Mapster.Core/1.2.0": { + "sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==", + "type": "package", + "path": "mapster.core/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net40/Mapster.Core.dll", + "lib/net45/Mapster.Core.dll", + "lib/netstandard1.3/Mapster.Core.dll", + "lib/netstandard2.0/Mapster.Core.dll", + "mapster.core.1.2.0.nupkg.sha512", + "mapster.core.nuspec" + ] + }, + "MediatR/10.0.1": { + "sha512": "vnjbk4giDJzJelh34Ygt0eorApCKrRFB7j0pauFPY1oxfO3cEZ7FugBrIOjCM76SDGTOmPFfbfmVnz1t3iFrGA==", + "type": "package", + "path": "mediatr/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.dll", + "lib/netstandard2.1/MediatR.xml", + "mediatr.10.0.1.nupkg.sha512", + "mediatr.nuspec" + ] + }, + "MediatR.Contracts/1.0.1": { + "sha512": "NsRvOxthhkYml4DcBMyJsmym8C4MchioH7wxKVPEg7plFj9Euh/i4IcmZ3Gvgx6+K8obeuhPeJdoBl56wnuo3A==", + "type": "package", + "path": "mediatr.contracts/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/net461/MediatR.Contracts.dll", + "lib/net461/MediatR.Contracts.xml", + "lib/netstandard2.0/MediatR.Contracts.dll", + "lib/netstandard2.0/MediatR.Contracts.xml", + "mediatr.contracts.1.0.1.nupkg.sha512", + "mediatr.contracts.nuspec" + ] + }, + "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { + "sha512": "mYdfMvpkahCAj4tRfBoeMlUBZa2WthaONdQ4y5TtIyxcZYb5e7AE7c1eITTZVWcQhguxvD8AdExdaiAW6RhrVA==", + "type": "package", + "path": "mediatr.extensions.microsoft.dependencyinjection/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll", + "mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", + "mediatr.extensions.microsoft.dependencyinjection.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/5.0.17": { + "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/5.0.17", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Http.Features.dll", + "lib/net461/Microsoft.AspNetCore.Http.Features.xml", + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/6.0.7": { + "sha512": "9BsvGSpTzxvqnxH19wLBFivK5TzWmsHZQc/1cQ4b2e+k85aIG9R4FYewQLHZdPrAxNQImXjTyW5nRI3s1rpt6A==", + "type": "package", + "path": "microsoft.entityframeworkcore/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.6.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { + "sha512": "bjU0CkTqldgpVPTSj9M+R/3EaTz+u0jMeQMIC91YdGYDbpX/tAN5UYx+Ihzk4AtP8gmhburQUgMTdnmCE9c5sA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": { + "sha512": "VAOrGma8mRspUb/9quwIr21UZVqfWOcRQqhcYNkHBUD7woenwFTBvntiC9h2Ebtvj/BrRfezqjaHpWVvPSg4dw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.7": { + "sha512": "0uo4fPDHutMbd9AJJEKl2q/2fYuFGA8tEBE2fQeQFaNDd+F/aUjaXc1FUD84J7Wcax8WP40rZo1E0u9A0yPPZw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/6.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.6.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.1": { + "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "sha512": "SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "sha512": "PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "sha512": "773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "sha512": "kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "MySqlConnector/2.1.2": { + "sha512": "JVokQTUNN3WHAu9Vw8ieeq1dXTFokJiig5P0VJ4f439UxRrsPo6SaVWC8Zdm6mkPeQFhZ0/9afdWa02EY/1j/w==", + "type": "package", + "path": "mysqlconnector/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.1.2.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/6.0.2": { + "sha512": "KvlZ800CnEuEGnxj5OT1fCKGjQXxW5kpPlCP91JqBYG+2Z3927eqXmlX6LLKUt4swqE8ZsEQ+Zkpab8bqstf4g==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "System.Collections.Immutable/6.0.0": { + "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "type": "package", + "path": "system.collections.immutable/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.6.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "sha512": "iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Pipelines/5.0.2": { + "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==", + "type": "package", + "path": "system.io.pipelines/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "Twilio/5.81.2": { + "sha512": "mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "type": "package", + "path": "twilio/5.81.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/Twilio.dll", + "lib/net35/Twilio.xml", + "lib/net451/Twilio.dll", + "lib/net451/Twilio.xml", + "lib/netstandard1.4/Twilio.dll", + "lib/netstandard1.4/Twilio.xml", + "lib/netstandard2.0/Twilio.dll", + "lib/netstandard2.0/Twilio.xml", + "twilio.5.81.2.nupkg.sha512", + "twilio.nuspec" + ] + }, + "Application/1.0.0": { + "type": "project", + "path": "../Application/Application.csproj", + "msbuildProject": "../Application/Application.csproj" + }, + "Domain/1.0.0": { + "type": "project", + "path": "../Domain/Domain.csproj", + "msbuildProject": "../Domain/Domain.csproj" + }, + "Gateway/1.0.0": { + "type": "project", + "path": "../Gateway/Gateway.csproj", + "msbuildProject": "../Gateway/Gateway.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Application >= 1.0.0", + "Domain >= 1.0.0", + "Gateway >= 1.0.0", + "Microsoft.EntityFrameworkCore >= 6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions >= 6.0.0", + "Pomelo.EntityFrameworkCore.MySql >= 6.0.2" + ] + }, + "packageFolders": { + "C:\\Users\\user\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectName": "Persistence", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", + "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" + }, + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.7, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[6.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Persistence/obj/project.nuget.cache b/Persistence/obj/project.nuget.cache new file mode 100644 index 0000000..6557a9d --- /dev/null +++ b/Persistence/obj/project.nuget.cache @@ -0,0 +1,63 @@ +{ + "version": 2, + "dgSpecHash": "Oyl06UrtjAiznIEK1oJ/YzqweQ0VrUvg+9ofQdczGBomB1FsTs107n/9M7fS8tcqBrP+3bWeiRGpbBhaaAhPXA==", + "success": true, + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", + "expectedPackageFiles": [ + "C:\\Users\\user\\.nuget\\packages\\mapster\\7.3.0\\mapster.7.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\mediatr\\10.0.1\\mediatr.10.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.7\\microsoft.entityframeworkcore.6.0.7.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.7\\microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.7\\microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.7\\microsoft.entityframeworkcore.relational.6.0.7.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.1\\microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.19.0\\microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.19.0\\microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.logging\\6.19.0\\microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.19.0\\microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\6.0.2\\pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.19.0\\system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\twilio\\5.81.2\\twilio.5.81.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WebApi/appsettings.Development.json b/WebApi/appsettings.Development.json deleted file mode 100644 index ed3a25c..0000000 --- a/WebApi/appsettings.Development.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "OpenWeatherMapService":{ - "ApiKey":"d2c6d244b60e3dc3e80ee4d289e4ea9f" - }, - "NumLookUpService":{ - "NumLookUpKey":"7wRccYToNi2r58u7CvvotG3p5t8qzIMYeAojGpux" - }, - "ConnectionStrings": { - "AARRConnectionString": "server=localhost;user=root;database=AARR;password=Salamb#@!_%saula>;" - } -} diff --git a/WebApi/bin/Debug/net6.0/Application.dll b/WebApi/bin/Debug/net6.0/Application.dll index e0ecaf0..ff4b47b 100644 Binary files a/WebApi/bin/Debug/net6.0/Application.dll and b/WebApi/bin/Debug/net6.0/Application.dll differ diff --git a/WebApi/bin/Debug/net6.0/Application.pdb b/WebApi/bin/Debug/net6.0/Application.pdb index 9b9543d..7956602 100644 Binary files a/WebApi/bin/Debug/net6.0/Application.pdb and b/WebApi/bin/Debug/net6.0/Application.pdb differ diff --git a/WebApi/bin/Debug/net6.0/Domain.dll b/WebApi/bin/Debug/net6.0/Domain.dll index a953c37..e699991 100644 Binary files a/WebApi/bin/Debug/net6.0/Domain.dll and b/WebApi/bin/Debug/net6.0/Domain.dll differ diff --git a/WebApi/bin/Debug/net6.0/Domain.pdb b/WebApi/bin/Debug/net6.0/Domain.pdb index 1b8898a..bd9ae1e 100644 Binary files a/WebApi/bin/Debug/net6.0/Domain.pdb and b/WebApi/bin/Debug/net6.0/Domain.pdb differ diff --git a/WebApi/bin/Debug/net6.0/Gateway.dll b/WebApi/bin/Debug/net6.0/Gateway.dll index 1192fac..ae7ece1 100644 Binary files a/WebApi/bin/Debug/net6.0/Gateway.dll and b/WebApi/bin/Debug/net6.0/Gateway.dll differ diff --git a/WebApi/bin/Debug/net6.0/Gateway.pdb b/WebApi/bin/Debug/net6.0/Gateway.pdb index 7eee54e..67b8a8d 100644 Binary files a/WebApi/bin/Debug/net6.0/Gateway.pdb and b/WebApi/bin/Debug/net6.0/Gateway.pdb differ diff --git a/WebApi/bin/Debug/net6.0/IOC.dll b/WebApi/bin/Debug/net6.0/IOC.dll index a9dfb38..43439bb 100644 Binary files a/WebApi/bin/Debug/net6.0/IOC.dll and b/WebApi/bin/Debug/net6.0/IOC.dll differ diff --git a/WebApi/bin/Debug/net6.0/IOC.pdb b/WebApi/bin/Debug/net6.0/IOC.pdb index 332bbfb..89bba1e 100644 Binary files a/WebApi/bin/Debug/net6.0/IOC.pdb and b/WebApi/bin/Debug/net6.0/IOC.pdb differ diff --git a/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..c2187cb Binary files /dev/null and b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..c808d2b Binary files /dev/null and b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..6ef55be Binary files /dev/null and b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..845bc5d Binary files /dev/null and b/WebApi/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll b/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll index b501fb6..1ffeabe 100644 Binary files a/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll and b/WebApi/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/WebApi/bin/Debug/net6.0/Persistence.dll b/WebApi/bin/Debug/net6.0/Persistence.dll index 57e37e3..97b49ac 100644 Binary files a/WebApi/bin/Debug/net6.0/Persistence.dll and b/WebApi/bin/Debug/net6.0/Persistence.dll differ diff --git a/WebApi/bin/Debug/net6.0/Persistence.pdb b/WebApi/bin/Debug/net6.0/Persistence.pdb index 58145b0..25cb85d 100644 Binary files a/WebApi/bin/Debug/net6.0/Persistence.pdb and b/WebApi/bin/Debug/net6.0/Persistence.pdb differ diff --git a/WebApi/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll b/WebApi/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..fa74ab3 Binary files /dev/null and b/WebApi/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/WebApi/bin/Debug/net6.0/Twilio.dll b/WebApi/bin/Debug/net6.0/Twilio.dll new file mode 100644 index 0000000..6fdd93a Binary files /dev/null and b/WebApi/bin/Debug/net6.0/Twilio.dll differ diff --git a/WebApi/bin/Debug/net6.0/WebApi.deps.json b/WebApi/bin/Debug/net6.0/WebApi.deps.json index eb4a2ae..64c1527 100644 --- a/WebApi/bin/Debug/net6.0/WebApi.deps.json +++ b/WebApi/bin/Debug/net6.0/WebApi.deps.json @@ -8,6 +8,7 @@ ".NETCoreApp,Version=v6.0": { "WebApi/1.0.0": { "dependencies": { + "Application": "1.0.0", "IOC": "1.0.0", "Microsoft.EntityFrameworkCore.Design": "6.0.3", "Microsoft.EntityFrameworkCore.Relational": "6.0.7", @@ -45,7 +46,7 @@ "Mapster/7.3.0": { "dependencies": { "Mapster.Core": "1.2.0", - "Microsoft.CSharp": "4.3.0", + "Microsoft.CSharp": "4.5.0", "System.Reflection.Emit": "4.3.0" }, "runtime": { @@ -100,26 +101,7 @@ "System.IO.Pipelines": "5.0.2" } }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, + "Microsoft.CSharp/4.5.0": {}, "Microsoft.EntityFrameworkCore/6.0.7": { "dependencies": { "Microsoft.EntityFrameworkCore.Abstractions": "6.0.7", @@ -231,6 +213,49 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.OpenApi/1.2.3": { @@ -249,11 +274,11 @@ } } }, - "Newtonsoft.Json/12.0.3": { + "Newtonsoft.Json/13.0.1": { "runtime": { "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.3.23909" + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" } } }, @@ -282,7 +307,7 @@ "dependencies": { "Elasticsearch.Net": "7.4.2", "NLog": "4.7.15", - "Newtonsoft.Json": "12.0.3" + "Newtonsoft.Json": "13.0.1" }, "runtime": { "lib/netstandard2.0/NLog.Targets.ElasticSearch.dll": { @@ -354,104 +379,83 @@ } }, "System.Buffers/4.5.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, "System.Collections.Immutable/6.0.0": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Collections.NonGeneric/4.3.0": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" } }, - "System.Dynamic.Runtime/4.3.0": { + "System.Collections.Specialized/4.3.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", "System.Threading": "4.3.0" } }, - "System.Globalization/4.3.0": { + "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.IO/4.3.0": { + "System.Diagnostics.DiagnosticSource/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "System.IO.Pipelines/5.0.2": {}, - "System.Linq/4.3.0": { + "System.Globalization/4.3.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" } }, - "System.Linq.Expressions/4.3.0": { + "System.Globalization.Extensions/4.3.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Runtime.InteropServices": "4.3.0" } }, - "System.ObjectModel/4.3.0": { + "System.IdentityModel.Tokens.Jwt/6.19.0": { "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.19.0.0", + "fileVersion": "6.19.0.30603" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" } }, + "System.IO.Pipelines/5.0.2": {}, "System.Reflection/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -485,14 +489,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Reflection.Primitives/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -500,12 +496,6 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -546,6 +536,7 @@ "System.Runtime.Handles": "4.3.0" } }, + "System.Security.Cryptography.Cng/4.5.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -566,6 +557,20 @@ "System.Runtime": "4.3.0" } }, + "Twilio/5.81.2": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": { + "assemblyVersion": "5.81.2.0", + "fileVersion": "5.81.2.0" + } + } + }, "Application/1.0.0": { "dependencies": { "Domain": "1.0.0", @@ -587,7 +592,8 @@ "Gateway/1.0.0": { "dependencies": { "Application": "1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" }, "runtime": { "Gateway.dll": {} @@ -608,6 +614,8 @@ "Application": "1.0.0", "Domain": "1.0.0", "Gateway": "1.0.0", + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", "Pomelo.EntityFrameworkCore.MySql": "6.0.2" }, "runtime": { @@ -678,12 +686,12 @@ "path": "microsoft.aspnetcore.http.features/5.0.17", "hashPath": "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512" }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" }, "Microsoft.EntityFrameworkCore/6.0.7": { "type": "package", @@ -790,6 +798,34 @@ "path": "microsoft.extensions.primitives/6.0.0", "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "hashPath": "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "path": "microsoft.identitymodel.logging/6.19.0", + "hashPath": "microsoft.identitymodel.logging.6.19.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "path": "microsoft.identitymodel.tokens/6.19.0", + "hashPath": "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512" + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, @@ -818,12 +854,12 @@ "path": "mysqlconnector/2.1.2", "hashPath": "mysqlconnector.2.1.2.nupkg.sha512" }, - "Newtonsoft.Json/12.0.3": { + "Newtonsoft.Json/13.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", - "path": "newtonsoft.json/12.0.3", - "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" }, "NLog/4.7.15": { "type": "package", @@ -895,13 +931,6 @@ "path": "system.buffers/4.5.0", "hashPath": "system.buffers.4.5.0.nupkg.sha512" }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, "System.Collections.Immutable/6.0.0": { "type": "package", "serviceable": true, @@ -909,6 +938,20 @@ "path": "system.collections.immutable/6.0.0", "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, "System.Diagnostics.Debug/4.3.0": { "type": "package", "serviceable": true, @@ -923,13 +966,6 @@ "path": "system.diagnostics.diagnosticsource/6.0.0", "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -937,6 +973,20 @@ "path": "system.globalization/4.3.0", "hashPath": "system.globalization.4.3.0.nupkg.sha512" }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "hashPath": "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512" + }, "System.IO/4.3.0": { "type": "package", "serviceable": true, @@ -951,27 +1001,6 @@ "path": "system.io.pipelines/5.0.2", "hashPath": "system.io.pipelines.5.0.2.nupkg.sha512" }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, "System.Reflection/4.3.0": { "type": "package", "serviceable": true, @@ -1000,13 +1029,6 @@ "path": "system.reflection.emit.lightweight/4.3.0", "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -1014,13 +1036,6 @@ "path": "system.reflection.primitives/4.3.0", "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, "System.Resources.ResourceManager/4.3.0": { "type": "package", "serviceable": true, @@ -1063,6 +1078,13 @@ "path": "system.runtime.interopservices/4.3.0", "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, @@ -1084,6 +1106,13 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, + "Twilio/5.81.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "path": "twilio/5.81.2", + "hashPath": "twilio.5.81.2.nupkg.sha512" + }, "Application/1.0.0": { "type": "project", "serviceable": false, diff --git a/WebApi/bin/Debug/net6.0/WebApi.dll b/WebApi/bin/Debug/net6.0/WebApi.dll index fc336b3..82d3f23 100644 Binary files a/WebApi/bin/Debug/net6.0/WebApi.dll and b/WebApi/bin/Debug/net6.0/WebApi.dll differ diff --git a/WebApi/bin/Debug/net6.0/WebApi.exe b/WebApi/bin/Debug/net6.0/WebApi.exe index 191bd12..603704c 100644 Binary files a/WebApi/bin/Debug/net6.0/WebApi.exe and b/WebApi/bin/Debug/net6.0/WebApi.exe differ diff --git a/WebApi/bin/Debug/net6.0/WebApi.pdb b/WebApi/bin/Debug/net6.0/WebApi.pdb index badb67c..64f516d 100644 Binary files a/WebApi/bin/Debug/net6.0/WebApi.pdb and b/WebApi/bin/Debug/net6.0/WebApi.pdb differ diff --git a/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig b/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig index fb319e2..3b5ccd7 100644 --- a/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig +++ b/WebApi/obj/Debug/net6.0/WebApi.GeneratedMSBuildEditorConfig.editorconfig @@ -8,9 +8,9 @@ build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = WebApi build_property.RootNamespace = WebApi -build_property.ProjectDir = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\WebApi\ +build_property.ProjectDir = C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = c:\Users\user\Desktop\Extern\AARR\AARR-Backend\WebApi +build_property.MSBuildProjectDirectory = C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi build_property._RazorSourceGeneratorDebug = diff --git a/WebApi/obj/Debug/net6.0/WebApi.assets.cache b/WebApi/obj/Debug/net6.0/WebApi.assets.cache index 77ee312..5c67ab4 100644 Binary files a/WebApi/obj/Debug/net6.0/WebApi.assets.cache and b/WebApi/obj/Debug/net6.0/WebApi.assets.cache differ diff --git a/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache b/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache index 107ffbb..2cf2dd5 100644 Binary files a/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache and b/WebApi/obj/Debug/net6.0/WebApi.csproj.AssemblyReference.cache differ diff --git a/WebApi/obj/Debug/net6.0/WebApi.csproj.CoreCompileInputs.cache b/WebApi/obj/Debug/net6.0/WebApi.csproj.CoreCompileInputs.cache index feb37ae..26638fe 100644 --- a/WebApi/obj/Debug/net6.0/WebApi.csproj.CoreCompileInputs.cache +++ b/WebApi/obj/Debug/net6.0/WebApi.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -df3d3a7ee7fca74c77896c3298788e9da30c382a +71fb151ad77fe04195e116e17159235d84245ea1 diff --git a/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt b/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt index f7616d8..2e512a2 100644 --- a/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt +++ b/WebApi/obj/Debug/net6.0/WebApi.csproj.FileListAbsolute.txt @@ -114,3 +114,67 @@ C:\Users\user\Desktop\Extern\new\AARR-Backend\WebApi\obj\Debug\net6.0\refint\Web C:\Users\user\Desktop\Extern\new\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.pdb c:\Users\user\Desktop\Extern\new\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.genruntimeconfig.cache c:\Users\user\Desktop\Extern\new\AARR-Backend\WebApi\obj\Debug\net6.0\ref\WebApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\appsettings.Development.json +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\appsettings.json +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\nlog.config +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\WebApi.exe +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\WebApi.deps.json +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\WebApi.runtimeconfig.json +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\WebApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\WebApi.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Elasticsearch.Net.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Humanizer.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Mapster.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Mapster.Core.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\MediatR.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\MediatR.Contracts.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\MediatR.Extensions.Microsoft.DependencyInjection.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.OpenApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\MySqlConnector.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\NLog.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\NLog.Extensions.Logging.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\NLog.Targets.ElasticSearch.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\NLog.Web.AspNetCore.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Application.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Domain.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Gateway.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\IOC.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Persistence.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Application.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\IOC.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Domain.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Gateway.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Persistence.pdb +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.csproj.AssemblyReference.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.AssemblyInfoInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.AssemblyInfo.cs +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.csproj.CoreCompileInputs.cache +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.MvcApplicationPartsAssemblyInfo.cs +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.MvcApplicationPartsAssemblyInfo.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\staticwebassets.build.json +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\staticwebassets.development.json +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\scopedcss\bundle\WebApi.styles.css +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.csproj.CopyComplete +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\refint\WebApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.pdb +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\WebApi.genruntimeconfig.cache +c:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\obj\Debug\net6.0\ref\WebApi.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\user\Desktop\AARR2\AARR-Backend\WebApi\bin\Debug\net6.0\Twilio.dll diff --git a/WebApi/obj/Debug/net6.0/WebApi.dll b/WebApi/obj/Debug/net6.0/WebApi.dll index fc336b3..82d3f23 100644 Binary files a/WebApi/obj/Debug/net6.0/WebApi.dll and b/WebApi/obj/Debug/net6.0/WebApi.dll differ diff --git a/WebApi/obj/Debug/net6.0/WebApi.genruntimeconfig.cache b/WebApi/obj/Debug/net6.0/WebApi.genruntimeconfig.cache index 1c1d0f9..30fddb5 100644 --- a/WebApi/obj/Debug/net6.0/WebApi.genruntimeconfig.cache +++ b/WebApi/obj/Debug/net6.0/WebApi.genruntimeconfig.cache @@ -1 +1 @@ -90a3e790d819b5bcb8ff12d692368555eb41e9e6 +b863a89dd9fb3bed721887235f275571fd31742d diff --git a/WebApi/obj/Debug/net6.0/WebApi.pdb b/WebApi/obj/Debug/net6.0/WebApi.pdb index badb67c..64f516d 100644 Binary files a/WebApi/obj/Debug/net6.0/WebApi.pdb and b/WebApi/obj/Debug/net6.0/WebApi.pdb differ diff --git a/WebApi/obj/Debug/net6.0/apphost.exe b/WebApi/obj/Debug/net6.0/apphost.exe index 191bd12..603704c 100644 Binary files a/WebApi/obj/Debug/net6.0/apphost.exe and b/WebApi/obj/Debug/net6.0/apphost.exe differ diff --git a/WebApi/obj/Debug/net6.0/project.razor.json b/WebApi/obj/Debug/net6.0/project.razor.json index 5f357df..cb03b21 100644 --- a/WebApi/obj/Debug/net6.0/project.razor.json +++ b/WebApi/obj/Debug/net6.0/project.razor.json @@ -1,5 +1,5 @@ { - "FilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "FilePath": "c:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "Configuration": { "ConfigurationName": "MVC-3.0", "LanguageVersion": "6.0", @@ -12,7 +12,7 @@ "ProjectWorkspaceState": { "TagHelpers": [ { - "HashCode": -112934548, + "HashCode": 193624468, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -89,7 +89,7 @@ } }, { - "HashCode": -752282932, + "HashCode": 1479791539, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -167,7 +167,7 @@ } }, { - "HashCode": 656825058, + "HashCode": -387007115, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -198,7 +198,7 @@ } }, { - "HashCode": -1722944650, + "HashCode": 2097801816, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -230,7 +230,7 @@ } }, { - "HashCode": 594869331, + "HashCode": -1872159485, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -249,7 +249,7 @@ } }, { - "HashCode": 20690640, + "HashCode": -1086251988, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -269,7 +269,7 @@ } }, { - "HashCode": 1153745760, + "HashCode": -1156615664, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -365,7 +365,7 @@ } }, { - "HashCode": 87929409, + "HashCode": 1597347699, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -462,7 +462,7 @@ } }, { - "HashCode": -1984738326, + "HashCode": -867137261, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -493,7 +493,7 @@ } }, { - "HashCode": 1771648053, + "HashCode": -1363777481, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -525,7 +525,7 @@ } }, { - "HashCode": -206534454, + "HashCode": 831483428, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -556,7 +556,7 @@ } }, { - "HashCode": -1483620595, + "HashCode": -2026955152, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -588,7 +588,7 @@ } }, { - "HashCode": 609591080, + "HashCode": -534716512, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -619,7 +619,7 @@ } }, { - "HashCode": -488829120, + "HashCode": 2107052667, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -651,7 +651,7 @@ } }, { - "HashCode": -1542090082, + "HashCode": -2014585744, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -670,7 +670,7 @@ } }, { - "HashCode": -1376613273, + "HashCode": -374517615, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -690,7 +690,7 @@ } }, { - "HashCode": -975468679, + "HashCode": -78234038, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -718,7 +718,7 @@ } }, { - "HashCode": 1854097868, + "HashCode": 410381611, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -747,7 +747,7 @@ } }, { - "HashCode": -1740045417, + "HashCode": -1312580124, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -766,7 +766,7 @@ } }, { - "HashCode": 593957769, + "HashCode": 1622534867, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -786,7 +786,7 @@ } }, { - "HashCode": -1443507124, + "HashCode": 710765210, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -855,7 +855,7 @@ } }, { - "HashCode": 1369611103, + "HashCode": -632140547, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -925,7 +925,7 @@ } }, { - "HashCode": -2127444307, + "HashCode": -1002458450, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -944,7 +944,7 @@ } }, { - "HashCode": 784377792, + "HashCode": 1251171294, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -964,7 +964,7 @@ } }, { - "HashCode": 76331484, + "HashCode": -2067953982, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1002,7 +1002,7 @@ } }, { - "HashCode": 925213353, + "HashCode": -1212639397, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1041,7 +1041,7 @@ } }, { - "HashCode": -1599869310, + "HashCode": 1988538094, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1079,7 +1079,7 @@ } }, { - "HashCode": -244124137, + "HashCode": -1153782660, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1118,7 +1118,7 @@ } }, { - "HashCode": -7358331, + "HashCode": -1624309179, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1137,7 +1137,7 @@ } }, { - "HashCode": 1229065069, + "HashCode": -1284286688, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1157,7 +1157,7 @@ } }, { - "HashCode": 1792086663, + "HashCode": -950293647, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1195,7 +1195,7 @@ } }, { - "HashCode": 2064537433, + "HashCode": -126829061, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1234,7 +1234,7 @@ } }, { - "HashCode": 801853805, + "HashCode": 48781174, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1333,7 +1333,7 @@ } }, { - "HashCode": 1357325444, + "HashCode": -1274893246, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1433,7 +1433,7 @@ } }, { - "HashCode": 2061459344, + "HashCode": 330353519, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1452,7 +1452,7 @@ } }, { - "HashCode": 1947852360, + "HashCode": 936638739, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1472,7 +1472,7 @@ } }, { - "HashCode": -488099957, + "HashCode": 1124224750, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1503,7 +1503,7 @@ } }, { - "HashCode": 988861955, + "HashCode": 185664341, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1535,7 +1535,7 @@ } }, { - "HashCode": 1868303658, + "HashCode": -801413795, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1554,7 +1554,7 @@ } }, { - "HashCode": -792066837, + "HashCode": 1977054162, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1574,7 +1574,7 @@ } }, { - "HashCode": 604821984, + "HashCode": -1666802868, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -1591,7 +1591,7 @@ } }, { - "HashCode": -533753556, + "HashCode": 2082283740, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -1609,7 +1609,7 @@ } }, { - "HashCode": 1822292310, + "HashCode": -1228198946, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1705,7 +1705,7 @@ } }, { - "HashCode": -1458361197, + "HashCode": 1768374507, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1802,7 +1802,7 @@ } }, { - "HashCode": 1217211034, + "HashCode": -1222751017, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1833,7 +1833,7 @@ } }, { - "HashCode": 1429197017, + "HashCode": 1670525148, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1865,7 +1865,7 @@ } }, { - "HashCode": 2090960272, + "HashCode": 1871843857, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1930,7 +1930,7 @@ } }, { - "HashCode": 1745438688, + "HashCode": 1501193174, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1996,7 +1996,7 @@ } }, { - "HashCode": -1936644401, + "HashCode": 40206399, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2095,7 +2095,7 @@ } }, { - "HashCode": -141948410, + "HashCode": 1969062689, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2195,7 +2195,7 @@ } }, { - "HashCode": 1567357766, + "HashCode": 947022989, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2233,7 +2233,7 @@ } }, { - "HashCode": -1026695925, + "HashCode": 197628257, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2272,7 +2272,7 @@ } }, { - "HashCode": 2073477114, + "HashCode": -746630452, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2361,7 +2361,7 @@ } }, { - "HashCode": 1258967951, + "HashCode": -91835336, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2451,7 +2451,7 @@ } }, { - "HashCode": -2110442515, + "HashCode": 1210521316, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2510,7 +2510,7 @@ } }, { - "HashCode": 1072247911, + "HashCode": -1136668803, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2570,7 +2570,7 @@ } }, { - "HashCode": 1905604623, + "HashCode": -410396141, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2669,7 +2669,7 @@ } }, { - "HashCode": -2062379935, + "HashCode": -52253093, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2769,7 +2769,7 @@ } }, { - "HashCode": -1784624122, + "HashCode": 1126240162, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2788,7 +2788,7 @@ } }, { - "HashCode": 1597828345, + "HashCode": -635778126, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2808,7 +2808,7 @@ } }, { - "HashCode": 696514856, + "HashCode": -1981359412, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2898,7 +2898,7 @@ } }, { - "HashCode": -635586536, + "HashCode": 688442, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2989,7 +2989,7 @@ } }, { - "HashCode": 1160028476, + "HashCode": -561698577, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3008,7 +3008,7 @@ } }, { - "HashCode": -1850912160, + "HashCode": 1999923664, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3028,7 +3028,7 @@ } }, { - "HashCode": -2136766456, + "HashCode": 522103049, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3093,7 +3093,7 @@ } }, { - "HashCode": 1091899598, + "HashCode": 57657446, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3159,7 +3159,7 @@ } }, { - "HashCode": 2058013651, + "HashCode": -1597866775, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3224,7 +3224,7 @@ } }, { - "HashCode": 365284748, + "HashCode": 1341651226, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3290,7 +3290,7 @@ } }, { - "HashCode": 1659876325, + "HashCode": 1083301438, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3340,7 +3340,7 @@ } }, { - "HashCode": -1888477387, + "HashCode": 940312376, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3391,7 +3391,7 @@ } }, { - "HashCode": 33922070, + "HashCode": -811424002, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3428,7 +3428,7 @@ } }, { - "HashCode": 1754122402, + "HashCode": -100264922, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3466,7 +3466,7 @@ } }, { - "HashCode": 1645746857, + "HashCode": 399411645, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3503,7 +3503,7 @@ } }, { - "HashCode": 479403941, + "HashCode": -1985300220, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3541,7 +3541,7 @@ } }, { - "HashCode": 921617806, + "HashCode": 519961256, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3598,7 +3598,7 @@ } }, { - "HashCode": 1319620418, + "HashCode": -2057863072, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3656,7 +3656,7 @@ } }, { - "HashCode": -666332461, + "HashCode": -595165004, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3675,7 +3675,7 @@ } }, { - "HashCode": -1361378051, + "HashCode": 383058285, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3695,7 +3695,7 @@ } }, { - "HashCode": -314620313, + "HashCode": -539348436, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3724,7 +3724,7 @@ } }, { - "HashCode": 80225636, + "HashCode": -529513869, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3754,7 +3754,7 @@ } }, { - "HashCode": -200395011, + "HashCode": -1234041480, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3773,7 +3773,7 @@ } }, { - "HashCode": -1300853947, + "HashCode": 735823398, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3793,7 +3793,7 @@ } }, { - "HashCode": -2139747270, + "HashCode": -135111673, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3810,7 +3810,7 @@ } }, { - "HashCode": 492765551, + "HashCode": -683122908, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3828,7 +3828,7 @@ } }, { - "HashCode": 2129738110, + "HashCode": -876862404, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3857,7 +3857,7 @@ } }, { - "HashCode": 1670571572, + "HashCode": 1007505935, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3887,7 +3887,7 @@ } }, { - "HashCode": 1004600791, + "HashCode": -347704933, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3906,7 +3906,7 @@ } }, { - "HashCode": -676502272, + "HashCode": 1497279009, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3926,7 +3926,7 @@ } }, { - "HashCode": 163671608, + "HashCode": -367382154, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3984,7 +3984,7 @@ } }, { - "HashCode": 1749680238, + "HashCode": -973437384, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4043,7 +4043,7 @@ } }, { - "HashCode": -723430142, + "HashCode": -104619641, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4062,7 +4062,7 @@ } }, { - "HashCode": 1778852082, + "HashCode": -1925634352, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4082,7 +4082,7 @@ } }, { - "HashCode": 399757391, + "HashCode": 1175012901, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4113,7 +4113,7 @@ } }, { - "HashCode": -748741100, + "HashCode": 774847694, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4145,7 +4145,7 @@ } }, { - "HashCode": -1883659236, + "HashCode": -2087302615, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4257,7 +4257,7 @@ } }, { - "HashCode": 1709451598, + "HashCode": -1705000348, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4370,7 +4370,7 @@ } }, { - "HashCode": 358524911, + "HashCode": -1280831611, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4401,7 +4401,7 @@ } }, { - "HashCode": 1015151314, + "HashCode": -681035331, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4433,7 +4433,7 @@ } }, { - "HashCode": -1195055215, + "HashCode": 1370118196, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4464,7 +4464,7 @@ } }, { - "HashCode": 340047128, + "HashCode": -524218554, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4496,7 +4496,7 @@ } }, { - "HashCode": -2010459731, + "HashCode": 1969263054, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4527,7 +4527,7 @@ } }, { - "HashCode": -222280931, + "HashCode": 647662777, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4559,7 +4559,7 @@ } }, { - "HashCode": -1853189229, + "HashCode": 1386100548, "Kind": "Components.EventHandler", "Name": "onfocus", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4640,7 +4640,7 @@ } }, { - "HashCode": -1285195829, + "HashCode": -240348815, "Kind": "Components.EventHandler", "Name": "onblur", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4721,7 +4721,7 @@ } }, { - "HashCode": 555395137, + "HashCode": -611040136, "Kind": "Components.EventHandler", "Name": "onfocusin", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4802,7 +4802,7 @@ } }, { - "HashCode": -1356430520, + "HashCode": 543922249, "Kind": "Components.EventHandler", "Name": "onfocusout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4883,7 +4883,7 @@ } }, { - "HashCode": -595090700, + "HashCode": 1923394830, "Kind": "Components.EventHandler", "Name": "onmouseover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4964,7 +4964,7 @@ } }, { - "HashCode": -1797668778, + "HashCode": 1682486414, "Kind": "Components.EventHandler", "Name": "onmouseout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5045,7 +5045,7 @@ } }, { - "HashCode": 1150791417, + "HashCode": 1901152385, "Kind": "Components.EventHandler", "Name": "onmousemove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5126,7 +5126,7 @@ } }, { - "HashCode": 4396696, + "HashCode": 1939301447, "Kind": "Components.EventHandler", "Name": "onmousedown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5207,7 +5207,7 @@ } }, { - "HashCode": -1782802131, + "HashCode": -2061536500, "Kind": "Components.EventHandler", "Name": "onmouseup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5288,7 +5288,7 @@ } }, { - "HashCode": -1493333417, + "HashCode": -965056347, "Kind": "Components.EventHandler", "Name": "onclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5369,7 +5369,7 @@ } }, { - "HashCode": 1319829634, + "HashCode": 1657536983, "Kind": "Components.EventHandler", "Name": "ondblclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5450,7 +5450,7 @@ } }, { - "HashCode": -2008001764, + "HashCode": -2049799366, "Kind": "Components.EventHandler", "Name": "onwheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5531,7 +5531,7 @@ } }, { - "HashCode": 2076826125, + "HashCode": -1004858538, "Kind": "Components.EventHandler", "Name": "onmousewheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5612,7 +5612,7 @@ } }, { - "HashCode": -1029777452, + "HashCode": 670323780, "Kind": "Components.EventHandler", "Name": "oncontextmenu", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5693,7 +5693,7 @@ } }, { - "HashCode": 125764722, + "HashCode": 777874582, "Kind": "Components.EventHandler", "Name": "ondrag", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5774,7 +5774,7 @@ } }, { - "HashCode": -1400547953, + "HashCode": -1358943589, "Kind": "Components.EventHandler", "Name": "ondragend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5855,7 +5855,7 @@ } }, { - "HashCode": -391307244, + "HashCode": -1390401892, "Kind": "Components.EventHandler", "Name": "ondragenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5936,7 +5936,7 @@ } }, { - "HashCode": -1617903144, + "HashCode": 2115423835, "Kind": "Components.EventHandler", "Name": "ondragleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6017,7 +6017,7 @@ } }, { - "HashCode": -962176844, + "HashCode": 733277287, "Kind": "Components.EventHandler", "Name": "ondragover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6098,7 +6098,7 @@ } }, { - "HashCode": -1390675773, + "HashCode": -217410183, "Kind": "Components.EventHandler", "Name": "ondragstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6179,7 +6179,7 @@ } }, { - "HashCode": -832260269, + "HashCode": 2077685695, "Kind": "Components.EventHandler", "Name": "ondrop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6260,7 +6260,7 @@ } }, { - "HashCode": 239221413, + "HashCode": -538907267, "Kind": "Components.EventHandler", "Name": "onkeydown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6341,7 +6341,7 @@ } }, { - "HashCode": 225610900, + "HashCode": 1926532319, "Kind": "Components.EventHandler", "Name": "onkeyup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6422,7 +6422,7 @@ } }, { - "HashCode": -1426425803, + "HashCode": -653502838, "Kind": "Components.EventHandler", "Name": "onkeypress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6503,7 +6503,7 @@ } }, { - "HashCode": 2109286305, + "HashCode": 22370255, "Kind": "Components.EventHandler", "Name": "onchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6584,7 +6584,7 @@ } }, { - "HashCode": 1728223986, + "HashCode": 1596434268, "Kind": "Components.EventHandler", "Name": "oninput", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6665,7 +6665,7 @@ } }, { - "HashCode": 2122654343, + "HashCode": -624479622, "Kind": "Components.EventHandler", "Name": "oninvalid", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6746,7 +6746,7 @@ } }, { - "HashCode": -814238218, + "HashCode": -95318438, "Kind": "Components.EventHandler", "Name": "onreset", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6827,7 +6827,7 @@ } }, { - "HashCode": 1640039896, + "HashCode": 1786558671, "Kind": "Components.EventHandler", "Name": "onselect", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6908,7 +6908,7 @@ } }, { - "HashCode": 47260699, + "HashCode": -851211239, "Kind": "Components.EventHandler", "Name": "onselectstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6989,7 +6989,7 @@ } }, { - "HashCode": 2067679621, + "HashCode": 1122540765, "Kind": "Components.EventHandler", "Name": "onselectionchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7070,7 +7070,7 @@ } }, { - "HashCode": 611511004, + "HashCode": 614464875, "Kind": "Components.EventHandler", "Name": "onsubmit", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7151,7 +7151,7 @@ } }, { - "HashCode": -609912573, + "HashCode": -1028163368, "Kind": "Components.EventHandler", "Name": "onbeforecopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7232,7 +7232,7 @@ } }, { - "HashCode": 1834318784, + "HashCode": 1626998015, "Kind": "Components.EventHandler", "Name": "onbeforecut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7313,7 +7313,7 @@ } }, { - "HashCode": 658684194, + "HashCode": 1288619059, "Kind": "Components.EventHandler", "Name": "onbeforepaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7394,7 +7394,7 @@ } }, { - "HashCode": -2025815216, + "HashCode": -250999241, "Kind": "Components.EventHandler", "Name": "oncopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7475,7 +7475,7 @@ } }, { - "HashCode": -1567926752, + "HashCode": 70162479, "Kind": "Components.EventHandler", "Name": "oncut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7556,7 +7556,7 @@ } }, { - "HashCode": 1051444159, + "HashCode": -1714533714, "Kind": "Components.EventHandler", "Name": "onpaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7637,7 +7637,7 @@ } }, { - "HashCode": -247274067, + "HashCode": -1781174906, "Kind": "Components.EventHandler", "Name": "ontouchcancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7718,7 +7718,7 @@ } }, { - "HashCode": 47183142, + "HashCode": 1509603127, "Kind": "Components.EventHandler", "Name": "ontouchend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7799,7 +7799,7 @@ } }, { - "HashCode": 473870646, + "HashCode": -1998583525, "Kind": "Components.EventHandler", "Name": "ontouchmove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7880,7 +7880,7 @@ } }, { - "HashCode": -132869850, + "HashCode": -1849746764, "Kind": "Components.EventHandler", "Name": "ontouchstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7961,7 +7961,7 @@ } }, { - "HashCode": -1394929106, + "HashCode": 866679768, "Kind": "Components.EventHandler", "Name": "ontouchenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8042,7 +8042,7 @@ } }, { - "HashCode": 66959475, + "HashCode": -1418778051, "Kind": "Components.EventHandler", "Name": "ontouchleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8123,7 +8123,7 @@ } }, { - "HashCode": 31703669, + "HashCode": -1340772808, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8204,7 +8204,7 @@ } }, { - "HashCode": -738468176, + "HashCode": -1050047069, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8285,7 +8285,7 @@ } }, { - "HashCode": -483663610, + "HashCode": -2023111777, "Kind": "Components.EventHandler", "Name": "onpointercancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8366,7 +8366,7 @@ } }, { - "HashCode": 2138453365, + "HashCode": -1747628784, "Kind": "Components.EventHandler", "Name": "onpointerdown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8447,7 +8447,7 @@ } }, { - "HashCode": 653862396, + "HashCode": -1329087059, "Kind": "Components.EventHandler", "Name": "onpointerenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8528,7 +8528,7 @@ } }, { - "HashCode": -1620327127, + "HashCode": 1571241800, "Kind": "Components.EventHandler", "Name": "onpointerleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8609,7 +8609,7 @@ } }, { - "HashCode": 1240705101, + "HashCode": -497767280, "Kind": "Components.EventHandler", "Name": "onpointermove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8690,7 +8690,7 @@ } }, { - "HashCode": -706309089, + "HashCode": 1883131892, "Kind": "Components.EventHandler", "Name": "onpointerout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8771,7 +8771,7 @@ } }, { - "HashCode": -981360809, + "HashCode": -450262237, "Kind": "Components.EventHandler", "Name": "onpointerover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8852,7 +8852,7 @@ } }, { - "HashCode": 1114338248, + "HashCode": -1151505951, "Kind": "Components.EventHandler", "Name": "onpointerup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8933,7 +8933,7 @@ } }, { - "HashCode": -790337965, + "HashCode": -268330334, "Kind": "Components.EventHandler", "Name": "oncanplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9014,7 +9014,7 @@ } }, { - "HashCode": 681590386, + "HashCode": 451001930, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9095,7 +9095,7 @@ } }, { - "HashCode": 245536446, + "HashCode": 989714402, "Kind": "Components.EventHandler", "Name": "oncuechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9176,7 +9176,7 @@ } }, { - "HashCode": -622345090, + "HashCode": 960129634, "Kind": "Components.EventHandler", "Name": "ondurationchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9257,7 +9257,7 @@ } }, { - "HashCode": 112329908, + "HashCode": -969468132, "Kind": "Components.EventHandler", "Name": "onemptied", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9338,7 +9338,7 @@ } }, { - "HashCode": 408515113, + "HashCode": -2118784942, "Kind": "Components.EventHandler", "Name": "onpause", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9419,7 +9419,7 @@ } }, { - "HashCode": -665476627, + "HashCode": -838183469, "Kind": "Components.EventHandler", "Name": "onplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9500,7 +9500,7 @@ } }, { - "HashCode": -1142976904, + "HashCode": -423860398, "Kind": "Components.EventHandler", "Name": "onplaying", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9581,7 +9581,7 @@ } }, { - "HashCode": -1425030307, + "HashCode": -1195224271, "Kind": "Components.EventHandler", "Name": "onratechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9662,7 +9662,7 @@ } }, { - "HashCode": -736808037, + "HashCode": 1844879553, "Kind": "Components.EventHandler", "Name": "onseeked", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9743,7 +9743,7 @@ } }, { - "HashCode": -1838422199, + "HashCode": -1150361026, "Kind": "Components.EventHandler", "Name": "onseeking", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9824,7 +9824,7 @@ } }, { - "HashCode": -61048860, + "HashCode": 1084102842, "Kind": "Components.EventHandler", "Name": "onstalled", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9905,7 +9905,7 @@ } }, { - "HashCode": 1004461302, + "HashCode": -124600818, "Kind": "Components.EventHandler", "Name": "onstop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9986,7 +9986,7 @@ } }, { - "HashCode": -1241620201, + "HashCode": 79534890, "Kind": "Components.EventHandler", "Name": "onsuspend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10067,7 +10067,7 @@ } }, { - "HashCode": -1311540142, + "HashCode": -389896909, "Kind": "Components.EventHandler", "Name": "ontimeupdate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10148,7 +10148,7 @@ } }, { - "HashCode": 1833829262, + "HashCode": -1061611537, "Kind": "Components.EventHandler", "Name": "onvolumechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10229,7 +10229,7 @@ } }, { - "HashCode": 693979893, + "HashCode": 1394857136, "Kind": "Components.EventHandler", "Name": "onwaiting", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10310,7 +10310,7 @@ } }, { - "HashCode": 1472762394, + "HashCode": -1741068904, "Kind": "Components.EventHandler", "Name": "onloadstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10391,7 +10391,7 @@ } }, { - "HashCode": 632859492, + "HashCode": 472280743, "Kind": "Components.EventHandler", "Name": "ontimeout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10472,7 +10472,7 @@ } }, { - "HashCode": -657567948, + "HashCode": 1695755318, "Kind": "Components.EventHandler", "Name": "onabort", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10553,7 +10553,7 @@ } }, { - "HashCode": -1244577887, + "HashCode": 1292286763, "Kind": "Components.EventHandler", "Name": "onload", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10634,7 +10634,7 @@ } }, { - "HashCode": -895096527, + "HashCode": 2044479338, "Kind": "Components.EventHandler", "Name": "onloadend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10715,7 +10715,7 @@ } }, { - "HashCode": 667459048, + "HashCode": -1244070768, "Kind": "Components.EventHandler", "Name": "onprogress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10796,7 +10796,7 @@ } }, { - "HashCode": -676366916, + "HashCode": 1454191505, "Kind": "Components.EventHandler", "Name": "onerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10877,7 +10877,7 @@ } }, { - "HashCode": -1607016140, + "HashCode": -870754066, "Kind": "Components.EventHandler", "Name": "onactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10958,7 +10958,7 @@ } }, { - "HashCode": 56854559, + "HashCode": 1795472209, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11039,7 +11039,7 @@ } }, { - "HashCode": 43667714, + "HashCode": 2085336682, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11120,7 +11120,7 @@ } }, { - "HashCode": -1491524397, + "HashCode": 1241135096, "Kind": "Components.EventHandler", "Name": "ondeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11201,7 +11201,7 @@ } }, { - "HashCode": 968225690, + "HashCode": 2146851986, "Kind": "Components.EventHandler", "Name": "onended", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11282,7 +11282,7 @@ } }, { - "HashCode": -1612383968, + "HashCode": 1672095878, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11363,7 +11363,7 @@ } }, { - "HashCode": -1705059314, + "HashCode": 1850588519, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11444,7 +11444,7 @@ } }, { - "HashCode": 1050882083, + "HashCode": 1042312549, "Kind": "Components.EventHandler", "Name": "onloadeddata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11525,7 +11525,7 @@ } }, { - "HashCode": 1427042547, + "HashCode": -1059730910, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11606,7 +11606,7 @@ } }, { - "HashCode": 1682834568, + "HashCode": -979362375, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11687,7 +11687,7 @@ } }, { - "HashCode": 634634360, + "HashCode": 364052558, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11768,7 +11768,7 @@ } }, { - "HashCode": 238638552, + "HashCode": -338988747, "Kind": "Components.EventHandler", "Name": "onreadystatechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11849,7 +11849,7 @@ } }, { - "HashCode": 1649861252, + "HashCode": -347678360, "Kind": "Components.EventHandler", "Name": "onscroll", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11930,7 +11930,7 @@ } }, { - "HashCode": -1410107630, + "HashCode": 750659304, "Kind": "Components.EventHandler", "Name": "ontoggle", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -12011,7 +12011,7 @@ } }, { - "HashCode": 796981070, + "HashCode": 1902288273, "Kind": "Components.Splat", "Name": "Attributes", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -12050,7 +12050,7 @@ } }, { - "HashCode": 221391713, + "HashCode": 1366803981, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", @@ -12365,7 +12365,7 @@ } }, { - "HashCode": 1512746064, + "HashCode": -1428076054, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12562,7 +12562,7 @@ } }, { - "HashCode": 665882365, + "HashCode": -1010741292, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12689,7 +12689,7 @@ } }, { - "HashCode": -69137886, + "HashCode": -1547783311, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12744,7 +12744,7 @@ } }, { - "HashCode": -1653512688, + "HashCode": -1919851641, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12876,7 +12876,7 @@ } }, { - "HashCode": -1140173745, + "HashCode": 989077012, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12922,7 +12922,7 @@ } }, { - "HashCode": -1162787110, + "HashCode": -2103901428, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13339,7 +13339,7 @@ } }, { - "HashCode": -1197945331, + "HashCode": -274687646, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13441,7 +13441,7 @@ } }, { - "HashCode": -1020252087, + "HashCode": 1378955310, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13487,7 +13487,7 @@ } }, { - "HashCode": -1013885640, + "HashCode": -1120067885, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13557,7 +13557,7 @@ } }, { - "HashCode": 235380787, + "HashCode": 747751093, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13590,7 +13590,7 @@ } }, { - "HashCode": 1298797976, + "HashCode": -311520760, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13786,7 +13786,7 @@ } }, { - "HashCode": -983860448, + "HashCode": -1108923263, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13814,7 +13814,7 @@ } }, { - "HashCode": -1986675148, + "HashCode": 391297918, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13895,7 +13895,7 @@ } }, { - "HashCode": 1836556575, + "HashCode": 35888993, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13924,7 +13924,7 @@ } }, { - "HashCode": -652913987, + "HashCode": 869387442, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14077,7 +14077,7 @@ } }, { - "HashCode": 1150118320, + "HashCode": 215055048, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14136,7 +14136,7 @@ } }, { - "HashCode": -1490228751, + "HashCode": -140368834, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14178,7 +14178,7 @@ } }, { - "HashCode": 874717963, + "HashCode": -714277001, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14211,7 +14211,7 @@ } }, { - "HashCode": 715626214, + "HashCode": 775902418, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14245,7 +14245,7 @@ } }, { - "HashCode": 794274042, + "HashCode": 583977663, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14314,7 +14314,7 @@ } }, { - "HashCode": 809459356, + "HashCode": 187612947, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14392,7 +14392,7 @@ } }, { - "HashCode": 497582600, + "HashCode": 532008057, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14470,7 +14470,7 @@ } }, { - "HashCode": -781568117, + "HashCode": -2094465117, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14554,7 +14554,7 @@ } }, { - "HashCode": -1524470100, + "HashCode": -1105652082, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14638,7 +14638,7 @@ } }, { - "HashCode": -207806426, + "HashCode": 460867117, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14722,7 +14722,7 @@ } }, { - "HashCode": 1810593269, + "HashCode": 1081253614, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14806,7 +14806,7 @@ } }, { - "HashCode": 97494973, + "HashCode": 1708262406, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14890,7 +14890,7 @@ } }, { - "HashCode": 1499793124, + "HashCode": -970497954, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14974,7 +14974,7 @@ } }, { - "HashCode": -477788722, + "HashCode": -2955753, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15058,7 +15058,7 @@ } }, { - "HashCode": -1555200420, + "HashCode": -1184254598, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15142,7 +15142,7 @@ } }, { - "HashCode": 364265683, + "HashCode": -761615980, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15226,7 +15226,7 @@ } }, { - "HashCode": 1538809638, + "HashCode": 487240589, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15310,7 +15310,7 @@ } }, { - "HashCode": -1347379790, + "HashCode": -1682904826, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15394,7 +15394,7 @@ } }, { - "HashCode": -479080565, + "HashCode": -1377411857, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15478,7 +15478,7 @@ } }, { - "HashCode": -704482881, + "HashCode": 1695558431, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15556,7 +15556,7 @@ } }, { - "HashCode": 1749693702, + "HashCode": 1208879454, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15634,7 +15634,7 @@ } }, { - "HashCode": -1767172698, + "HashCode": 885810615, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15675,7 +15675,7 @@ } }, { - "HashCode": -1968350374, + "HashCode": -796516604, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15717,7 +15717,7 @@ } }, { - "HashCode": 980755059, + "HashCode": 1680028102, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15758,7 +15758,7 @@ } }, { - "HashCode": -645077098, + "HashCode": -541403251, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15800,7 +15800,7 @@ } }, { - "HashCode": 811453122, + "HashCode": 1379740497, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15841,7 +15841,7 @@ } }, { - "HashCode": 2088682349, + "HashCode": -1309917849, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15883,7 +15883,7 @@ } }, { - "HashCode": -660372305, + "HashCode": 1159006917, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15924,7 +15924,7 @@ } }, { - "HashCode": 1157593445, + "HashCode": 856777369, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15966,7 +15966,7 @@ } }, { - "HashCode": 776017135, + "HashCode": 1883712276, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16007,7 +16007,7 @@ } }, { - "HashCode": 210902599, + "HashCode": -293531080, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16049,7 +16049,7 @@ } }, { - "HashCode": 422377951, + "HashCode": -1197955772, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16090,7 +16090,7 @@ } }, { - "HashCode": 1609245724, + "HashCode": 116000496, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16132,7 +16132,7 @@ } }, { - "HashCode": 1373336777, + "HashCode": -159944279, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16173,7 +16173,7 @@ } }, { - "HashCode": -722183026, + "HashCode": 142558912, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16215,7 +16215,7 @@ } }, { - "HashCode": 1839399746, + "HashCode": -1518997226, "Kind": "Components.Ref", "Name": "Ref", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -16254,7 +16254,7 @@ } }, { - "HashCode": -1650706346, + "HashCode": 1174083262, "Kind": "Components.Key", "Name": "Key", "AssemblyName": "Microsoft.AspNetCore.Components", diff --git a/WebApi/obj/Debug/net6.0/ref/WebApi.dll b/WebApi/obj/Debug/net6.0/ref/WebApi.dll index 6a4c508..ef2c4a7 100644 Binary files a/WebApi/obj/Debug/net6.0/ref/WebApi.dll and b/WebApi/obj/Debug/net6.0/ref/WebApi.dll differ diff --git a/WebApi/obj/Debug/net6.0/refint/WebApi.dll b/WebApi/obj/Debug/net6.0/refint/WebApi.dll index 6a4c508..ef2c4a7 100644 Binary files a/WebApi/obj/Debug/net6.0/refint/WebApi.dll and b/WebApi/obj/Debug/net6.0/refint/WebApi.dll differ diff --git a/WebApi/obj/WebApi.csproj.nuget.dgspec.json b/WebApi/obj/WebApi.csproj.nuget.dgspec.json index f475001..ff2f980 100644 --- a/WebApi/obj/WebApi.csproj.nuget.dgspec.json +++ b/WebApi/obj/WebApi.csproj.nuget.dgspec.json @@ -1,33 +1,35 @@ { "format": 1, "restore": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj": {} + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj": {} }, "projects": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" } } } @@ -69,8 +71,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -79,26 +80,28 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "projectName": "Domain", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -122,8 +125,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -132,34 +134,36 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "projectName": "Gateway", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" } } } @@ -177,6 +181,10 @@ "Microsoft.Extensions.Configuration.Abstractions": { "target": "Package", "version": "[6.0.0, )" + }, + "Twilio": { + "target": "Package", + "version": "[5.81.2, )" } }, "imports": [ @@ -185,8 +193,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -195,34 +202,36 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "projectName": "IOC", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj" } } } @@ -252,8 +261,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -262,40 +270,42 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", "projectName": "Persistence", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\Persistence.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\Persistence.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Persistence\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Persistence\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Domain\\Domain.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Domain\\Domain.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Gateway\\Gateway.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Gateway\\Gateway.csproj" } } } @@ -310,6 +320,14 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.7, )" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, "Pomelo.EntityFrameworkCore.MySql": { "target": "Package", "version": "[6.0.2, )" @@ -321,8 +339,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -331,37 +348,39 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj": { + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "projectName": "WebApi", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj" } } } @@ -409,8 +428,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -422,7 +440,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } } diff --git a/WebApi/obj/WebApi.csproj.nuget.g.props b/WebApi/obj/WebApi.csproj.nuget.g.props index f651250..9cc3039 100644 --- a/WebApi/obj/WebApi.csproj.nuget.g.props +++ b/WebApi/obj/WebApi.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\user\.nuget\packages\ PackageReference - 6.3.1 + 6.2.0 diff --git a/WebApi/obj/project.assets.json b/WebApi/obj/project.assets.json index edffc30..2296111 100644 --- a/WebApi/obj/project.assets.json +++ b/WebApi/obj/project.assets.json @@ -11,27 +11,19 @@ "System.Reflection.Emit.Lightweight": "4.3.0" }, "compile": { - "lib/netstandard2.0/Elasticsearch.Net.dll": { - "related": ".pdb;.xml" - } + "lib/netstandard2.0/Elasticsearch.Net.dll": {} }, "runtime": { - "lib/netstandard2.0/Elasticsearch.Net.dll": { - "related": ".pdb;.xml" - } + "lib/netstandard2.0/Elasticsearch.Net.dll": {} } }, "Humanizer.Core/2.8.26": { "type": "package", "compile": { - "lib/netstandard2.0/_._": { - "related": ".xml" - } + "lib/netstandard2.0/_._": {} }, "runtime": { - "lib/netstandard2.0/Humanizer.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Humanizer.dll": {} } }, "Mapster/7.3.0": { @@ -63,27 +55,19 @@ "MediatR.Contracts": "1.0.1" }, "compile": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} }, "runtime": { - "lib/netstandard2.1/MediatR.dll": { - "related": ".xml" - } + "lib/netstandard2.1/MediatR.dll": {} } }, "MediatR.Contracts/1.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} }, "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } + "lib/netstandard2.0/MediatR.Contracts.dll": {} } }, "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": { @@ -106,43 +90,19 @@ "System.IO.Pipelines": "5.0.2" }, "compile": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} }, "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": { - "related": ".xml" - } + "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.CSharp/4.5.0": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/_._": {} }, "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} + "lib/netcoreapp2.0/_._": {} } }, "Microsoft.EntityFrameworkCore/6.0.7": { @@ -157,14 +117,10 @@ "System.Diagnostics.DiagnosticSource": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {} }, "build": { "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} @@ -173,14 +129,10 @@ "Microsoft.EntityFrameworkCore.Abstractions/6.0.7": { "type": "package", "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} } }, "Microsoft.EntityFrameworkCore.Analyzers/6.0.7": { @@ -199,14 +151,10 @@ "Microsoft.EntityFrameworkCore.Relational": "6.0.3" }, "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } + "lib/net6.0/_._": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {} }, "build": { "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} @@ -219,14 +167,10 @@ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {} } }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { @@ -246,14 +190,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} } }, "Microsoft.Extensions.Caching.Memory/6.0.1": { @@ -266,14 +206,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} } }, "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { @@ -282,14 +218,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} } }, "Microsoft.Extensions.DependencyInjection/6.0.0": { @@ -299,14 +231,10 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -315,14 +243,10 @@ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -338,27 +262,19 @@ "System.Diagnostics.DiagnosticSource": "6.0.0" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} } }, "Microsoft.Extensions.Logging.Abstractions/6.0.1": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -371,14 +287,10 @@ "Microsoft.Extensions.Primitives": "6.0.0" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} } }, "Microsoft.Extensions.Primitives/6.0.0": { @@ -387,19 +299,62 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} } }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.19.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { @@ -421,53 +376,37 @@ "Microsoft.OpenApi/1.2.3": { "type": "package", "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} } }, "MySqlConnector/2.1.2": { "type": "package", "compile": { - "lib/net6.0/MySqlConnector.dll": { - "related": ".xml" - } + "lib/net6.0/MySqlConnector.dll": {} }, "runtime": { - "lib/net6.0/MySqlConnector.dll": { - "related": ".xml" - } + "lib/net6.0/MySqlConnector.dll": {} } }, - "Newtonsoft.Json/12.0.3": { + "Newtonsoft.Json/13.0.1": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "NLog/4.7.15": { "type": "package", "compile": { - "lib/netstandard2.0/NLog.dll": { - "related": ".xml" - } + "lib/netstandard2.0/NLog.dll": {} }, "runtime": { - "lib/netstandard2.0/NLog.dll": { - "related": ".xml" - } + "lib/netstandard2.0/NLog.dll": {} } }, "NLog.Extensions.Logging/1.7.4": { @@ -478,14 +417,10 @@ "NLog": "4.7.11" }, "compile": { - "lib/net5.0/NLog.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/net5.0/NLog.Extensions.Logging.dll": {} }, "runtime": { - "lib/net5.0/NLog.Extensions.Logging.dll": { - "related": ".xml" - } + "lib/net5.0/NLog.Extensions.Logging.dll": {} } }, "NLog.Targets.ElasticSearch/7.5.0": { @@ -496,14 +431,10 @@ "Newtonsoft.Json": "12.0.3" }, "compile": { - "lib/netstandard2.0/NLog.Targets.ElasticSearch.dll": { - "related": ".xml" - } + "lib/netstandard2.0/NLog.Targets.ElasticSearch.dll": {} }, "runtime": { - "lib/netstandard2.0/NLog.Targets.ElasticSearch.dll": { - "related": ".xml" - } + "lib/netstandard2.0/NLog.Targets.ElasticSearch.dll": {} } }, "NLog.Web.AspNetCore/4.14.0": { @@ -512,14 +443,10 @@ "NLog.Extensions.Logging": "1.7.4" }, "compile": { - "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": { - "related": ".xml" - } + "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {} }, "runtime": { - "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": { - "related": ".xml" - } + "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {} }, "frameworkReferences": [ "Microsoft.AspNetCore.App" @@ -533,14 +460,10 @@ "MySqlConnector": "2.1.2" }, "compile": { - "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": { - "related": ".xml" - } + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} }, "runtime": { - "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": { - "related": ".xml" - } + "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {} } }, "Swashbuckle.AspNetCore/6.2.3": { @@ -561,14 +484,10 @@ "Microsoft.OpenApi": "1.2.3" }, "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} }, "frameworkReferences": [ "Microsoft.AspNetCore.App" @@ -580,27 +499,19 @@ "Swashbuckle.AspNetCore.Swagger": "6.2.3" }, "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} } }, "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { "type": "package", "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} }, "frameworkReferences": [ "Microsoft.AspNetCore.App" @@ -615,36 +526,54 @@ "lib/netcoreapp2.0/_._": {} } }, - "System.Collections/4.3.0": { + "System.Collections.Immutable/6.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "lib/net6.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/net6.0/System.Collections.Immutable.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, - "System.Collections.Immutable/6.0.0": { + "System.Collections.NonGeneric/4.3.0": { "type": "package", "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} } }, "System.Diagnostics.Debug/4.3.0": { @@ -655,9 +584,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Diagnostics.DiagnosticSource/6.0.0": { @@ -666,46 +593,15 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} }, "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} } }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -714,103 +610,66 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, - "System.IO/4.3.0": { + "System.Globalization.Extensions/4.3.0": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.Pipelines/5.0.2": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/System.IO.Pipelines.dll": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, - "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": { - "related": ".xml" + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" } } }, - "System.Linq/4.3.0": { + "System.IdentityModel.Tokens.Jwt/6.19.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" + "Microsoft.IdentityModel.JsonWebTokens": "6.19.0", + "Microsoft.IdentityModel.Tokens": "6.19.0" }, "compile": { - "ref/netstandard1.6/_._": { - "related": ".xml" - } + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} }, "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} } }, - "System.Linq.Expressions/4.3.0": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} + "ref/netstandard1.5/System.IO.dll": {} } }, - "System.ObjectModel/4.3.0": { + "System.IO.Pipelines/5.0.2": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} + "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} } }, "System.Reflection/4.3.0": { @@ -823,9 +682,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Reflection.dll": {} } }, "System.Reflection.Emit/4.3.0": { @@ -838,9 +695,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/netstandard1.1/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.dll": {} @@ -854,9 +709,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} @@ -871,28 +724,12 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} } }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - } - }, "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { @@ -901,24 +738,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, "System.Resources.ResourceManager/4.3.0": { @@ -931,9 +751,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } + "ref/netstandard1.0/_._": {} } }, "System.Runtime/4.3.0": { @@ -943,22 +761,16 @@ "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } + "ref/netstandard1.5/System.Runtime.dll": {} } }, "System.Runtime.CompilerServices.Unsafe/6.0.0": { "type": "package", "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} }, "build": { "buildTransitive/netcoreapp3.1/_._": {} @@ -972,9 +784,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } + "ref/netstandard1.5/_._": {} } }, "System.Runtime.Handles/4.3.0": { @@ -985,9 +795,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} } }, "System.Runtime.InteropServices/4.3.0": { @@ -1004,6 +812,21 @@ "ref/netcoreapp1.1/_._": {} } }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { @@ -1012,9 +835,7 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Text.Encoding.dll": {} } }, "System.Threading/4.3.0": { @@ -1024,9 +845,7 @@ "System.Threading.Tasks": "4.3.0" }, "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } + "ref/netstandard1.3/_._": {} }, "runtime": { "lib/netstandard1.3/System.Threading.dll": {} @@ -1040,9 +859,22 @@ "System.Runtime": "4.3.0" }, "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "Twilio/5.81.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.19.0", + "Newtonsoft.Json": "13.0.1", + "System.Collections.Specialized": "4.3.0", + "System.IdentityModel.Tokens.Jwt": "6.19.0" + }, + "compile": { + "lib/netstandard2.0/Twilio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Twilio.dll": {} } }, "Application/1.0.0": { @@ -1078,7 +910,8 @@ "framework": ".NETCoreApp,Version=v6.0", "dependencies": { "Application": "1.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Twilio": "5.81.2" }, "compile": { "bin/placeholder/Gateway.dll": {} @@ -1109,6 +942,8 @@ "Application": "1.0.0", "Domain": "1.0.0", "Gateway": "1.0.0", + "Microsoft.EntityFrameworkCore": "6.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", "Pomelo.EntityFrameworkCore.MySql": "6.0.2" }, "compile": { @@ -1248,21 +1083,24 @@ "microsoft.aspnetcore.http.features.nuspec" ] }, - "Microsoft.CSharp/4.3.0": { - "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", "type": "package", - "path": "microsoft.csharp/4.3.0", + "path": "microsoft.csharp/4.5.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", @@ -1270,7 +1108,7 @@ "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.4.5.0.nupkg.sha512", "microsoft.csharp.nuspec", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", @@ -1286,6 +1124,7 @@ "ref/netcore50/ru/Microsoft.CSharp.xml", "ref/netcore50/zh-hans/Microsoft.CSharp.xml", "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", "ref/netstandard1.0/Microsoft.CSharp.dll", "ref/netstandard1.0/Microsoft.CSharp.xml", "ref/netstandard1.0/de/Microsoft.CSharp.xml", @@ -1297,14 +1136,19 @@ "ref/netstandard1.0/ru/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" ] }, "Microsoft.EntityFrameworkCore/6.0.7": { @@ -1632,6 +1476,82 @@ "useSharedDesignerContext.txt" ] }, + "Microsoft.IdentityModel.Abstractions/6.19.0": { + "sha512": "SNDIcIdXeclk8lcwUtZMijCxBZ44krYG9at6kQMuds6I7zkiVvfYwOp394zI8tXFFDXu49Q6XFFTS59Exgw6xA==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.19.0": { + "sha512": "PMk1mP88y/dv6n1j9Xa6Go6Kl1bNsV4Z5+fmnd4FAOKtYFIGJOSN2VadCPqvm7h7FEPBlpqtbRr4yccefnBSoQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.19.0": { + "sha512": "773vzDzuwg+v+Jvsa+HOSPAZmMl1KztszdBErBPlXvNxZCvL52FrYlQblI6m1f3Pr9DtQt8jCI0RG6b1MajLgg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.19.0": { + "sha512": "kmEuZo1+Q4CJIprBVOcZQ18to3WUbPaYE9HRAoK0hEhoh8cH0uA8oOOjff4N2gQ/gk79QrAJTbh0RI7vIZU7vA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, "Microsoft.NETCore.Platforms/1.1.0": { "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", @@ -1708,10 +1628,10 @@ "mysqlconnector.nuspec" ] }, - "Newtonsoft.Json/12.0.3": { - "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", "type": "package", - "path": "newtonsoft.json/12.0.3", + "path": "newtonsoft.json/13.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -1730,11 +1650,7 @@ "lib/netstandard1.3/Newtonsoft.Json.xml", "lib/netstandard2.0/Newtonsoft.Json.dll", "lib/netstandard2.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.12.0.3.nupkg.sha512", + "newtonsoft.json.13.0.1.nupkg.sha512", "newtonsoft.json.nuspec", "packageIcon.png" ] @@ -1960,10 +1876,33 @@ "version.txt" ] }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "System.Collections.Immutable/6.0.0": { + "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "type": "package", + "path": "system.collections.immutable/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.6.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", "type": "package", - "path": "system.collections/4.3.0", + "path": "system.collections.nongeneric/4.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -1971,84 +1910,71 @@ "dotnet_library_license.txt", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "ref/xamarintvos10/_._", "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Immutable/6.0.0": { - "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "type": "package", - "path": "system.collections.immutable/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/net6.0/System.Collections.Immutable.dll", - "lib/net6.0/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "system.collections.immutable.6.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt" + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" ] }, "System.Diagnostics.Debug/4.3.0": { @@ -2144,77 +2070,6 @@ "useSharedDesignerContext.txt" ] }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -2283,6 +2138,66 @@ "system.globalization.nuspec" ] }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.19.0": { + "sha512": "iQwoziWm2ilFGlBnImQmB5RFwAoIEIp2QbQi2Wm0PJLhQfo80VhFzsPEiuhCkDvVkN1/D5Y++/GjBck27qP30w==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.19.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, "System.IO/4.3.0": { "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", "type": "package", @@ -2390,232 +2305,6 @@ "version.txt" ] }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, "System.Reflection/4.3.0": { "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", @@ -2823,63 +2512,6 @@ "system.reflection.emit.lightweight.nuspec" ] }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, "System.Reflection.Primitives/4.3.0": { "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", "type": "package", @@ -2937,60 +2569,6 @@ "system.reflection.primitives.nuspec" ] }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, "System.Resources.ResourceManager/4.3.0": { "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", "type": "package", @@ -3377,6 +2955,69 @@ "system.runtime.interopservices.nuspec" ] }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding/4.3.0": { "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", @@ -3584,6 +3225,25 @@ "system.threading.tasks.nuspec" ] }, + "Twilio/5.81.2": { + "sha512": "mNMF1njCC1K83gFOmx7DjLEos+NGFMOWNFzcxyZEav5Y9Sd180IuRDuLYD8mVg7jq3KYPSFOTPAWOe5HX87h3w==", + "type": "package", + "path": "twilio/5.81.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/Twilio.dll", + "lib/net35/Twilio.xml", + "lib/net451/Twilio.dll", + "lib/net451/Twilio.xml", + "lib/netstandard1.4/Twilio.dll", + "lib/netstandard1.4/Twilio.xml", + "lib/netstandard2.0/Twilio.dll", + "lib/netstandard2.0/Twilio.xml", + "twilio.5.81.2.nupkg.sha512", + "twilio.nuspec" + ] + }, "Application/1.0.0": { "type": "project", "path": "../Application/Application.csproj", @@ -3628,30 +3288,32 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "projectUniqueName": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "projectName": "WebApi", - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "packagesPath": "C:\\Users\\user\\.nuget\\packages\\", - "outputPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\obj\\", + "outputPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net6.0": { "targetAlias": "net6.0", "projectReferences": { - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\Application\\Application.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\Application\\Application.csproj" }, - "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj": { - "projectPath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\IOC\\IOC.csproj" + "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj": { + "projectPath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\IOC\\IOC.csproj" } } } @@ -3699,8 +3361,7 @@ "net47", "net471", "net472", - "net48", - "net481" + "net48" ], "assetTargetFallback": true, "warn": true, @@ -3712,16 +3373,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.403\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + } } \ No newline at end of file diff --git a/WebApi/obj/project.nuget.cache b/WebApi/obj/project.nuget.cache index 2743f75..99e5722 100644 --- a/WebApi/obj/project.nuget.cache +++ b/WebApi/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "zu2R8+6zxgpJNBrJrCTY5rxTsbzZMa+GI8fuJH0YAvQo5QwxYPp2E8/nqnfEHqCr5NeLgcxdiJFpS6o6uQJYIA==", + "dgSpecHash": "3bzANfdz4AAFXur2m+i7VaRIV12sZSg6hV+CsIO2nb3AVQVEkBv3LdUMp0CbQJ+XpQM1FipUKk99cna4QpUkUA==", "success": true, - "projectFilePath": "c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\WebApi.csproj", + "projectFilePath": "C:\\Users\\user\\Desktop\\AARR2\\AARR-Backend\\WebApi\\WebApi.csproj", "expectedPackageFiles": [ "C:\\Users\\user\\.nuget\\packages\\elasticsearch.net\\7.4.2\\elasticsearch.net.7.4.2.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", @@ -12,7 +12,7 @@ "C:\\Users\\user\\.nuget\\packages\\mediatr.contracts\\1.0.1\\mediatr.contracts.1.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\10.0.1\\mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.7\\microsoft.entityframeworkcore.6.0.7.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.7\\microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.7\\microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", @@ -28,11 +28,15 @@ "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.1\\microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.19.0\\microsoft.identitymodel.abstractions.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.19.0\\microsoft.identitymodel.jsonwebtokens.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.logging\\6.19.0\\microsoft.identitymodel.logging.6.19.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.19.0\\microsoft.identitymodel.tokens.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\nlog\\4.7.15\\nlog.4.7.15.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\nlog.extensions.logging\\1.7.4\\nlog.extensions.logging.1.7.4.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\nlog.targets.elasticsearch\\7.5.0\\nlog.targets.elasticsearch.7.5.0.nupkg.sha512", @@ -43,40 +47,32 @@ "C:\\Users\\user\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.19.0\\system.identitymodel.tokens.jwt.6.19.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\user\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512" + "C:\\Users\\user\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\user\\.nuget\\packages\\twilio\\5.81.2\\twilio.5.81.2.nupkg.sha512" ], - "logs": [ - { - "code": "Undefined", - "level": "Warning", - "warningLevel": 1, - "message": "Problem reading the cache file c:\\Users\\user\\Desktop\\Extern\\AARR\\AARR-Backend\\WebApi\\obj\\project.nuget.cache : Invalid property identifier character: <. Path 'version', line 3, position 0." - } - ] + "logs": [] } \ No newline at end of file diff --git a/WebApi/obj/staticwebassets.pack.sentinel b/WebApi/obj/staticwebassets.pack.sentinel index b331928..cac6e3c 100644 --- a/WebApi/obj/staticwebassets.pack.sentinel +++ b/WebApi/obj/staticwebassets.pack.sentinel @@ -11,3 +11,10 @@ 2.0 2.0 2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0