diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..b3990c5
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,54 @@
+name: Dockerized CI with Tests
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ branches:
+ - main
+
+jobs:
+ build-and-test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@v3
+
+ - name: Set up .NET
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: 8.0
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v2
+
+ - name: Install Docker Compose
+ run: |
+ DOCKER_COMPOSE_VERSION=2.20.2
+ curl -L "https://github.com/docker/compose/releases/download/v${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
+ chmod +x /usr/local/bin/docker-compose
+ docker-compose version
+
+ - name: Start Docker Services
+ run: |
+ docker compose -f compose.yaml up --build -d
+ shell: bash
+
+ - name: Restore .NET Dependencies
+ run: dotnet restore
+ shell: bash
+
+ - name: Build .NET Solution
+ run: dotnet build --no-restore --configuration Debug
+ shell: bash
+
+ - name: Run Tests
+ run: dotnet test --no-build --configuration Debug --verbosity normal
+ shell: bash
+
+ - name: Cleanup Docker Services
+ if: always()
+ run: docker compose -f compose.yaml down --volumes
+ shell: bash
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8971488
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+# Binaries
+*.dll
+*.exe
+*.pdb
+
+# Build directories
+/bin
+/obj
+
diff --git a/.idea/.idea.Paperless/.idea/.gitignore b/.idea/.idea.Paperless/.idea/.gitignore
new file mode 100644
index 0000000..3860b0e
--- /dev/null
+++ b/.idea/.idea.Paperless/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/modules.xml
+/projectSettingsUpdater.xml
+/contentModel.xml
+/.idea.Paperless.iml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/.idea.Paperless/.idea/encodings.xml b/.idea/.idea.Paperless/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/.idea/.idea.Paperless/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.idea.Paperless/.idea/indexLayout.xml b/.idea/.idea.Paperless/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/.idea/.idea.Paperless/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.idea.Paperless/.idea/vcs.xml b/.idea/.idea.Paperless/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/.idea.Paperless/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Contract/Contract.csproj b/Contract/Contract.csproj
index f83d4ce..353d5b5 100644
--- a/Contract/Contract.csproj
+++ b/Contract/Contract.csproj
@@ -1,13 +1,15 @@
-
-
-
- net8.0
- enable
- enable
-
-
-
-
-
-
-
+
+
+ net8.0
+ enable
+ enable
+ win-x64
+ true
+ true
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Contract/DocumentDto.cs b/Contract/DocumentDto.cs
index 92579bd..974127f 100644
--- a/Contract/DocumentDto.cs
+++ b/Contract/DocumentDto.cs
@@ -9,6 +9,6 @@ public record DocumentDto
public string Content { get; set; } = string.Empty;
public string FilePath { get; set; } = string.Empty;
public DateTime DateUploaded { get; set; }
- public string? OcrText { get; set; }
+ public string OcrText { get; set; } = string.Empty;
public IFormFile? File { get; init; }
}
\ No newline at end of file
diff --git a/Contract/DocumentUploadedEvent.cs b/Contract/DocumentUploadedEvent.cs
index ca1ca7e..d7da1be 100644
--- a/Contract/DocumentUploadedEvent.cs
+++ b/Contract/DocumentUploadedEvent.cs
@@ -5,4 +5,4 @@ public record DocumentUploadedEvent
public int DocumentId { get; set; }
public string FileName { get; set; } = string.Empty;
public DateTime UploadedAt { get; set; } = DateTime.UtcNow;
-}
\ No newline at end of file
+}
diff --git a/Contract/Logger/IOperationLogger.cs b/Contract/Logger/IOperationLogger.cs
new file mode 100644
index 0000000..c0d5409
--- /dev/null
+++ b/Contract/Logger/IOperationLogger.cs
@@ -0,0 +1,7 @@
+namespace Contract.Logger;
+
+public interface IOperationLogger
+{
+ Task LogOperation(LogOperationAttribute attribute, string methodName, object?[] parameters);
+ Task LogOperationError(LogOperationAttribute attribute, string methodName, Exception ex);
+}
diff --git a/Contract/Logger/LogOperationAttribute.cs b/Contract/Logger/LogOperationAttribute.cs
new file mode 100644
index 0000000..e69a64f
--- /dev/null
+++ b/Contract/Logger/LogOperationAttribute.cs
@@ -0,0 +1,20 @@
+using Microsoft.Extensions.Logging;
+
+namespace Contract.Logger;
+
+[AttributeUsage(AttributeTargets.Method)]
+public class LogOperationAttribute : Attribute
+{
+ public string Component { get; }
+ public string Category { get; }
+ public LogLevel Level { get; }
+ public bool LogParameters { get; set; } = true;
+ public bool LogResponse { get; set; } = true;
+
+ public LogOperationAttribute(string component, string category, LogLevel level = LogLevel.Information)
+ {
+ Component = component;
+ Category = category;
+ Level = level;
+ }
+}
diff --git a/Contract/Logger/LoggerExtensions.cs b/Contract/Logger/LoggerExtensions.cs
new file mode 100644
index 0000000..ad6c9b7
--- /dev/null
+++ b/Contract/Logger/LoggerExtensions.cs
@@ -0,0 +1,14 @@
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Logging;
+
+namespace Contract.Logger;
+
+public static class LoggerExtensions
+{
+ public static void AddOperationLogging(this IServiceCollection services, string environment)
+ {
+ services.AddScoped(sp => new OperationLogger(
+ sp.GetRequiredService().CreateLogger(),
+ environment));
+ }
+}
diff --git a/Contract/Logger/OperationLogger.cs b/Contract/Logger/OperationLogger.cs
new file mode 100644
index 0000000..23ac82a
--- /dev/null
+++ b/Contract/Logger/OperationLogger.cs
@@ -0,0 +1,61 @@
+using Microsoft.Extensions.Logging;
+
+namespace Contract.Logger;
+
+public class OperationLogger : IOperationLogger
+{
+ private readonly ILogger _logger;
+ private readonly string _environment;
+
+ public OperationLogger(ILogger logger, string environment)
+ {
+ _logger = logger;
+ _environment = environment;
+ }
+
+ public async Task LogOperation(LogOperationAttribute attribute, string methodName, params object?[] parameters)
+ {
+ if (attribute.LogParameters && parameters is { Length: > 0 })
+ {
+ var paramString = string.Join(", ", parameters.Select(p => p?.ToString() ?? "null"));
+ _logger.Log(attribute.Level,
+ "[{Environment}][{Component}][{Category}] {Method} started - Parameters: {Parameters}",
+ _environment, attribute.Component, attribute.Category, methodName, paramString);
+ }
+ else
+ {
+ _logger.Log(attribute.Level,
+ "[{Environment}][{Component}][{Category}] {Method} started",
+ _environment, attribute.Component, attribute.Category, methodName);
+ }
+
+ await Task.CompletedTask;
+ }
+
+ public async Task LogOperationComplete(LogOperationAttribute attribute, string methodName, object? result = null)
+ {
+ if (result != null && attribute.LogResponse)
+ {
+ _logger.Log(attribute.Level,
+ "[{Environment}][{Component}][{Category}] {Method} completed - Result: {Result}",
+ _environment, attribute.Component, attribute.Category, methodName, result);
+ }
+ else
+ {
+ _logger.Log(attribute.Level,
+ "[{Environment}][{Component}][{Category}] {Method} completed",
+ _environment, attribute.Component, attribute.Category, methodName);
+ }
+
+ await Task.CompletedTask;
+ }
+
+ public async Task LogOperationError(LogOperationAttribute attribute, string methodName, Exception ex)
+ {
+ _logger.LogError(ex,
+ "[{Environment}][{Component}][{Category}] {Method} failed - {Error}",
+ _environment, attribute.Component, attribute.Category, methodName, ex.Message);
+
+ await Task.CompletedTask;
+ }
+}
diff --git a/Contract/TextMessage.cs b/Contract/TextMessage.cs
deleted file mode 100644
index 43bf5d5..0000000
--- a/Contract/TextMessage.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Contract;
-
-public record TextMessage
-{
- public int DocumentId { get; set; }
- public string Text { get; set; } = string.Empty;
- public DateTime ProcessedAt { get; set; } = DateTime.UtcNow;
-}
\ No newline at end of file
diff --git a/Contract/bin/Release/net8.0/Contract.deps.json b/Contract/bin/Release/net8.0/Contract.deps.json
deleted file mode 100644
index 8c074f7..0000000
--- a/Contract/bin/Release/net8.0/Contract.deps.json
+++ /dev/null
@@ -1,75 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {}
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.1",
- "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.Extensions.Primitives/5.0.1": {
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.521.16609"
- }
- }
- },
- "System.IO.Pipelines/5.0.2": {
- "runtime": {
- "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
- "assemblyVersion": "5.0.0.1",
- "fileVersion": "5.0.1522.11506"
- }
- }
- }
- }
- },
- "libraries": {
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "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.Extensions.Primitives/5.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5WPSmL4YeP7eW+Vc8XZ4DwjYWBAiSwDV9Hm63JJWcz1Ie3Xjv4KuJXzgCstj48LkLfVCYa7mLcx7y+q6yqVvtw==",
- "path": "microsoft.extensions.primitives/5.0.1",
- "hashPath": "microsoft.extensions.primitives.5.0.1.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"
- }
- }
-}
\ No newline at end of file
diff --git a/Contract/bin/Release/net8.0/Contract.dll b/Contract/bin/Release/net8.0/Contract.dll
deleted file mode 100644
index 755e8b8..0000000
Binary files a/Contract/bin/Release/net8.0/Contract.dll and /dev/null differ
diff --git a/Contract/bin/Release/net8.0/Contract.pdb b/Contract/bin/Release/net8.0/Contract.pdb
deleted file mode 100644
index c82349c..0000000
Binary files a/Contract/bin/Release/net8.0/Contract.pdb and /dev/null differ
diff --git a/Contract/obj/Contract.csproj.nuget.dgspec.json b/Contract/obj/Contract.csproj.nuget.dgspec.json
index 4193836..e7a4a15 100644
--- a/Contract/obj/Contract.csproj.nuget.dgspec.json
+++ b/Contract/obj/Contract.csproj.nuget.dgspec.json
@@ -1,32 +1,26 @@
{
"format": 1,
"restore": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {}
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {}
},
"projects": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
"projectName": "Contract",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
"packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\obj\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\obj\\",
"projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
"configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -44,7 +38,8 @@
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
- }
+ },
+ "SdkAnalysisLevel": "9.0.100"
},
"frameworks": {
"net8.0": {
@@ -53,6 +48,20 @@
"Microsoft.AspNetCore.Http.Features": {
"target": "Package",
"version": "[5.0.17, )"
+ },
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.Extensions.Logging.Abstractions": {
+ "target": "Package",
+ "version": "[8.0.2, )"
+ },
+ "Microsoft.NET.ILLink.Tasks": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.12, )",
+ "autoReferenced": true
}
},
"imports": [
@@ -66,12 +75,31 @@
],
"assetTargetFallback": true,
"warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ }
+ ],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win-x64": {
+ "#import": []
}
}
}
diff --git a/Contract/obj/Contract.csproj.nuget.g.props b/Contract/obj/Contract.csproj.nuget.g.props
index 90374c1..4a2cdca 100644
--- a/Contract/obj/Contract.csproj.nuget.g.props
+++ b/Contract/obj/Contract.csproj.nuget.g.props
@@ -5,12 +5,18 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\anfh2\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ C:\Users\anfh2\.nuget\packages\
PackageReference
6.12.0
-
+
+
+
+
+
+ C:\Users\anfh2\.nuget\packages\microsoft.net.illink.tasks\8.0.12
+
\ No newline at end of file
diff --git a/Contract/obj/Contract.csproj.nuget.g.targets b/Contract/obj/Contract.csproj.nuget.g.targets
index 35a7576..895482a 100644
--- a/Contract/obj/Contract.csproj.nuget.g.targets
+++ b/Contract/obj/Contract.csproj.nuget.g.targets
@@ -1,2 +1,7 @@
-
\ No newline at end of file
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Contract/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Contract/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/Contract/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Contract/obj/Release/net8.0/Contract.AssemblyInfo.cs b/Contract/obj/Debug/net8.0/Contract.AssemblyInfo.cs
similarity index 85%
rename from Contract/obj/Release/net8.0/Contract.AssemblyInfo.cs
rename to Contract/obj/Debug/net8.0/Contract.AssemblyInfo.cs
index abb7964..2deb8c2 100644
--- a/Contract/obj/Release/net8.0/Contract.AssemblyInfo.cs
+++ b/Contract/obj/Debug/net8.0/Contract.AssemblyInfo.cs
@@ -1,22 +1,22 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("Contract")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3cabf6dc3c8503efa14913ebc65389f8f5716d55")]
-[assembly: System.Reflection.AssemblyProductAttribute("Contract")]
-[assembly: System.Reflection.AssemblyTitleAttribute("Contract")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
-
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Contract")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5100d52db9031dc8b3f6fb38a73a883c6fb2822")]
+[assembly: System.Reflection.AssemblyProductAttribute("Contract")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Contract")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/Contract/obj/Debug/net8.0/Contract.AssemblyInfoInputs.cache b/Contract/obj/Debug/net8.0/Contract.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..eabe6ed
--- /dev/null
+++ b/Contract/obj/Debug/net8.0/Contract.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+503b2a5a7b64f84781bea63e2f2e3e869db3b55492c0eb2e8e4c17dd3f7f8cc4
diff --git a/Contract/obj/Debug/net8.0/Contract.GeneratedMSBuildEditorConfig.editorconfig b/Contract/obj/Debug/net8.0/Contract.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..9760bcd
--- /dev/null
+++ b/Contract/obj/Debug/net8.0/Contract.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,19 @@
+is_global = true
+build_property.EnableAotAnalyzer =
+build_property.EnableSingleFileAnalyzer = true
+build_property.EnableTrimAnalyzer =
+build_property.IncludeAllContentForSelfExtract =
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Contract
+build_property.ProjectDir = C:\Users\anfh2\RiderProjects\Paperless\Contract\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.EffectiveAnalysisLevelStyle = 8.0
+build_property.EnableCodeStyleSeverity =
diff --git a/Contract/obj/Debug/net8.0/Contract.assets.cache b/Contract/obj/Debug/net8.0/Contract.assets.cache
index 9da86a1..091752b 100644
Binary files a/Contract/obj/Debug/net8.0/Contract.assets.cache and b/Contract/obj/Debug/net8.0/Contract.assets.cache differ
diff --git a/Contract/obj/Debug/net8.0/Contract.csproj.AssemblyReference.cache b/Contract/obj/Debug/net8.0/Contract.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..e820f0d
Binary files /dev/null and b/Contract/obj/Debug/net8.0/Contract.csproj.AssemblyReference.cache differ
diff --git a/Contract/obj/Debug/net8.0/Contract.csproj.FileListAbsolute.txt b/Contract/obj/Debug/net8.0/Contract.csproj.FileListAbsolute.txt
index 98d40f6..293be52 100644
--- a/Contract/obj/Debug/net8.0/Contract.csproj.FileListAbsolute.txt
+++ b/Contract/obj/Debug/net8.0/Contract.csproj.FileListAbsolute.txt
@@ -11,3 +11,16 @@ C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Debug\net8.0\Contract.dll
C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Debug\net8.0\refint\Contract.dll
C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Debug\net8.0\Contract.pdb
C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Debug\net8.0\ref\Contract.dll
+C:\Users\anfh2\RiderProjects\Paperless\Contract\bin\Debug\net8.0\Contract.deps.json
+C:\Users\anfh2\RiderProjects\Paperless\Contract\bin\Debug\net8.0\Contract.dll
+C:\Users\anfh2\RiderProjects\Paperless\Contract\bin\Debug\net8.0\Contract.pdb
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.csproj.AssemblyReference.cache
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.AssemblyInfoInputs.cache
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.AssemblyInfo.cs
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.csproj.CoreCompileInputs.cache
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.sourcelink.json
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.dll
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\refint\Contract.dll
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\Contract.pdb
+C:\Users\anfh2\RiderProjects\Paperless\Contract\obj\Debug\net8.0\ref\Contract.dll
diff --git a/Contract/obj/Release/net8.0/Contract.AssemblyInfoInputs.cache b/Contract/obj/Release/net8.0/Contract.AssemblyInfoInputs.cache
deleted file mode 100644
index ba83635..0000000
--- a/Contract/obj/Release/net8.0/Contract.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-6290c40906ca6a211bcba2a743a2866b70156e7a1e3504a2c90d5406384fdbc4
diff --git a/Contract/obj/Release/net8.0/Contract.GlobalUsings.g.cs b/Contract/obj/Release/net8.0/Contract.GlobalUsings.g.cs
deleted file mode 100644
index ac22929..0000000
--- a/Contract/obj/Release/net8.0/Contract.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/Contract/obj/Release/net8.0/Contract.assets.cache b/Contract/obj/Release/net8.0/Contract.assets.cache
deleted file mode 100644
index e1755f3..0000000
Binary files a/Contract/obj/Release/net8.0/Contract.assets.cache and /dev/null differ
diff --git a/Contract/obj/Release/net8.0/Contract.csproj.AssemblyReference.cache b/Contract/obj/Release/net8.0/Contract.csproj.AssemblyReference.cache
deleted file mode 100644
index 711e679..0000000
Binary files a/Contract/obj/Release/net8.0/Contract.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/Contract/obj/Release/net8.0/Contract.csproj.CoreCompileInputs.cache b/Contract/obj/Release/net8.0/Contract.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 5a4cbb7..0000000
--- a/Contract/obj/Release/net8.0/Contract.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-47f7fb000b6d604604b191a461a8c235bd093858c2bb953a1707bbe8b04ea082
diff --git a/Contract/obj/Release/net8.0/Contract.csproj.FileListAbsolute.txt b/Contract/obj/Release/net8.0/Contract.csproj.FileListAbsolute.txt
deleted file mode 100644
index 2402d4c..0000000
--- a/Contract/obj/Release/net8.0/Contract.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\bin\Release\net8.0\Contract.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\bin\Release\net8.0\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\bin\Release\net8.0\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.csproj.AssemblyReference.cache
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.AssemblyInfoInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.AssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.csproj.CoreCompileInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.sourcelink.json
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\refint\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\Contract\obj\Release\net8.0\ref\Contract.dll
diff --git a/Contract/obj/Release/net8.0/Contract.dll b/Contract/obj/Release/net8.0/Contract.dll
deleted file mode 100644
index 755e8b8..0000000
Binary files a/Contract/obj/Release/net8.0/Contract.dll and /dev/null differ
diff --git a/Contract/obj/Release/net8.0/Contract.pdb b/Contract/obj/Release/net8.0/Contract.pdb
deleted file mode 100644
index c82349c..0000000
Binary files a/Contract/obj/Release/net8.0/Contract.pdb and /dev/null differ
diff --git a/Contract/obj/Release/net8.0/Contract.sourcelink.json b/Contract/obj/Release/net8.0/Contract.sourcelink.json
deleted file mode 100644
index d453e13..0000000
--- a/Contract/obj/Release/net8.0/Contract.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\*":"https://raw.githubusercontent.com/ANcpLua/SWEN3/3cabf6dc3c8503efa14913ebc65389f8f5716d55/*"}}
\ No newline at end of file
diff --git a/Contract/obj/Release/net8.0/ref/Contract.dll b/Contract/obj/Release/net8.0/ref/Contract.dll
deleted file mode 100644
index e4c0e0d..0000000
Binary files a/Contract/obj/Release/net8.0/ref/Contract.dll and /dev/null differ
diff --git a/Contract/obj/Release/net8.0/refint/Contract.dll b/Contract/obj/Release/net8.0/refint/Contract.dll
deleted file mode 100644
index e4c0e0d..0000000
Binary files a/Contract/obj/Release/net8.0/refint/Contract.dll and /dev/null differ
diff --git a/Contract/obj/project.assets.json b/Contract/obj/project.assets.json
index 9fd92e4..19d8fd1 100644
--- a/Contract/obj/project.assets.json
+++ b/Contract/obj/project.assets.json
@@ -19,17 +19,442 @@
}
}
},
- "Microsoft.Extensions.Primitives/5.0.1": {
+ "Microsoft.EntityFrameworkCore/8.0.10": {
"type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
+ "Microsoft.Extensions.Caching.Memory": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.NET.ILLink.Tasks/8.0.12": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.NET.ILLink.Tasks.props": {}
+ }
+ },
+ "System.IO.Pipelines/5.0.2": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ }
+ }
+ },
+ "net8.0/win-x64": {
+ "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": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
+ "Microsoft.Extensions.Caching.Memory": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2"
+ },
"compile": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
"related": ".xml"
}
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.NET.ILLink.Tasks/8.0.12": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.NET.ILLink.Tasks.props": {}
}
},
"System.IO.Pipelines/5.0.2": {
@@ -67,26 +492,407 @@
"microsoft.aspnetcore.http.features.nuspec"
]
},
- "Microsoft.Extensions.Primitives/5.0.1": {
- "sha512": "5WPSmL4YeP7eW+Vc8XZ4DwjYWBAiSwDV9Hm63JJWcz1Ie3Xjv4KuJXzgCstj48LkLfVCYa7mLcx7y+q6yqVvtw==",
+ "Microsoft.EntityFrameworkCore/8.0.10": {
+ "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
+ "microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
+ "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
"type": "package",
- "path": "microsoft.extensions.primitives/5.0.1",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
+ "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
+ "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
+ "docs/PACKAGE.md",
+ "lib/netstandard2.0/_._",
+ "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.analyzers.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net8.0/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.8.0.0.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net8.0/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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net8.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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net8.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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/8.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Primitives.dll",
- "lib/net461/Microsoft.Extensions.Primitives.xml",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
+ "lib/net462/Microsoft.Extensions.Logging.dll",
+ "lib/net462/Microsoft.Extensions.Logging.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.dll",
+ "lib/net8.0/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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
+ "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "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",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net8.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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/8.0.2": {
+ "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
+ "type": "package",
+ "path": "microsoft.extensions.options/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
+ "lib/net462/Microsoft.Extensions.Options.dll",
+ "lib/net462/Microsoft.Extensions.Options.xml",
+ "lib/net6.0/Microsoft.Extensions.Options.dll",
+ "lib/net6.0/Microsoft.Extensions.Options.xml",
+ "lib/net7.0/Microsoft.Extensions.Options.dll",
+ "lib/net7.0/Microsoft.Extensions.Options.xml",
+ "lib/net8.0/Microsoft.Extensions.Options.dll",
+ "lib/net8.0/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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
+ "lib/net6.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net6.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net7.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net8.0/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.5.0.1.nupkg.sha512",
+ "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.NET.ILLink.Tasks/8.0.12": {
+ "sha512": "FV4HnQ3JI15PHnJ5PGTbz+rYvrih42oLi/7UMIshNwCwUZhTq13UzrggtXk4ygrcMcN+4jsS6hhshx2p/Zd0ig==",
+ "type": "package",
+ "path": "microsoft.net.illink.tasks/8.0.12",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "Sdk/Sdk.props",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll",
+ "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll",
+ "build/Microsoft.NET.ILLink.Analyzers.props",
+ "build/Microsoft.NET.ILLink.Tasks.props",
+ "build/Microsoft.NET.ILLink.targets",
+ "microsoft.net.illink.tasks.8.0.12.nupkg.sha512",
+ "microsoft.net.illink.tasks.nuspec",
+ "tools/net472/ILLink.Tasks.dll",
+ "tools/net472/ILLink.Tasks.dll.config",
+ "tools/net472/Mono.Cecil.Mdb.dll",
+ "tools/net472/Mono.Cecil.Pdb.dll",
+ "tools/net472/Mono.Cecil.Rocks.dll",
+ "tools/net472/Mono.Cecil.dll",
+ "tools/net472/Sdk/Sdk.props",
+ "tools/net472/System.Buffers.dll",
+ "tools/net472/System.Collections.Immutable.dll",
+ "tools/net472/System.Memory.dll",
+ "tools/net472/System.Numerics.Vectors.dll",
+ "tools/net472/System.Reflection.Metadata.dll",
+ "tools/net472/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props",
+ "tools/net472/build/Microsoft.NET.ILLink.Tasks.props",
+ "tools/net472/build/Microsoft.NET.ILLink.targets",
+ "tools/net8.0/ILLink.Tasks.deps.json",
+ "tools/net8.0/ILLink.Tasks.dll",
+ "tools/net8.0/Mono.Cecil.Mdb.dll",
+ "tools/net8.0/Mono.Cecil.Pdb.dll",
+ "tools/net8.0/Mono.Cecil.Rocks.dll",
+ "tools/net8.0/Mono.Cecil.dll",
+ "tools/net8.0/Sdk/Sdk.props",
+ "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props",
+ "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props",
+ "tools/net8.0/build/Microsoft.NET.ILLink.targets",
+ "tools/net8.0/illink.deps.json",
+ "tools/net8.0/illink.dll",
+ "tools/net8.0/illink.runtimeconfig.json",
+ "useSharedDesignerContext.txt"
]
},
"System.IO.Pipelines/5.0.2": {
@@ -118,36 +924,32 @@
},
"projectFileDependencyGroups": {
"net8.0": [
- "Microsoft.AspNetCore.Http.Features >= 5.0.17"
+ "Microsoft.AspNetCore.Http.Features >= 5.0.17",
+ "Microsoft.EntityFrameworkCore >= 8.0.10",
+ "Microsoft.Extensions.Logging.Abstractions >= 8.0.2",
+ "Microsoft.NET.ILLink.Tasks >= 8.0.12"
]
},
"packageFolders": {
- "C:\\Users\\anfh2\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ "C:\\Users\\anfh2\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
"projectName": "Contract",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
"packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\obj\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\obj\\",
"projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
"configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -165,7 +967,8 @@
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
- }
+ },
+ "SdkAnalysisLevel": "9.0.100"
},
"frameworks": {
"net8.0": {
@@ -174,6 +977,20 @@
"Microsoft.AspNetCore.Http.Features": {
"target": "Package",
"version": "[5.0.17, )"
+ },
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.Extensions.Logging.Abstractions": {
+ "target": "Package",
+ "version": "[8.0.2, )"
+ },
+ "Microsoft.NET.ILLink.Tasks": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.12, )",
+ "autoReferenced": true
}
},
"imports": [
@@ -187,12 +1004,31 @@
],
"assetTargetFallback": true,
"warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ }
+ ],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win-x64": {
+ "#import": []
}
}
}
diff --git a/Contract/obj/project.nuget.cache b/Contract/obj/project.nuget.cache
index 145fbeb..b12d14d 100644
--- a/Contract/obj/project.nuget.cache
+++ b/Contract/obj/project.nuget.cache
@@ -1,12 +1,26 @@
{
"version": 2,
- "dgSpecHash": "KZmZz81a/zI=",
+ "dgSpecHash": "tYvYqHjGbZg=",
"success": true,
- "projectFilePath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
+ "projectFilePath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
"expectedPackageFiles": [
"C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.1\\microsoft.extensions.primitives.5.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512"
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.12\\microsoft.net.illink.tasks.8.0.12.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.io.pipelines\\5.0.2\\system.io.pipelines.5.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\8.0.12\\microsoft.netcore.app.runtime.win-x64.8.0.12.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\8.0.12\\microsoft.windowsdesktop.app.runtime.win-x64.8.0.12.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\8.0.12\\microsoft.aspnetcore.app.runtime.win-x64.8.0.12.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/Contract/obj/project.packagespec.json b/Contract/obj/project.packagespec.json
index f758091..bf72697 100644
--- a/Contract/obj/project.packagespec.json
+++ b/Contract/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj","projectName":"Contract","projectPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj","outputPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\obj\\","projectStyle":"PackageReference","UsingMicrosoftNETSdk":false,"fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.Http.Features":{"target":"Package","version":"[5.0.17, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj","projectName":"Contract","projectPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj","outputPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.100"}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.Http.Features":{"target":"Package","version":"[5.0.17, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.Extensions.Logging.Abstractions":{"target":"Package","version":"[8.0.2, )"},"Microsoft.NET.ILLink.Tasks":{"suppressParent":"All","target":"Package","version":"[8.0.12, )","autoReferenced":true}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Runtime.win-x64","version":"[8.0.12, 8.0.12]"},{"name":"Microsoft.NETCore.App.Runtime.win-x64","version":"[8.0.12, 8.0.12]"},{"name":"Microsoft.WindowsDesktop.App.Runtime.win-x64","version":"[8.0.12, 8.0.12]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"}}"runtimes":{"win-x64":{"#import":[]}}
\ No newline at end of file
diff --git a/Contract/obj/rider.project.model.nuget.info b/Contract/obj/rider.project.model.nuget.info
index e631c8f..b65546f 100644
--- a/Contract/obj/rider.project.model.nuget.info
+++ b/Contract/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17337395296135765
\ No newline at end of file
+17370009371506628
\ No newline at end of file
diff --git a/Contract/obj/rider.project.restore.info b/Contract/obj/rider.project.restore.info
index 489be41..77a7b97 100644
--- a/Contract/obj/rider.project.restore.info
+++ b/Contract/obj/rider.project.restore.info
@@ -1 +1 @@
-17337395359507559
\ No newline at end of file
+17370009412389139
\ No newline at end of file
diff --git a/Paperless.sln.DotSettings.user b/Paperless.sln.DotSettings.user
deleted file mode 100644
index cc30a6d..0000000
--- a/Paperless.sln.DotSettings.user
+++ /dev/null
@@ -1,31 +0,0 @@
-
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- ForceIncluded
- <SessionState ContinuousTestingMode="0" IsActive="True" Name="All tests from <Tests>" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
- <Project Location="C:\Users\anfh2\RiderProjects\SWEN3\Tests" Presentation="<Tests>" />
-</SessionState>
\ No newline at end of file
diff --git a/PaperlessREST/Controllers/DocumentController.cs b/PaperlessREST/Controllers/DocumentController.cs
index 7bdb3d0..edcf9a1 100644
--- a/PaperlessREST/Controllers/DocumentController.cs
+++ b/PaperlessREST/Controllers/DocumentController.cs
@@ -1,208 +1,138 @@
+using System.ComponentModel.DataAnnotations;
+using AutoMapper;
using Contract;
+using Contract.Logger;
using EasyNetQ;
using Elastic.Clients.Elasticsearch;
-using FluentValidation;
using Microsoft.AspNetCore.Mvc;
using PaperlessServices.BL;
-using PaperlessServices.Validation;
+using PaperlessServices.MinIoStorage;
namespace PaperlessREST.Controllers;
[ApiController]
[Route("documents")]
+[Produces("application/json")]
public class DocumentController : ControllerBase
{
private readonly IDocumentService _documentService;
- private readonly IStorageService _storageService;
- private readonly IValidator _validator;
- private readonly ILogger _logger;
+ private readonly IMinioStorageService _minioStorageService;
private readonly ElasticsearchClient _elasticClient;
private readonly IBus _bus;
+ private readonly IMapper _mapper;
public DocumentController(
IDocumentService documentService,
- IStorageService storageService,
- IValidator validator,
- ILogger logger,
+ IMinioStorageService minioStorageService,
ElasticsearchClient elasticClient,
- IBus bus)
+ IBus bus,
+ IMapper mapper)
{
_documentService = documentService;
- _storageService = storageService;
- _validator = validator;
- _logger = logger;
+ _minioStorageService = minioStorageService;
_elasticClient = elasticClient;
_bus = bus;
+ _mapper = mapper;
}
[HttpPost("upload")]
[RequestSizeLimit(50 * 1024 * 1024)]
[Consumes("multipart/form-data")]
- public async Task Upload([FromForm] DocumentDto documentDto, CancellationToken cancellationToken)
+ [ProducesResponseType(StatusCodes.Status200OK)]
+ [ProducesResponseType(StatusCodes.Status400BadRequest)]
+ [LogOperation("Upload", "API")]
+ public async Task> Upload(
+ [FromForm][Required] string name,
+ [Required] IFormFile file,
+ CancellationToken ct)
{
- try
- {
- var validationResult = await _validator.ValidateAsync(documentDto, cancellationToken);
- if (!validationResult.IsValid)
- {
- return BadRequest(new
- {
- success = false,
- message = "Validation failed",
- errors = validationResult.Errors.Select(e => e.ErrorMessage)
- });
- }
-
- var result = await _documentService.Upload(documentDto, cancellationToken);
+ var result = await _documentService.Upload(new DocumentDto { Name = name, File = file }, ct);
+ // Publish an event once upload is completed
+ if (result != null)
+ {
await _bus.PubSub.PublishAsync(new DocumentUploadedEvent
{
DocumentId = result.Id,
FileName = result.FilePath,
- UploadedAt = DateTime.UtcNow
- }, cancellationToken);
+ UploadedAt = result.DateUploaded
+ }, ct);
- _logger.LogInformation("Document uploaded successfully: {DocumentId}", result.Id);
- return Ok(new { success = true, message = "Document uploaded successfully", document = result });
- }
- catch (StorageException ex)
- {
- _logger.LogError(ex, "Storage error during document upload");
- return StatusCode(500, new { success = false, message = "Failed to store document" });
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Unexpected error during document upload");
- return StatusCode(500, new { success = false, message = "An unexpected error occurred" });
+
}
+
+ return Ok(result);
}
[HttpGet("{id}")]
- public async Task Get(int id, CancellationToken cancellationToken)
+ [ProducesResponseType(StatusCodes.Status200OK)]
+ [ProducesResponseType(StatusCodes.Status404NotFound)]
+ [LogOperation("Get", "API")]
+ public async Task> Get(
+ [FromRoute][Required] int id,
+ CancellationToken ct)
{
- try
- {
- var document = await _documentService.GetDocument(id, cancellationToken);
- await _storageService.GetFileAsync(document.FilePath, cancellationToken);
-
- var documentResponse = new
- {
- document.Id,
- document.Name,
- document.DateUploaded,
- document.OcrText,
- FileUrl = $"/documents/{id}/download"
- };
-
- return Ok(documentResponse);
- }
- catch (KeyNotFoundException)
- {
- return NotFound(new { message = "Document not found" });
- }
+ var document = await _documentService.GetDocument(id, ct);
+ return Ok(document);
}
- [HttpGet("{id}/download")]
- public async Task Download(int id, CancellationToken cancellationToken)
+ [HttpGet]
+ [ProducesResponseType(StatusCodes.Status200OK)]
+ [LogOperation("GetAll", "API")]
+ public async Task>> GetAll(CancellationToken ct)
{
- try
- {
- var document = await _documentService.GetDocument(id, cancellationToken);
- var fileStream = await _storageService.GetFileAsync(document.FilePath, cancellationToken);
- var contentType = GetContentType(document.FilePath);
- return File(fileStream, contentType, document.Name);
- }
- catch (KeyNotFoundException)
- {
- return NotFound(new { message = "Document not found" });
- }
- catch (StorageException ex)
- {
- _logger.LogError(ex, "Failed to retrieve file for document {DocumentId}", id);
- return StatusCode(500, new { message = "Failed to retrieve document file" });
- }
+ var documents = await _documentService.GetAllDocuments(ct);
+ return Ok(documents);
}
- [HttpGet("search")]
- public async Task SearchDocuments([FromQuery] string query, CancellationToken cancellationToken)
+ [HttpGet("{id}/download")]
+ [ProducesResponseType(StatusCodes.Status200OK)]
+ [ProducesResponseType(StatusCodes.Status404NotFound)]
+ [LogOperation("Download", "API")]
+ public async Task Download(
+ [FromRoute][Required] int id,
+ CancellationToken ct)
{
- try
- {
- var response = await _elasticClient.SearchAsync(s => s
- .Index("paperless-documents")
- .Size(20)
- .Query(q => q
- .MultiMatch(m => m
- .Query(query)
- .Fields(new[] { "name^2", "ocrText" })
- .Fuzziness(new Fuzziness("AUTO"))
- .MinimumShouldMatch("75%"))),
- cancellationToken);
+ var document = await _documentService.GetDocument(id, ct);
- if (!response.IsValidResponse)
- {
- _logger.LogError("Search failed: {Error}", response.DebugInformation);
- return StatusCode(500, new { success = false, message = "Search operation failed" });
- }
-
- return Ok(new
- {
- success = true,
- totalHits = response.Total,
- documents = response.Documents
- });
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error during document search");
- return StatusCode(500, new { success = false, message = "An error occurred during search" });
- }
+ var fileStream = await _minioStorageService.GetFileAsync(document.FilePath, ct);
+ return File(fileStream, "application/octet-stream", document.Name);
}
- [HttpGet]
- public async Task GetAll(CancellationToken cancellationToken)
+ [HttpGet("search")]
+ [ProducesResponseType(StatusCodes.Status200OK)]
+ [LogOperation("Search", "API")]
+ public async Task> SearchDocuments(
+ [FromQuery][Required] string query,
+ CancellationToken ct)
{
- _logger.LogInformation("Fetching all documents");
- try
+ var response = await _elasticClient.SearchAsync(s => s
+ .Index("paperless-documents")
+ .Query(q => q
+ .MultiMatch(mm => mm
+ .Query(query)
+ .Fields(new[] { "name", "ocrText" })
+ .Fuzziness(new Fuzziness("AUTO"))
+ .MinimumShouldMatch("75%"))),
+ ct);
+
+ if (!response.IsValidResponse)
{
- var documents = await _documentService.GetAllDocuments(cancellationToken);
- return Ok(documents);
+ throw new InvalidOperationException("Search operation failed");
}
- catch (Exception ex)
- {
- _logger.LogError(ex, "An error occurred while fetching all documents.");
- return StatusCode(500, "An unexpected error occurred.");
- }
- }
- [HttpDelete("{id}")]
- public async Task Delete(int id, CancellationToken cancellationToken)
- {
- try
- {
- _logger.LogInformation("Deleting document with ID: {DocumentId}", id);
- await _storageService.DeleteFileAsync(id.ToString(), cancellationToken);
- await _documentService.DeleteDocument(id, cancellationToken);
- _logger.LogInformation("Document with ID: {DocumentId} deleted successfully", id);
- return NoContent();
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error occurred while deleting document with ID: {DocumentId}", id);
- return StatusCode(500, "An unexpected error occurred.");
- }
+ var documents = _mapper.Map>(response.Documents);
+ return Ok(new { totalHits = response.Total, documents });
}
- private string GetContentType(string fileName)
+ [HttpDelete("{id}")]
+ [ProducesResponseType(StatusCodes.Status204NoContent)]
+ [LogOperation("Delete", "API")]
+ public async Task Delete(
+ [FromRoute][Required] int id,
+ CancellationToken ct)
{
- var extension = Path.GetExtension(fileName).ToLower();
- return extension switch
- {
- ".pdf" => "application/pdf",
- ".png" => "image/png",
- ".jpg" or ".jpeg" => "image/jpeg",
- _ => "application/octet-stream"
- };
+ await _documentService.DeleteDocument(id, ct);
+ return NoContent();
}
}
-
diff --git a/PaperlessREST/Dockerfile b/PaperlessREST/Dockerfile
index a059b37..872ce74 100644
--- a/PaperlessREST/Dockerfile
+++ b/PaperlessREST/Dockerfile
@@ -1,21 +1,37 @@
-FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
-WORKDIR /app
-EXPOSE 8081
-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
+
+RUN dotnet tool install --global dotnet-ef
+ENV PATH="$PATH:/root/.dotnet/tools"
+
COPY ["PaperlessREST/PaperlessREST.csproj", "PaperlessREST/"]
COPY ["Contract/Contract.csproj", "Contract/"]
+COPY ["PaperlessServices/PaperlessServices.csproj", "PaperlessServices/"]
+COPY ["PostgreSQL/PostgreSQL.csproj", "PostgreSQL/"]
+
RUN dotnet restore "PaperlessREST/PaperlessREST.csproj"
+
COPY . .
WORKDIR "/src/PaperlessREST"
-RUN dotnet build "PaperlessREST.csproj" -c Release -o /app/build
-
-FROM build AS publish
RUN dotnet publish "PaperlessREST.csproj" -c Release -o /app/publish
-FROM base AS final
+FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
WORKDIR /app
-COPY --from=publish /app/publish .
-COPY PaperlessREST/rest-appsettings.json /app/rest-appsettings.json
-ENTRYPOINT ["dotnet", "PaperlessREST.dll"]
+
+RUN apt-get update && \
+ apt-get install -y curl && \
+ rm -rf /var/lib/apt/lists/*
+
+RUN dotnet tool install --global dotnet-ef
+ENV PATH="$PATH:/root/.dotnet/tools"
+
+COPY --from=build /app/publish .
+COPY PaperlessREST/rest-appsettings.json ./rest-appsettings.json
+
+HEALTHCHECK --interval=5s --timeout=3s --start-period=30s --retries=3 \
+ CMD curl -f http://localhost:8081/ || exit 1
+
+ENV ASPNETCORE_ENVIRONMENT="Docker"
+EXPOSE 8081
+
+CMD /bin/bash -c 'dotnet ef database update && dotnet PaperlessREST.dll'
diff --git a/PaperlessREST/ExceptionHandlingMiddleware.cs b/PaperlessREST/ExceptionHandlingMiddleware.cs
new file mode 100644
index 0000000..2f597a9
--- /dev/null
+++ b/PaperlessREST/ExceptionHandlingMiddleware.cs
@@ -0,0 +1,58 @@
+using System.ComponentModel.DataAnnotations;
+using System.Text.Json;
+using Contract.Logger;
+
+namespace PaperlessREST;
+
+public class ExceptionHandlingMiddleware
+{
+ private readonly RequestDelegate _next;
+ private readonly IOperationLogger _logger;
+
+ public ExceptionHandlingMiddleware(RequestDelegate next, IOperationLogger logger)
+ {
+ _next = next;
+ _logger = logger;
+ }
+
+ public async Task InvokeAsync(HttpContext context)
+ {
+ try
+ {
+ await _next(context);
+ }
+ catch (Exception ex)
+ {
+ await _logger.LogOperationError(new LogOperationAttribute("UnhandledException", "API", LogLevel.Error),
+ "UnhandledExceptionMiddleware", ex);
+ await HandleExceptionAsync(context, ex);
+ }
+ }
+
+ private static async Task HandleExceptionAsync(HttpContext context, Exception exception)
+ {
+ context.Response.ContentType = "application/json";
+
+ var (statusCode, message) = exception switch
+ {
+ ValidationException => (StatusCodes.Status400BadRequest, "Validation failed"),
+ KeyNotFoundException => (StatusCodes.Status404NotFound, "Resource not found"),
+ _ => (StatusCodes.Status500InternalServerError, "An unexpected error occurred"),
+ };
+
+ context.Response.StatusCode = statusCode;
+
+ var errorResponse = new
+ {
+ Message = message,
+ RequestId = context.TraceIdentifier,
+ Timestamp = DateTime.UtcNow
+ };
+
+ await context.Response.WriteAsync(JsonSerializer.Serialize(errorResponse,
+ new JsonSerializerOptions
+ {
+ PropertyNamingPolicy = JsonNamingPolicy.CamelCase
+ }));
+ }
+}
diff --git a/PaperlessREST/PaperlessREST.csproj b/PaperlessREST/PaperlessREST.csproj
index 9ee1f99..d5b4ef6 100644
--- a/PaperlessREST/PaperlessREST.csproj
+++ b/PaperlessREST/PaperlessREST.csproj
@@ -1,46 +1,38 @@
-
-
- net8.0
- enable
- enable
- Linux
- bbbe0efc-c832-4f8a-8caa-627312d39045
-
-
-
-
-
-
-
-
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .dockerignore
-
-
-
-
+
+ net8.0
+ enable
+ enable
+ Linux
+
+
+
+
+
+
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .dockerignore
+
+
+
\ No newline at end of file
diff --git a/PaperlessREST/Program.cs b/PaperlessREST/Program.cs
index 2329db4..23989de 100644
--- a/PaperlessREST/Program.cs
+++ b/PaperlessREST/Program.cs
@@ -1,93 +1,57 @@
-using EasyNetQ;
-using Elastic.Clients.Elasticsearch;
-using FluentValidation;
-using FluentValidation.AspNetCore;
-using Minio;
-using PaperlessREST.Validation;
+using Contract.Logger;
+using PaperlessREST;
+using PaperlessServices.AutoMapper;
using PaperlessServices.BL;
-using PaperlessServices.Mapping;
-using PaperlessServices.Tesseract;
+using PaperlessServices.Extensions;
+using PaperlessServices.MinIoStorage;
using PostgreSQL.Module;
var builder = WebApplication.CreateBuilder(args);
-builder.Configuration.AddJsonFile("rest-appsettings.json", optional: false, reloadOnChange: true);
+
+builder.Configuration
+ .SetBasePath(Directory.GetCurrentDirectory())
+ .AddJsonFile("rest-appsettings.json", optional: false)
+ .AddJsonFile($"rest-appsettings.{builder.Environment.EnvironmentName}.json", optional: true)
+ .AddEnvironmentVariables()
+ .Build();
builder.Logging.ClearProviders();
builder.Logging.AddConsole();
builder.Logging.AddDebug();
+builder.Services.Configure(options => {
+ options.AddFilter("Microsoft", LogLevel.Warning);
+ options.AddFilter("Microsoft.AspNetCore", LogLevel.Warning);
+ options.AddFilter("System", LogLevel.Warning);
+});
builder.Services.AddControllers();
-builder.Services.AddEndpointsApiExplorer();
-builder.Services.AddSwaggerGen();
+builder.Services.AddOperationLogging(
+ builder.Environment.EnvironmentName);
+builder.Services.AddAuthorizationBuilder();
+builder.Services.AddFluentValidationRules();
builder.Services.AddPostgreSqlServices(builder.Configuration);
-builder.Services.AddSingleton(_ =>
-{
- var connectionString = builder.Configuration.GetConnectionString("RabbitMQ");
- return RabbitHutch.CreateBus(connectionString);
-});
-builder.Services.AddCors(options =>
-{
- options.AddPolicy("AllowAll", corsPolicyBuilder =>
- corsPolicyBuilder
- .AllowAnyOrigin()
- .AllowAnyMethod()
- .AllowAnyHeader());
+builder.Services.AddElasticSearchEngine(builder.Configuration);
+builder.Services.AddMinioObjectStorage(builder.Configuration, builder.Environment);
+builder.Services.AddRabbitMqMessageBus(builder.Configuration, builder.Environment);
+builder.Services.AddSingleton();
+builder.Services.AddScoped();
+builder.Services.AddCors(options => {
+ options.AddPolicy("AllowAll", c => c
+ .AllowAnyOrigin()
+ .AllowAnyMethod()
+ .AllowAnyHeader());
});
-
-ConfigureServices(builder.Services, builder.Configuration);
+builder.Services.AddAutoMapper(cfg => cfg.AddProfile());
+builder.WebHost.UseKestrel(options => { options.ListenAnyIP(8081); });
var app = builder.Build();
-if (app.Environment.IsDevelopment())
-{
- app.UseSwagger();
- app.UseSwaggerUI();
-}
-
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseCors("AllowAll");
app.UseRouting();
app.UseAuthorization();
+app.UseMiddleware();
+app.MapControllers();
-app.UseEndpoints(endpoints =>
-{
- endpoints.MapControllers();
- endpoints.MapFallbackToFile("/index.html");
-});
-
-await app.RunAsync();
-
-static void ConfigureServices(IServiceCollection services, IConfiguration configuration)
-{
- // MinIO
- services.AddSingleton(_ =>
- (MinioClient)new MinioClient()
- .WithEndpoint(configuration["MinIO:Endpoint"])
- .WithCredentials(
- configuration["MinIO:AccessKey"],
- configuration["MinIO:SecretKey"])
- .WithSSL(false)
- .Build());
-
- // Elasticsearch
- services.AddSingleton(_ =>
- {
- var elasticUri = configuration.GetConnectionString("ElasticSearch") ?? "http://localhost:9200";
- var settings = new ElasticsearchClientSettings(new Uri(elasticUri))
- .DefaultIndex("paperless-documents")
- .EnableDebugMode();
- return new ElasticsearchClient(settings);
- });
-
- services.AddScoped();
- services.AddSingleton();
- services.AddScoped();
- services.Configure(configuration.GetSection(OcrOptions.Ocr));
- services.AddSingleton();
- services.AddValidatorsFromAssemblyContaining();
- services.AddFluentValidationAutoValidation();
- services.AddAutoMapper(cfg => {
- cfg.AddProfile();
- });
-}
\ No newline at end of file
+await app.RunAsync();
\ No newline at end of file
diff --git a/PaperlessREST/Validation/DocumentUploadDtoValidator.cs b/PaperlessREST/Validation/DocumentUploadDtoValidator.cs
deleted file mode 100644
index 8963c91..0000000
--- a/PaperlessREST/Validation/DocumentUploadDtoValidator.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using Contract;
-using FluentValidation;
-
-namespace PaperlessREST.Validation;
-
-public class DocumentUploadDtoValidator : AbstractValidator
-{
- public DocumentUploadDtoValidator()
- {
- RuleFor(x => x.Name)
- .NotEmpty()
- .WithMessage("Document name cannot be empty.");
-
- RuleFor(x => x.File)
- .NotNull()
- .WithMessage("File is required.")
- .Must(file => file != null && IsAllowedContentType(file.ContentType))
- .WithMessage("File must be a PDF, PNG, or JPG.");
- }
-
- private bool IsAllowedContentType(string contentType)
- {
- var allowedContentTypes = new[] { "application/pdf", "image/png", "image/jpeg" };
- return allowedContentTypes.Contains(contentType);
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/AutoMapper.dll b/PaperlessREST/bin/Debug/net8.0/AutoMapper.dll
deleted file mode 100644
index b8e01b0..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/AutoMapper.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/CommunityToolkit.HighPerformance.dll b/PaperlessREST/bin/Debug/net8.0/CommunityToolkit.HighPerformance.dll
deleted file mode 100644
index 821df97..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/CommunityToolkit.HighPerformance.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Contract.dll b/PaperlessREST/bin/Debug/net8.0/Contract.dll
deleted file mode 100644
index 0f2fa4f..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Contract.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Contract.pdb b/PaperlessREST/bin/Debug/net8.0/Contract.pdb
deleted file mode 100644
index fded71a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Contract.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/EasyNetQ.Management.Client.dll b/PaperlessREST/bin/Debug/net8.0/EasyNetQ.Management.Client.dll
deleted file mode 100644
index 16d9e28..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/EasyNetQ.Management.Client.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/EasyNetQ.dll b/PaperlessREST/bin/Debug/net8.0/EasyNetQ.dll
deleted file mode 100644
index 00ae194..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/EasyNetQ.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Elastic.Clients.Elasticsearch.dll b/PaperlessREST/bin/Debug/net8.0/Elastic.Clients.Elasticsearch.dll
deleted file mode 100644
index 24fe226..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Elastic.Clients.Elasticsearch.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Elastic.Transport.dll b/PaperlessREST/bin/Debug/net8.0/Elastic.Transport.dll
deleted file mode 100644
index 8458919..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Elastic.Transport.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/FluentValidation.AspNetCore.dll b/PaperlessREST/bin/Debug/net8.0/FluentValidation.AspNetCore.dll
deleted file mode 100644
index 91b4e0b..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/FluentValidation.AspNetCore.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll b/PaperlessREST/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll
deleted file mode 100644
index 3f94755..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/FluentValidation.dll b/PaperlessREST/bin/Debug/net8.0/FluentValidation.dll
deleted file mode 100644
index 01eb485..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/FluentValidation.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Humanizer.dll b/PaperlessREST/bin/Debug/net8.0/Humanizer.dll
deleted file mode 100644
index c9a7ef8..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Humanizer.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Magick.NET-Q16-AnyCPU.dll b/PaperlessREST/bin/Debug/net8.0/Magick.NET-Q16-AnyCPU.dll
deleted file mode 100644
index b662fa1..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Magick.NET-Q16-AnyCPU.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Magick.NET.Core.dll b/PaperlessREST/bin/Debug/net8.0/Magick.NET.Core.dll
deleted file mode 100644
index 2aac826..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Magick.NET.Core.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll
deleted file mode 100644
index 2501632..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index fe6ba4c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
deleted file mode 100644
index dc218f9..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100644
index 412e7ed..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
deleted file mode 100644
index 8dec441..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
deleted file mode 100644
index 79e9046..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index 2169cf8..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
deleted file mode 100644
index 7ba3d94..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index f8c58d0..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index b628ed6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 077b1b6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index 81ed3de..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index bd71a2b..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
deleted file mode 100644
index 8905537..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
deleted file mode 100644
index 91cd942..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll
deleted file mode 100644
index 3c44f76..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index f9d1dc6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 35905b6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
deleted file mode 100644
index a7b3f21..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Microsoft.OpenApi.dll b/PaperlessREST/bin/Debug/net8.0/Microsoft.OpenApi.dll
deleted file mode 100644
index aac9a6d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Microsoft.OpenApi.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Minio.dll b/PaperlessREST/bin/Debug/net8.0/Minio.dll
deleted file mode 100644
index 63fb2d9..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Minio.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Mono.TextTemplating.dll b/PaperlessREST/bin/Debug/net8.0/Mono.TextTemplating.dll
deleted file mode 100644
index d5a4b3c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Mono.TextTemplating.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Newtonsoft.Json.dll b/PaperlessREST/bin/Debug/net8.0/Newtonsoft.Json.dll
deleted file mode 100644
index d035c38..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Newtonsoft.Json.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/PaperlessREST/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
deleted file mode 100644
index 4b4f0fc..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Npgsql.dll b/PaperlessREST/bin/Debug/net8.0/Npgsql.dll
deleted file mode 100644
index fde1387..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Npgsql.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.deps.json b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.deps.json
deleted file mode 100644
index 8fefb7c..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1397 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessServices": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "runtime": {
- "lib/net6.0/EasyNetQ.Management.Client.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.0.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "8.0.0.2",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.1.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/5.2.0": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "5.2.0.0",
- "fileVersion": "5.2.0.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessServices/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "EasyNetQ.Management.Client": "3.0.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "5.2.0"
- },
- "runtime": {
- "PaperlessServices.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FXWQN32X/eCmdWl4nJoDbeweJH8rrXMGbWx7cUnKoyaU1PG2h9a5nynqok8xgxHN/M9SIMdzY7uUcLsIlz7FJQ==",
- "path": "easynetq.management.client/3.0.0",
- "hashPath": "easynetq.management.client.3.0.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/5.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
- "path": "tesseract/5.2.0",
- "hashPath": "tesseract.5.2.0.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessServices/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.dll b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.dll
deleted file mode 100644
index ee0a302..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.exe b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.exe
deleted file mode 100644
index 608fab5..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.exe and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.pdb b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.pdb
deleted file mode 100644
index f4fccad..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.runtimeconfig.json b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.runtimeconfig.json
deleted file mode 100644
index 6bf7bef..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.runtimeconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.CT.json b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.CT.json
deleted file mode 100644
index f58b75e..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.CT.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/src/PaperlessREST/wwwroot"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.json b/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.json
deleted file mode 100644
index 6521d4c..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessREST.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.deps.json b/PaperlessREST/bin/Debug/net8.0/PaperlessServices.deps.json
deleted file mode 100644
index bb09d81..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.deps.json
+++ /dev/null
@@ -1,1264 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessServices/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "EasyNetQ.Management.Client": "3.0.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "5.2.0"
- },
- "runtime": {
- "PaperlessServices.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "runtime": {
- "lib/net6.0/EasyNetQ.Management.Client.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.0.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "8.0.0.2",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.1.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "System.CodeDom/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/5.2.0": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "5.2.0.0",
- "fileVersion": "5.2.0.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessServices/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FXWQN32X/eCmdWl4nJoDbeweJH8rrXMGbWx7cUnKoyaU1PG2h9a5nynqok8xgxHN/M9SIMdzY7uUcLsIlz7FJQ==",
- "path": "easynetq.management.client/3.0.0",
- "hashPath": "easynetq.management.client.3.0.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/5.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
- "path": "tesseract/5.2.0",
- "hashPath": "tesseract.5.2.0.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.dll b/PaperlessREST/bin/Debug/net8.0/PaperlessServices.dll
deleted file mode 100644
index da8461e..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.exe b/PaperlessREST/bin/Debug/net8.0/PaperlessServices.exe
deleted file mode 100644
index 8d72d4d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.exe and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.pdb b/PaperlessREST/bin/Debug/net8.0/PaperlessServices.pdb
deleted file mode 100644
index 588cbe7..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.runtimeconfig.json b/PaperlessREST/bin/Debug/net8.0/PaperlessServices.runtimeconfig.json
deleted file mode 100644
index 6bf7bef..0000000
--- a/PaperlessREST/bin/Debug/net8.0/PaperlessServices.runtimeconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/PostgreSQL.dll b/PaperlessREST/bin/Debug/net8.0/PostgreSQL.dll
deleted file mode 100644
index c231f77..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PostgreSQL.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/PostgreSQL.pdb b/PaperlessREST/bin/Debug/net8.0/PostgreSQL.pdb
deleted file mode 100644
index 1196be4..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/PostgreSQL.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/RabbitMQ.Client.dll b/PaperlessREST/bin/Debug/net8.0/RabbitMQ.Client.dll
deleted file mode 100644
index 8ad562d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/RabbitMQ.Client.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
deleted file mode 100644
index 41e2fc2..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
deleted file mode 100644
index de7f45d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
deleted file mode 100644
index 117b9f3..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.CodeDom.dll b/PaperlessREST/bin/Debug/net8.0/System.CodeDom.dll
deleted file mode 100644
index 3128b6a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.CodeDom.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/PaperlessREST/bin/Debug/net8.0/System.Composition.AttributedModel.dll
deleted file mode 100644
index d37283b..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Composition.AttributedModel.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Composition.Convention.dll b/PaperlessREST/bin/Debug/net8.0/System.Composition.Convention.dll
deleted file mode 100644
index b6fa4ab..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Composition.Convention.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Composition.Hosting.dll b/PaperlessREST/bin/Debug/net8.0/System.Composition.Hosting.dll
deleted file mode 100644
index c67f1c0..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Composition.Hosting.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Composition.Runtime.dll b/PaperlessREST/bin/Debug/net8.0/System.Composition.Runtime.dll
deleted file mode 100644
index 2a4b38c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Composition.Runtime.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Composition.TypedParts.dll b/PaperlessREST/bin/Debug/net8.0/System.Composition.TypedParts.dll
deleted file mode 100644
index 7c0c780..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Composition.TypedParts.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.IO.Hashing.dll b/PaperlessREST/bin/Debug/net8.0/System.IO.Hashing.dll
deleted file mode 100644
index 233a5c8..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.IO.Hashing.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/System.Reactive.dll b/PaperlessREST/bin/Debug/net8.0/System.Reactive.dll
deleted file mode 100644
index d6d2efa..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/System.Reactive.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/Tesseract.dll b/PaperlessREST/bin/Debug/net8.0/Tesseract.dll
deleted file mode 100644
index 0c3bd8a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/Tesseract.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index b08ba21..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index eba2a5a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index ff203e1..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index fe89036..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 3dda417..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 4d3bd0a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c41bb1f..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 05845f2..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 1e5038d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 456ac85..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 7bb3187..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 01edef3..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index de36d31..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 71d6443..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 23107b9..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 291cf9b..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index ef0d337..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index f266330..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 6affe5c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 263bd04..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index a94da35..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index c94e8e6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 6e0e837..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 212267a..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 1fae94d..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index b2e573c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index fdbe6ff..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 5fee24c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 9533b36..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index fa25298..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 1297d58..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 8af36a3..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 197797b..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 0fd342c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c09c2ab..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index d6eaab6..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/rest-appsettings.json b/PaperlessREST/bin/Debug/net8.0/rest-appsettings.json
deleted file mode 100644
index b63e068..0000000
--- a/PaperlessREST/bin/Debug/net8.0/rest-appsettings.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "Rabbit": "host=localhost;port=5672;username=guest;password=guest"
- },
- "RabbitMQ": {
- "Host": "rabbitmq",
- "Port": "5672",
- "Username": "guest",
- "Password": "guest"
- },
- "MinIO": {
- "Endpoint": "localhost:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin",
- "BucketName": "documents"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- },
- "OCR": {
- "Language": "eng",
- "TessDataPath": null
- }
-}
diff --git a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index ecfe483..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index e9133a5..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index baa7776..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 74714d8..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/runtimes/a b/PaperlessREST/bin/Debug/net8.0/runtimes/a
deleted file mode 100644
index 8b13789..0000000
--- a/PaperlessREST/bin/Debug/net8.0/runtimes/a
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/PaperlessREST/bin/Debug/net8.0/service-appsettings.json b/PaperlessREST/bin/Debug/net8.0/service-appsettings.json
deleted file mode 100644
index 81038aa..0000000
--- a/PaperlessREST/bin/Debug/net8.0/service-appsettings.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "Rabbit": "host=rabbitmq;port=5672;username=guest;password=guest"
- },
- "RabbitMQ": {
- "Host": "localhost",
- "Port": "5672",
- "Username": "guest",
- "Password": "guest"
- },
- "MinIO": {
- "Endpoint": "localhost:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin",
- "BucketName": "documents"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- },
- "OCR": {
- "Language": "eng",
- "TessDataPath": null
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 2fbf86e..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 4c57b04..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index b551e37..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 8758fff..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/x64/leptonica-1.82.0.dll b/PaperlessREST/bin/Debug/net8.0/x64/leptonica-1.82.0.dll
deleted file mode 100644
index 64f449c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/x64/leptonica-1.82.0.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/x64/tesseract50.dll b/PaperlessREST/bin/Debug/net8.0/x64/tesseract50.dll
deleted file mode 100644
index 92a0dd3..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/x64/tesseract50.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/x86/leptonica-1.82.0.dll b/PaperlessREST/bin/Debug/net8.0/x86/leptonica-1.82.0.dll
deleted file mode 100644
index d244fa2..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/x86/leptonica-1.82.0.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/x86/tesseract50.dll b/PaperlessREST/bin/Debug/net8.0/x86/tesseract50.dll
deleted file mode 100644
index 3a33641..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/x86/tesseract50.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index de4fe51..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 67b261c..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c6b8d86..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index a14ec60..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 2d39791..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 86802cf..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 691a8fa..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index e8e4ee0..0000000
Binary files a/PaperlessREST/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/AutoMapper.dll b/PaperlessREST/bin/Release/net8.0/AutoMapper.dll
deleted file mode 100644
index b8e01b0..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/AutoMapper.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/CommunityToolkit.HighPerformance.dll b/PaperlessREST/bin/Release/net8.0/CommunityToolkit.HighPerformance.dll
deleted file mode 100644
index 821df97..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/CommunityToolkit.HighPerformance.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Contract.dll b/PaperlessREST/bin/Release/net8.0/Contract.dll
deleted file mode 100644
index 755e8b8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Contract.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Contract.pdb b/PaperlessREST/bin/Release/net8.0/Contract.pdb
deleted file mode 100644
index c82349c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Contract.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/EasyNetQ.dll b/PaperlessREST/bin/Release/net8.0/EasyNetQ.dll
deleted file mode 100644
index 00ae194..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/EasyNetQ.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Elastic.Clients.Elasticsearch.dll b/PaperlessREST/bin/Release/net8.0/Elastic.Clients.Elasticsearch.dll
deleted file mode 100644
index 24fe226..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Elastic.Clients.Elasticsearch.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Elastic.Transport.dll b/PaperlessREST/bin/Release/net8.0/Elastic.Transport.dll
deleted file mode 100644
index 8458919..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Elastic.Transport.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/FluentValidation.AspNetCore.dll b/PaperlessREST/bin/Release/net8.0/FluentValidation.AspNetCore.dll
deleted file mode 100644
index 91b4e0b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/FluentValidation.AspNetCore.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/FluentValidation.DependencyInjectionExtensions.dll b/PaperlessREST/bin/Release/net8.0/FluentValidation.DependencyInjectionExtensions.dll
deleted file mode 100644
index 3f94755..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/FluentValidation.dll b/PaperlessREST/bin/Release/net8.0/FluentValidation.dll
deleted file mode 100644
index 01eb485..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/FluentValidation.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Humanizer.dll b/PaperlessREST/bin/Release/net8.0/Humanizer.dll
deleted file mode 100644
index c9a7ef8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Humanizer.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Magick.NET-Q16-AnyCPU.dll b/PaperlessREST/bin/Release/net8.0/Magick.NET-Q16-AnyCPU.dll
deleted file mode 100644
index b662fa1..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Magick.NET-Q16-AnyCPU.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Magick.NET.Core.dll b/PaperlessREST/bin/Release/net8.0/Magick.NET.Core.dll
deleted file mode 100644
index 2aac826..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Magick.NET.Core.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.AspNetCore.OpenApi.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.AspNetCore.OpenApi.dll
deleted file mode 100644
index 2501632..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index fe6ba4c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
deleted file mode 100644
index dc218f9..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100644
index 412e7ed..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
deleted file mode 100644
index 8dec441..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.dll
deleted file mode 100644
index 79e9046..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index 2169cf8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll
deleted file mode 100644
index 7ba3d94..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index f8c58d0..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index b628ed6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 077b1b6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index 81ed3de..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index bd71a2b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll
deleted file mode 100644
index 8905537..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
deleted file mode 100644
index 91cd942..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll
deleted file mode 100644
index 3c44f76..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index f9d1dc6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 35905b6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Options.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Options.dll
deleted file mode 100644
index a7b3f21..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Microsoft.OpenApi.dll b/PaperlessREST/bin/Release/net8.0/Microsoft.OpenApi.dll
deleted file mode 100644
index aac9a6d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Microsoft.OpenApi.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Minio.dll b/PaperlessREST/bin/Release/net8.0/Minio.dll
deleted file mode 100644
index 63fb2d9..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Minio.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Mono.TextTemplating.dll b/PaperlessREST/bin/Release/net8.0/Mono.TextTemplating.dll
deleted file mode 100644
index d5a4b3c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Mono.TextTemplating.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Newtonsoft.Json.dll b/PaperlessREST/bin/Release/net8.0/Newtonsoft.Json.dll
deleted file mode 100644
index d035c38..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Newtonsoft.Json.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/PaperlessREST/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
deleted file mode 100644
index 4b4f0fc..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Npgsql.dll b/PaperlessREST/bin/Release/net8.0/Npgsql.dll
deleted file mode 100644
index fde1387..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Npgsql.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.deps.json b/PaperlessREST/bin/Release/net8.0/PaperlessREST.deps.json
deleted file mode 100644
index ab4c78f..0000000
--- a/PaperlessREST/bin/Release/net8.0/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1382 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessService": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "8.0.0.2",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.1.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.dll b/PaperlessREST/bin/Release/net8.0/PaperlessREST.dll
deleted file mode 100644
index 668e7c8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.exe b/PaperlessREST/bin/Release/net8.0/PaperlessREST.exe
deleted file mode 100644
index 7e3808b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessREST.exe and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.pdb b/PaperlessREST/bin/Release/net8.0/PaperlessREST.pdb
deleted file mode 100644
index 98557db..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessREST.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/PaperlessREST.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/PaperlessREST.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessREST.staticwebassets.runtime.json b/PaperlessREST/bin/Release/net8.0/PaperlessREST.staticwebassets.runtime.json
deleted file mode 100644
index 6521d4c..0000000
--- a/PaperlessREST/bin/Release/net8.0/PaperlessREST.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessService.deps.json b/PaperlessREST/bin/Release/net8.0/PaperlessService.deps.json
deleted file mode 100644
index 69d98ad..0000000
--- a/PaperlessREST/bin/Release/net8.0/PaperlessService.deps.json
+++ /dev/null
@@ -1,1248 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.5.0.0",
- "fileVersion": "4.500.23.10905"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "8.0.0.2",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.1.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "System.CodeDom/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessService.dll b/PaperlessREST/bin/Release/net8.0/PaperlessService.dll
deleted file mode 100644
index a63c39a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessService.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessService.exe b/PaperlessREST/bin/Release/net8.0/PaperlessService.exe
deleted file mode 100644
index 5570200..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessService.exe and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessService.pdb b/PaperlessREST/bin/Release/net8.0/PaperlessService.pdb
deleted file mode 100644
index 4893a45..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PaperlessService.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PaperlessService.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/PaperlessService.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/PaperlessService.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/PostgreSQL.dll b/PaperlessREST/bin/Release/net8.0/PostgreSQL.dll
deleted file mode 100644
index 7da918e..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PostgreSQL.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/PostgreSQL.pdb b/PaperlessREST/bin/Release/net8.0/PostgreSQL.pdb
deleted file mode 100644
index cf9371d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/PostgreSQL.pdb and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/RabbitMQ.Client.dll b/PaperlessREST/bin/Release/net8.0/RabbitMQ.Client.dll
deleted file mode 100644
index 8ad562d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/RabbitMQ.Client.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll
deleted file mode 100644
index 41e2fc2..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
deleted file mode 100644
index de7f45d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
deleted file mode 100644
index 117b9f3..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.CodeDom.dll b/PaperlessREST/bin/Release/net8.0/System.CodeDom.dll
deleted file mode 100644
index 3128b6a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.CodeDom.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Composition.AttributedModel.dll b/PaperlessREST/bin/Release/net8.0/System.Composition.AttributedModel.dll
deleted file mode 100644
index d37283b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Composition.AttributedModel.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Composition.Convention.dll b/PaperlessREST/bin/Release/net8.0/System.Composition.Convention.dll
deleted file mode 100644
index b6fa4ab..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Composition.Convention.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Composition.Hosting.dll b/PaperlessREST/bin/Release/net8.0/System.Composition.Hosting.dll
deleted file mode 100644
index c67f1c0..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Composition.Hosting.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Composition.Runtime.dll b/PaperlessREST/bin/Release/net8.0/System.Composition.Runtime.dll
deleted file mode 100644
index 2a4b38c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Composition.Runtime.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Composition.TypedParts.dll b/PaperlessREST/bin/Release/net8.0/System.Composition.TypedParts.dll
deleted file mode 100644
index 7c0c780..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Composition.TypedParts.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.IO.Hashing.dll b/PaperlessREST/bin/Release/net8.0/System.IO.Hashing.dll
deleted file mode 100644
index 233a5c8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.IO.Hashing.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/System.Reactive.dll b/PaperlessREST/bin/Release/net8.0/System.Reactive.dll
deleted file mode 100644
index d6d2efa..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/System.Reactive.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/Tesseract.dll b/PaperlessREST/bin/Release/net8.0/Tesseract.dll
deleted file mode 100644
index ab20fd8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/Tesseract.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index b08ba21..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index eba2a5a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index ff203e1..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index fe89036..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 3dda417..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 4d3bd0a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c41bb1f..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 05845f2..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 1e5038d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 456ac85..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 7bb3187..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 01edef3..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index de36d31..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 71d6443..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 23107b9..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 291cf9b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index ef0d337..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index f266330..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 6affe5c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 263bd04..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index a94da35..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index c94e8e6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 6e0e837..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 212267a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 1fae94d..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index b2e573c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index fdbe6ff..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 5fee24c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.deps.json b/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.deps.json
deleted file mode 100644
index 9dad370..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1086 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0/linux-x64",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {},
- ".NETCoreApp,Version=v8.0/linux-x64": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessService": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {},
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "native": {
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {},
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {},
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {},
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.Composition.Runtime/6.0.0": {},
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/PaperlessREST.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/PaperlessService.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/out/PaperlessService.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/PaperlessService.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.deps.json b/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.deps.json
deleted file mode 100644
index 83f30bf..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1122 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessService": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {},
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {},
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {},
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {},
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.Composition.Runtime/6.0.0": {},
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessREST.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessService.runtimeconfig.json b/PaperlessREST/bin/Release/net8.0/out/out/PaperlessService.runtimeconfig.json
deleted file mode 100644
index a5093ee..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/out/PaperlessService.runtimeconfig.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/out/out/rest-appsettings.json b/PaperlessREST/bin/Release/net8.0/out/out/rest-appsettings.json
deleted file mode 100644
index 13f856a..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/out/rest-appsettings.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning",
- "EasyNetQ": "Debug"
- }
- },
- "AllowedHosts": "*",
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "minio:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin",
- "BucketName": "documents"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/out/out/service-appsettings.json b/PaperlessREST/bin/Release/net8.0/out/out/service-appsettings.json
deleted file mode 100644
index 3a41be2..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/out/service-appsettings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "localhost:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- },
- "OCR": {
- "Language": "eng",
- "TessDataPath": null
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/out/rest-appsettings.json b/PaperlessREST/bin/Release/net8.0/out/rest-appsettings.json
deleted file mode 100644
index 13f856a..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/rest-appsettings.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning",
- "EasyNetQ": "Debug"
- }
- },
- "AllowedHosts": "*",
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "minio:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin",
- "BucketName": "documents"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/out/service-appsettings.json b/PaperlessREST/bin/Release/net8.0/out/service-appsettings.json
deleted file mode 100644
index 3a41be2..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/service-appsettings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "localhost:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- },
- "OCR": {
- "Language": "eng",
- "TessDataPath": null
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/out/web.config b/PaperlessREST/bin/Release/net8.0/out/web.config
deleted file mode 100644
index 41f8a12..0000000
--- a/PaperlessREST/bin/Release/net8.0/out/web.config
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 9533b36..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index fa25298..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 1297d58..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 8af36a3..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 197797b..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 0fd342c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c09c2ab..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index d6eaab6..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/rest-appsettings.json b/PaperlessREST/bin/Release/net8.0/rest-appsettings.json
deleted file mode 100644
index 13f856a..0000000
--- a/PaperlessREST/bin/Release/net8.0/rest-appsettings.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning",
- "EasyNetQ": "Debug"
- }
- },
- "AllowedHosts": "*",
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "minio:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin",
- "BucketName": "documents"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index ecfe483..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index e9133a5..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index baa7776..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 74714d8..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/runtimes/win-x64/native/Magick.Native-Q16-x64.dll b/PaperlessREST/bin/Release/net8.0/runtimes/win-x64/native/Magick.Native-Q16-x64.dll
deleted file mode 100644
index c7bf71a..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/runtimes/win-x64/native/Magick.Native-Q16-x64.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/service-appsettings.json b/PaperlessREST/bin/Release/net8.0/service-appsettings.json
deleted file mode 100644
index 3a41be2..0000000
--- a/PaperlessREST/bin/Release/net8.0/service-appsettings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
- "RabbitMQ": "host=localhost;port=5672;username=guest;password=guest"
- },
- "MinIO": {
- "Endpoint": "localhost:9000",
- "AccessKey": "minioadmin",
- "SecretKey": "minioadmin"
- },
- "Elasticsearch": {
- "Url": "http://localhost:9200"
- },
- "OCR": {
- "Language": "eng",
- "TessDataPath": null
- }
-}
diff --git a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 2fbf86e..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 4c57b04..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index b551e37..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index 8758fff..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/x64/leptonica-1.80.0.dll b/PaperlessREST/bin/Release/net8.0/x64/leptonica-1.80.0.dll
deleted file mode 100644
index 9ef9b59..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/x64/leptonica-1.80.0.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/x64/tesseract41.dll b/PaperlessREST/bin/Release/net8.0/x64/tesseract41.dll
deleted file mode 100644
index dcf6edf..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/x64/tesseract41.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/x86/leptonica-1.80.0.dll b/PaperlessREST/bin/Release/net8.0/x86/leptonica-1.80.0.dll
deleted file mode 100644
index 294dffd..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/x86/leptonica-1.80.0.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/x86/tesseract41.dll b/PaperlessREST/bin/Release/net8.0/x86/tesseract41.dll
deleted file mode 100644
index 65dc7ad..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/x86/tesseract41.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index de4fe51..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 67b261c..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index c6b8d86..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index a14ec60..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100644
index 2d39791..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100644
index 86802cf..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100644
index 691a8fa..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100644
index e8e4ee0..0000000
Binary files a/PaperlessREST/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/PaperlessREST/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/PaperlessREST/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/PaperlessREST/obj/Debug/net8.0/Paperles.DC78CBFF.Up2Date b/PaperlessREST/obj/Debug/net8.0/Paperles.DC78CBFF.Up2Date
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfo.cs b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfo.cs
index e969e30..2cee680 100644
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfo.cs
+++ b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfo.cs
@@ -1,23 +1,22 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("bbbe0efc-c832-4f8a-8caa-627312d39045")]
-[assembly: System.Reflection.AssemblyCompanyAttribute("PaperlessREST")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0e2f3ae428e9d3aabb3af1da0499863a8e05f3d9")]
-[assembly: System.Reflection.AssemblyProductAttribute("PaperlessREST")]
-[assembly: System.Reflection.AssemblyTitleAttribute("PaperlessREST")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
-
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("PaperlessREST")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5100d52db9031dc8b3f6fb38a73a883c6fb2822")]
+[assembly: System.Reflection.AssemblyProductAttribute("PaperlessREST")]
+[assembly: System.Reflection.AssemblyTitleAttribute("PaperlessREST")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfoInputs.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfoInputs.cache
index 35bc194..3529b22 100644
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfoInputs.cache
+++ b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.AssemblyInfoInputs.cache
@@ -1 +1 @@
-1ecc5025a3c57f28be96de3265c56422e9517f04903b507d78f1cf6b66e6b2e4
+19e47739afb74c9eb0757b39d4fdb89504904fee299f30b045399cd36a74f1b3
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
index 4a01e3d..d8f673d 100644
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
+++ b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,19 +1,21 @@
-is_global = true
-build_property.TargetFramework = net8.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb = true
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = PaperlessREST
-build_property.RootNamespace = PaperlessREST
-build_property.ProjectDir = C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.RazorLangVersion = 8.0
-build_property.SupportLocalizedComponentNames =
-build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST
-build_property._RazorSourceGeneratorDebug =
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = PaperlessREST
+build_property.RootNamespace = PaperlessREST
+build_property.ProjectDir = C:\Users\anfh2\RiderProjects\Paperless\PaperlessREST\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 8.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\anfh2\RiderProjects\Paperless\PaperlessREST
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 8.0
+build_property.EnableCodeStyleSeverity =
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GlobalUsings.g.cs b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GlobalUsings.g.cs
index 45ca3c5..025530a 100644
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GlobalUsings.g.cs
+++ b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.GlobalUsings.g.cs
@@ -1,17 +1,17 @@
-//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
+//
+global using global::Microsoft.AspNetCore.Builder;
+global using global::Microsoft.AspNetCore.Hosting;
+global using global::Microsoft.AspNetCore.Http;
+global using global::Microsoft.AspNetCore.Routing;
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Hosting;
+global using global::Microsoft.Extensions.Logging;
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Net.Http.Json;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
deleted file mode 100644
index b2e1f35..0000000
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FluentValidation.AspNetCore")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("PaperlessServices")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
-
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
-
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.assets.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.assets.cache
index bc94185..032a2f4 100644
Binary files a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.assets.cache and b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.assets.cache differ
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.AssemblyReference.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.AssemblyReference.cache
index 4be41d4..e859723 100644
Binary files a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.AssemblyReference.cache and b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.AssemblyReference.cache differ
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache
deleted file mode 100644
index b072f29..0000000
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9613e8a9a1c95e8745a7caf06e5ef9bb66d2407de90404be8aebf20956d416d2
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.FileListAbsolute.txt b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.FileListAbsolute.txt
deleted file mode 100644
index 3dfeb03..0000000
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,153 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessServices.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessServices.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\x86\leptonica-1.82.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\x86\tesseract50.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\x64\leptonica-1.82.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\x64\tesseract50.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessServices.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.staticwebassets.runtime.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\AutoMapper.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\CommunityToolkit.HighPerformance.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\EasyNetQ.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\EasyNetQ.Management.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Elastic.Clients.Elasticsearch.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Elastic.Transport.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\FluentValidation.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\FluentValidation.AspNetCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\FluentValidation.DependencyInjectionExtensions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Humanizer.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Magick.NET-Q16-AnyCPU.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Magick.NET.Core.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.Extensions.Options.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Microsoft.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Minio.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Mono.TextTemplating.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Newtonsoft.Json.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Npgsql.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\RabbitMQ.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.CodeDom.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Composition.AttributedModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Composition.Convention.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Composition.Hosting.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Composition.Runtime.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Composition.TypedParts.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.IO.Hashing.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\System.Reactive.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Tesseract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\linux-arm64\native\Magick.Native-Q16-arm64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\linux-musl-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\linux-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\osx-arm64\native\Magick.Native-Q16-arm64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\osx-x64\native\Magick.Native-Q16-x64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\win-arm64\native\Magick.Native-Q16-arm64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\win-x64\native\Magick.Native-Q16-x64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\runtimes\win-x86\native\Magick.Native-Q16-x86.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessServices.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PaperlessServices.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Debug\net8.0\PostgreSQL.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.csproj.AssemblyReference.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.AssemblyInfoInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.AssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.csproj.CoreCompileInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.sourcelink.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets.build.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets.development.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets\msbuild.build.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\staticwebassets.pack.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\scopedcss\bundle\PaperlessREST.styles.css
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\Paperles.DC78CBFF.Up2Date
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\refint\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\PaperlessREST.genruntimeconfig.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Debug\net8.0\ref\PaperlessREST.dll
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.dll b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.dll
deleted file mode 100644
index ee0a302..0000000
Binary files a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.genruntimeconfig.cache b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.genruntimeconfig.cache
deleted file mode 100644
index 20751c9..0000000
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-719fc1092434b168639e99295d62694057503e3cc0111b34e2f9588410bdab86
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.pdb b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.pdb
deleted file mode 100644
index f4fccad..0000000
Binary files a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.pdb and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.sourcelink.json b/PaperlessREST/obj/Debug/net8.0/PaperlessREST.sourcelink.json
deleted file mode 100644
index 68c8f2b..0000000
--- a/PaperlessREST/obj/Debug/net8.0/PaperlessREST.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\*":"https://raw.githubusercontent.com/ANcpLua/SWEN3/0e2f3ae428e9d3aabb3af1da0499863a8e05f3d9/*"}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/apphost.exe b/PaperlessREST/obj/Debug/net8.0/apphost.exe
deleted file mode 100644
index 608fab5..0000000
Binary files a/PaperlessREST/obj/Debug/net8.0/apphost.exe and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/ref/PaperlessREST.dll b/PaperlessREST/obj/Debug/net8.0/ref/PaperlessREST.dll
deleted file mode 100644
index f8ef1b2..0000000
Binary files a/PaperlessREST/obj/Debug/net8.0/ref/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/refint/PaperlessREST.dll b/PaperlessREST/obj/Debug/net8.0/refint/PaperlessREST.dll
deleted file mode 100644
index f8ef1b2..0000000
Binary files a/PaperlessREST/obj/Debug/net8.0/refint/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets.build.json b/PaperlessREST/obj/Debug/net8.0/staticwebassets.build.json
deleted file mode 100644
index 8ff3f97..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets.build.json
+++ /dev/null
@@ -1,146 +0,0 @@
-{
- "Version": 1,
- "Hash": "f7EVXqroeH4DHiBj2XRcJTPOI/F7q7FIs1E+EFAVSO4=",
- "Source": "PaperlessREST",
- "BasePath": "_content/PaperlessREST",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj",
- "Version": 2,
- "Source": "PaperlessServices",
- "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
- "AdditionalPublishProperties": "Configuration=Debug;Platform=AnyCPU",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
- "AdditionalBuildProperties": "Configuration=Debug;Platform=AnyCPU",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "PaperlessREST\\wwwroot",
- "Source": "PaperlessREST",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "css/index.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\css\\index.css"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "documents.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\documents.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\favicon.ico"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "index.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\index.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "js/main.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\js\\main.js"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "upload.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\upload.html"
- }
- ]
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets.development.json b/PaperlessREST/obj/Debug/net8.0/staticwebassets.development.json
deleted file mode 100644
index 6521d4c..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets.development.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets.pack.json b/PaperlessREST/obj/Debug/net8.0/staticwebassets.pack.json
deleted file mode 100644
index a30abb9..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets.pack.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "Files": [
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "PackagePath": "staticwebassets\\css\\index.css"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "PackagePath": "staticwebassets\\documents.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "PackagePath": "staticwebassets\\favicon.ico"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "PackagePath": "staticwebassets\\index.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "PackagePath": "staticwebassets\\js\\main.js"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "PackagePath": "staticwebassets\\upload.html"
- },
- {
- "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props",
- "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
- },
- {
- "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.build.PaperlessREST.props",
- "PackagePath": "build\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildMultiTargeting.PaperlessREST.props",
- "PackagePath": "buildMultiTargeting\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildTransitive.PaperlessREST.props",
- "PackagePath": "buildTransitive\\PaperlessREST.props"
- }
- ],
- "ElementsToRemove": []
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props b/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
deleted file mode 100644
index df8a7cb..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- css/index.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\index.css))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- documents.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\documents.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- favicon.ico
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- index.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\index.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- js/main.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\main.js))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- upload.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\upload.html))
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.build.PaperlessREST.props b/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.build.PaperlessREST.props
deleted file mode 100644
index c12810d..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.build.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props b/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
deleted file mode 100644
index 23e6794..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props b/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
deleted file mode 100644
index 2e3fb65..0000000
--- a/PaperlessREST/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/PaperlessREST.csproj.EntityFrameworkCore.targets b/PaperlessREST/obj/PaperlessREST.csproj.EntityFrameworkCore.targets
deleted file mode 100644
index 6b67a59..0000000
--- a/PaperlessREST/obj/PaperlessREST.csproj.EntityFrameworkCore.targets
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/PaperlessREST/obj/PaperlessREST.csproj.nuget.dgspec.json b/PaperlessREST/obj/PaperlessREST.csproj.nuget.dgspec.json
index c14cd9a..61f7980 100644
--- a/PaperlessREST/obj/PaperlessREST.csproj.nuget.dgspec.json
+++ b/PaperlessREST/obj/PaperlessREST.csproj.nuget.dgspec.json
@@ -1,431 +1,461 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj": {}
- },
- "projects": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
- "projectName": "Contract",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj",
- "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\obj\\",
- "projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": {
- "target": "Package",
- "version": "[5.0.17, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj",
- "projectName": "PaperlessREST",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj",
- "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\obj\\",
- "projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj"
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj"
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "AutoMapper": {
- "target": "Package",
- "version": "[13.0.1, )"
- },
- "Elastic.Clients.Elasticsearch": {
- "target": "Package",
- "version": "[8.16.3, )"
- },
- "FluentValidation": {
- "target": "Package",
- "version": "[11.11.0, )"
- },
- "FluentValidation.AspNetCore": {
- "target": "Package",
- "version": "[11.3.0, )"
- },
- "Microsoft.AspNetCore.OpenApi": {
- "target": "Package",
- "version": "[8.0.11, )"
- },
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "Swashbuckle.AspNetCore": {
- "target": "Package",
- "version": "[6.6.2, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj",
- "projectName": "PaperlessServices",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj",
- "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\obj\\",
- "projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj"
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "AutoMapper": {
- "target": "Package",
- "version": "[13.0.1, )"
- },
- "EasyNetQ": {
- "target": "Package",
- "version": "[7.8.0, )"
- },
- "EasyNetQ.Management.Client": {
- "target": "Package",
- "version": "[3.0.0, )"
- },
- "Elastic.Clients.Elasticsearch": {
- "target": "Package",
- "version": "[8.16.3, )"
- },
- "FluentValidation": {
- "target": "Package",
- "version": "[11.11.0, )"
- },
- "FluentValidation.AspNetCore": {
- "target": "Package",
- "version": "[11.3.0, )"
- },
- "Magick.NET-Q16-AnyCPU": {
- "target": "Package",
- "version": "[14.2.0, )"
- },
- "Magick.NET.Core": {
- "target": "Package",
- "version": "[14.2.0, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.Extensions.Hosting.Abstractions": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "Minio": {
- "target": "Package",
- "version": "[6.0.3, )"
- },
- "Tesseract": {
- "target": "Package",
- "version": "[5.2.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj",
- "projectName": "PostgreSQL",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj",
- "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\obj\\",
- "projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "FluentValidation": {
- "target": "Package",
- "version": "[11.11.0, )"
- },
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL": {
- "target": "Package",
- "version": "[8.0.10, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
+ "projectName": "Contract",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj",
+ "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": {
+ "target": "Package",
+ "version": "[5.0.17, )"
+ },
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.Extensions.Logging.Abstractions": {
+ "target": "Package",
+ "version": "[8.0.2, )"
+ },
+ "Microsoft.NET.ILLink.Tasks": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.12, )",
+ "autoReferenced": true
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win-x64": {
+ "#import": []
+ }
+ }
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj",
+ "projectName": "PaperlessREST",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj",
+ "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj"
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj"
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "AutoMapper": {
+ "target": "Package",
+ "version": "[13.0.1, )"
+ },
+ "Elastic.Clients.Elasticsearch": {
+ "target": "Package",
+ "version": "[8.17.0, )"
+ },
+ "FluentValidation": {
+ "target": "Package",
+ "version": "[11.11.0, )"
+ },
+ "FluentValidation.AspNetCore": {
+ "target": "Package",
+ "version": "[11.3.0, )"
+ },
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.11, )"
+ },
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Tools": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[13.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj",
+ "projectName": "PaperlessServices",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj",
+ "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj"
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "AutoMapper": {
+ "target": "Package",
+ "version": "[13.0.1, )"
+ },
+ "EasyNetQ": {
+ "target": "Package",
+ "version": "[7.8.0, )"
+ },
+ "Elastic.Clients.Elasticsearch": {
+ "target": "Package",
+ "version": "[8.17.0, )"
+ },
+ "FluentValidation": {
+ "target": "Package",
+ "version": "[11.11.0, )"
+ },
+ "FluentValidation.DependencyInjectionExtensions": {
+ "target": "Package",
+ "version": "[11.11.0, )"
+ },
+ "Magick.NET-Q16-AnyCPU": {
+ "target": "Package",
+ "version": "[14.2.0, )"
+ },
+ "Magick.NET.Core": {
+ "target": "Package",
+ "version": "[14.2.0, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Tools": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions": {
+ "target": "Package",
+ "version": "[8.0.1, )"
+ },
+ "Minio": {
+ "target": "Package",
+ "version": "[6.0.3, )"
+ },
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[13.0.3, )"
+ },
+ "Tesseract": {
+ "target": "Package",
+ "version": "[5.2.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj",
+ "projectName": "PostgreSQL",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj",
+ "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Tools": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.NET.ILLink.Tasks": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.12, )",
+ "autoReferenced": true
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
+ "version": "[8.0.12, 8.0.12]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ },
+ "runtimes": {
+ "win-x64": {
+ "#import": []
+ }
+ }
+ }
+ }
}
\ No newline at end of file
diff --git a/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.props b/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.props
index c7edc49..9e538a5 100644
--- a/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.props
+++ b/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.props
@@ -1,27 +1,23 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\anfh2\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.12.0
-
-
-
-
-
-
-
-
-
-
-
-
- C:\Users\anfh2\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
- C:\Users\anfh2\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
- C:\Users\anfh2\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.10
-
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\anfh2\.nuget\packages\
+ PackageReference
+ 6.12.0
+
+
+
+
+
+
+
+
+
+ C:\Users\anfh2\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
+ C:\Users\anfh2\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.10
+
\ No newline at end of file
diff --git a/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.targets b/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.targets
index d03dee7..a8ad662 100644
--- a/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.targets
+++ b/PaperlessREST/obj/PaperlessREST.csproj.nuget.g.targets
@@ -1,9 +1,8 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/Paperles.DC78CBFF.Up2Date b/PaperlessREST/obj/Release/net8.0/Paperles.DC78CBFF.Up2Date
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.AssemblyInfoInputs.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.AssemblyInfoInputs.cache
deleted file mode 100644
index c3a21ca..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-dda7aaf7de128f1fd1d94df4c5cd716e5fe5250739c73ee381344530810ab654
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs b/PaperlessREST/obj/Release/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
deleted file mode 100644
index d045fcf..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FluentValidation.AspNetCore")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("PaperlessService")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
-
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
-
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.assets.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.assets.cache
deleted file mode 100644
index 1b5b473..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/PaperlessREST.assets.cache and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.AssemblyReference.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.AssemblyReference.cache
deleted file mode 100644
index 788c564..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 5199c7d..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-599059ba99d33f68950cdc280b5eb6fc8206ca9e40ba4eaacdb875da4fec45e8
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.FileListAbsolute.txt b/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.FileListAbsolute.txt
deleted file mode 100644
index fe3b0ab..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,163 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessService.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\x86\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\x86\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\x64\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\x64\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessService.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.staticwebassets.runtime.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\AutoMapper.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\CommunityToolkit.HighPerformance.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\EasyNetQ.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Elastic.Clients.Elasticsearch.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Elastic.Transport.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\FluentValidation.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\FluentValidation.AspNetCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\FluentValidation.DependencyInjectionExtensions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Humanizer.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Magick.NET-Q16-AnyCPU.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Magick.NET.Core.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.AspNetCore.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.CodeAnalysis.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.CodeAnalysis.CSharp.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.CodeAnalysis.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.EntityFrameworkCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Design.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Caching.Memory.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.DependencyModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Diagnostics.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Hosting.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Logging.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.Extensions.Options.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Microsoft.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Minio.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Mono.TextTemplating.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Newtonsoft.Json.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Npgsql.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\RabbitMQ.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.CodeDom.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Composition.AttributedModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Composition.Convention.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Composition.Hosting.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Composition.Runtime.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Composition.TypedParts.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.IO.Hashing.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\System.Reactive.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Tesseract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\de\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\es\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\it\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\linux-arm64\native\Magick.Native-Q16-arm64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\linux-musl-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\linux-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\osx-arm64\native\Magick.Native-Q16-arm64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\osx-x64\native\Magick.Native-Q16-x64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\win-arm64\native\Magick.Native-Q16-arm64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\win-x64\native\Magick.Native-Q16-x64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\runtimes\win-x86\native\Magick.Native-Q16-x86.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessService.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PaperlessService.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\PostgreSQL.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.csproj.AssemblyReference.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.AssemblyInfoInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.AssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.csproj.CoreCompileInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.sourcelink.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets.build.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets.development.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets\msbuild.build.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\staticwebassets.pack.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\scopedcss\bundle\PaperlessREST.styles.css
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\Paperles.DC78CBFF.Up2Date
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\refint\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\PaperlessREST.genruntimeconfig.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\ref\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\web.config
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\out\service-appsettings.json
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.deps.json b/PaperlessREST/obj/Release/net8.0/PaperlessREST.deps.json
deleted file mode 100644
index 83f30bf..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1122 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessService": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {},
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "7.1.1.41"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {},
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {},
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {},
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.Composition.Runtime/6.0.0": {},
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/PaperlessREST.dll
deleted file mode 100644
index 668e7c8..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.genpublishdeps.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.genpublishdeps.cache
deleted file mode 100644
index bed1136..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.genpublishdeps.cache
+++ /dev/null
@@ -1 +0,0 @@
-176b792e4366673116ce5f72b2370bb88c6a62d75ec03d517394e5aea08c245e
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.genruntimeconfig.cache b/PaperlessREST/obj/Release/net8.0/PaperlessREST.genruntimeconfig.cache
deleted file mode 100644
index f66ecfb..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-d09926ed55991737505d0b8074d789be496c44530e082fb7e611f33036b3e387
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.pdb b/PaperlessREST/obj/Release/net8.0/PaperlessREST.pdb
deleted file mode 100644
index 98557db..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/PaperlessREST.pdb and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/PaperlessREST.sourcelink.json b/PaperlessREST/obj/Release/net8.0/PaperlessREST.sourcelink.json
deleted file mode 100644
index d453e13..0000000
--- a/PaperlessREST/obj/Release/net8.0/PaperlessREST.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\*":"https://raw.githubusercontent.com/ANcpLua/SWEN3/3cabf6dc3c8503efa14913ebc65389f8f5716d55/*"}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/PublishOutputs.4d371328c6.txt b/PaperlessREST/obj/Release/net8.0/PublishOutputs.4d371328c6.txt
deleted file mode 100644
index cc39559..0000000
--- a/PaperlessREST/obj/Release/net8.0/PublishOutputs.4d371328c6.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.exe
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x86\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x86\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x64\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x64\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\web.config
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\AutoMapper.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\CommunityToolkit.HighPerformance.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\EasyNetQ.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Elastic.Clients.Elasticsearch.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Elastic.Transport.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.AspNetCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.DependencyInjectionExtensions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Magick.NET-Q16-AnyCPU.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Magick.NET.Core.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.AspNetCore.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Caching.Memory.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Diagnostics.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Hosting.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Logging.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Options.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Minio.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Newtonsoft.Json.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Npgsql.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\RabbitMQ.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\System.IO.Hashing.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\System.Reactive.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Tesseract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\linux-arm64\native\Magick.Native-Q16-arm64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\linux-musl-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\linux-x64\native\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\osx-arm64\native\Magick.Native-Q16-arm64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\osx-x64\native\Magick.Native-Q16-x64.dll.dylib
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\win-arm64\native\Magick.Native-Q16-arm64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\win-x64\native\Magick.Native-Q16-x64.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\runtimes\win-x86\native\Magick.Native-Q16-x86.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PostgreSQL.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.deps.json
diff --git a/PaperlessREST/obj/Release/net8.0/apphost.exe b/PaperlessREST/obj/Release/net8.0/apphost.exe
deleted file mode 100644
index 7e3808b..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/apphost.exe and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/Paperles.DC78CBFF.Up2Date b/PaperlessREST/obj/Release/net8.0/linux-x64/Paperles.DC78CBFF.Up2Date
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.AssemblyInfoInputs.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.AssemblyInfoInputs.cache
deleted file mode 100644
index c3a21ca..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-dda7aaf7de128f1fd1d94df4c5cd716e5fe5250739c73ee381344530810ab654
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 4a01e3d..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,19 +0,0 @@
-is_global = true
-build_property.TargetFramework = net8.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb = true
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = PaperlessREST
-build_property.RootNamespace = PaperlessREST
-build_property.ProjectDir = C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.RazorLangVersion = 8.0
-build_property.SupportLocalizedComponentNames =
-build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST
-build_property._RazorSourceGeneratorDebug =
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GlobalUsings.g.cs b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GlobalUsings.g.cs
deleted file mode 100644
index 45ca3c5..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.GlobalUsings.g.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
deleted file mode 100644
index d045fcf..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FluentValidation.AspNetCore")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("PaperlessService")]
-[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
-
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
-
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.assets.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.assets.cache
deleted file mode 100644
index 192ca96..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.assets.cache and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.AssemblyReference.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.AssemblyReference.cache
deleted file mode 100644
index c9ebfe1..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.CoreCompileInputs.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.CoreCompileInputs.cache
deleted file mode 100644
index d1467f9..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-4ff5ec0834017487d4e091ed73a7401a983d471b7e6f785cc94e133ac820e3a1
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.FileListAbsolute.txt b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.FileListAbsolute.txt
deleted file mode 100644
index 9b59365..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,151 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessService.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\x86\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\x86\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\x64\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\x64\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessService
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\web.config
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST.staticwebassets.runtime.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\AutoMapper.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\CommunityToolkit.HighPerformance.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\EasyNetQ.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Elastic.Clients.Elasticsearch.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Elastic.Transport.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\FluentValidation.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\FluentValidation.AspNetCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\FluentValidation.DependencyInjectionExtensions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Humanizer.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Magick.NET-Q16-AnyCPU.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Magick.NET.Core.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.AspNetCore.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Bcl.AsyncInterfaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.CodeAnalysis.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.CodeAnalysis.CSharp.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.CodeAnalysis.Workspaces.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.EntityFrameworkCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.EntityFrameworkCore.Design.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Caching.Memory.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.DependencyModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Diagnostics.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Hosting.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Logging.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.Extensions.Options.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Microsoft.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Minio.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Mono.TextTemplating.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Newtonsoft.Json.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Npgsql.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\RabbitMQ.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.CodeDom.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Composition.AttributedModel.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Composition.Convention.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Composition.Hosting.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Composition.Runtime.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Composition.TypedParts.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.IO.Hashing.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\System.Reactive.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Tesseract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\cs\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\de\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\es\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\fr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\it\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ja\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ko\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pl\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pt-BR\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ru\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\tr\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hans\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hant\Microsoft.CodeAnalysis.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\de\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\es\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\it\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessService.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PaperlessService.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\bin\Release\net8.0\linux-x64\PostgreSQL.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.csproj.AssemblyReference.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.AssemblyInfoInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.AssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.csproj.CoreCompileInputs.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.sourcelink.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets.build.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets.development.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets\msbuild.build.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets\msbuild.buildMultiTargeting.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets\msbuild.buildTransitive.PaperlessREST.props
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\staticwebassets.pack.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\scopedcss\bundle\PaperlessREST.styles.css
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\Paperles.DC78CBFF.Up2Date
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\refint\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\PaperlessREST.genruntimeconfig.cache
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\obj\Release\net8.0\linux-x64\ref\PaperlessREST.dll
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.deps.json b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.deps.json
deleted file mode 100644
index 9dad370..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.deps.json
+++ /dev/null
@@ -1,1086 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0/linux-x64",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {},
- ".NETCoreApp,Version=v8.0/linux-x64": {
- "PaperlessREST/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Microsoft.AspNetCore.OpenApi": "8.0.11",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
- "Microsoft.EntityFrameworkCore.Tools": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "PaperlessService": "1.0.0",
- "PostgreSQL": "1.0.0",
- "Swashbuckle.AspNetCore": "6.6.2"
- },
- "runtime": {
- "PaperlessREST.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "assemblyVersion": "8.2.0.0",
- "fileVersion": "8.2.2.1"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.8.0.0"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.16.3.0"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.5.6.0"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.11.0.0"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.3.0.0"
- }
- }
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.5.1.0"
- }
- }
- },
- "Humanizer.Core/2.14.1": {},
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- },
- "native": {
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "assemblyVersion": "14.2.0.0",
- "fileVersion": "14.2.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/5.0.17": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0",
- "System.IO.Pipelines": "6.0.3"
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "8.0.11.0",
- "fileVersion": "8.0.1124.52116"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "4.5.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "7.0.0"
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.1024.46708"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {},
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.1024.46610"
- }
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.224.6711"
- }
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {},
- "Microsoft.OpenApi/1.6.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.14.0",
- "fileVersion": "1.6.14.0"
- }
- }
- },
- "Minio/6.0.3": {
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging": "8.0.1",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.3.0"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "dependencies": {
- "System.CodeDom": "4.4.0"
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/8.0.5": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "8.0.5.0",
- "fileVersion": "8.0.5.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "8.0.10.0",
- "fileVersion": "8.0.10.0"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.8.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.6.2.0",
- "fileVersion": "6.6.2.401"
- }
- }
- },
- "System.CodeDom/4.4.0": {},
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Composition/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- }
- },
- "System.Composition.AttributedModel/6.0.0": {},
- "System.Composition.Convention/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.Composition.Runtime/6.0.0": {},
- "System.Composition.TypedParts/6.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- }
- },
- "System.IO.Hashing/8.0.0": {
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.IO.Pipelines/6.0.3": {},
- "System.Memory/4.5.5": {},
- "System.Reactive/6.0.1": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.1.7420"
- }
- }
- },
- "System.Reflection.Emit/4.7.0": {},
- "System.Reflection.Metadata/6.0.1": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "Tesseract/4.1.1": {
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.1.1.0"
- }
- }
- },
- "Contract/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "runtime": {
- "Contract.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PaperlessService/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "4.1.1"
- },
- "runtime": {
- "PaperlessService.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "PostgreSQL/1.0.0": {
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "runtime": {
- "PostgreSQL.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "PaperlessREST/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AutoMapper/13.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "path": "automapper/13.0.1",
- "hashPath": "automapper.13.0.1.nupkg.sha512"
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "path": "communitytoolkit.highperformance/8.2.2",
- "hashPath": "communitytoolkit.highperformance.8.2.2.nupkg.sha512"
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "path": "easynetq/7.8.0",
- "hashPath": "easynetq.7.8.0.nupkg.sha512"
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "hashPath": "elastic.clients.elasticsearch.8.16.3.nupkg.sha512"
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "path": "elastic.transport/0.5.6",
- "hashPath": "elastic.transport.0.5.6.nupkg.sha512"
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "path": "fluentvalidation/11.11.0",
- "hashPath": "fluentvalidation.11.11.0.nupkg.sha512"
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "hashPath": "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512"
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "hashPath": "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "path": "magick.net-q16-anycpu/14.2.0",
- "hashPath": "magick.net-q16-anycpu.14.2.0.nupkg.sha512"
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "path": "magick.net.core/14.2.0",
- "hashPath": "magick.net.core.14.2.0.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.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "hashPath": "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "path": "microsoft.extensions.logging/8.0.1",
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "path": "microsoft.extensions.options/8.0.2",
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "path": "microsoft.extensions.primitives/8.0.0",
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "path": "microsoft.openapi/1.6.14",
- "hashPath": "microsoft.openapi.1.6.14.nupkg.sha512"
- },
- "Minio/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "path": "minio/6.0.3",
- "hashPath": "minio.6.0.3.nupkg.sha512"
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "path": "mono.texttemplating/2.2.1",
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "path": "npgsql/8.0.5",
- "hashPath": "npgsql.8.0.5.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "path": "rabbitmq.client/6.8.1",
- "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "path": "system.codedom/4.4.0",
- "hashPath": "system.codedom.4.4.0.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.Composition/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "path": "system.composition/6.0.0",
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "path": "system.composition.attributedmodel/6.0.0",
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "path": "system.composition.convention/6.0.0",
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "path": "system.composition.hosting/6.0.0",
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "path": "system.composition.runtime/6.0.0",
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "path": "system.composition.typedparts/6.0.0",
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "path": "system.io.hashing/8.0.0",
- "hashPath": "system.io.hashing.8.0.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "path": "system.io.pipelines/6.0.3",
- "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "path": "system.reactive/6.0.1",
- "hashPath": "system.reactive.6.0.1.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "path": "system.reflection.metadata/6.0.1",
- "hashPath": "system.reflection.metadata.6.0.1.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.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "Tesseract/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-abufaW6N3P7TGJPI3RNTMSzS1ycnE1w6aW/Q+Hco/wCgm+bXUgR87JsGELvTcm2FISXGlQgs+PvYMVo9SlcPfg==",
- "path": "tesseract/4.1.1",
- "hashPath": "tesseract.4.1.1.nupkg.sha512"
- },
- "Contract/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PaperlessService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.dll
deleted file mode 100644
index b6105a5..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genpublishdeps.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genpublishdeps.cache
deleted file mode 100644
index d3a0cb8..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genpublishdeps.cache
+++ /dev/null
@@ -1 +0,0 @@
-bcbcfe241e9a9122ecdfe800041e5774c167bf39f8a892bc79ef4fe03800402d
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genruntimeconfig.cache b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genruntimeconfig.cache
deleted file mode 100644
index 2276f07..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-2c2defcdebaeea9081daf234adbbcf7d8b2418948d4ea2df9fd07bd12704e25c
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.pdb b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.pdb
deleted file mode 100644
index a94207b..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.pdb and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.sourcelink.json b/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.sourcelink.json
deleted file mode 100644
index d453e13..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PaperlessREST.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\*":"https://raw.githubusercontent.com/ANcpLua/SWEN3/3cabf6dc3c8503efa14913ebc65389f8f5716d55/*"}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/PublishOutputs.4d371328c6.txt b/PaperlessREST/obj/Release/net8.0/linux-x64/PublishOutputs.4d371328c6.txt
deleted file mode 100644
index 582bfa2..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/PublishOutputs.4d371328c6.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x86\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x86\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x64\leptonica-1.80.0.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\x64\tesseract41.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\web.config
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessREST.deps.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\PaperlessService.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\out\service-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\rest-appsettings.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.runtimeconfig.json
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\AutoMapper.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\CommunityToolkit.HighPerformance.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\EasyNetQ.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Elastic.Clients.Elasticsearch.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Elastic.Transport.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.AspNetCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\FluentValidation.DependencyInjectionExtensions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Magick.NET-Q16-AnyCPU.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Magick.NET.Core.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.AspNetCore.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Caching.Memory.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Diagnostics.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Hosting.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Logging.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.Extensions.Options.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Microsoft.OpenApi.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Minio.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Newtonsoft.Json.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Npgsql.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\RabbitMQ.Client.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\System.IO.Hashing.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\System.Reactive.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Tesseract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Magick.Native-Q16-x64.dll.so
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Contract.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PostgreSQL.dll
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\Contract.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessService.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PostgreSQL.pdb
-C:\Users\anfh2\RiderProjects\SWEN3\PaperlessREST\out\PaperlessREST.deps.json
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/apphost b/PaperlessREST/obj/Release/net8.0/linux-x64/apphost
deleted file mode 100644
index e89268b..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/apphost and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/ref/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/linux-x64/ref/PaperlessREST.dll
deleted file mode 100644
index 99e711a..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/ref/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/refint/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/linux-x64/refint/PaperlessREST.dll
deleted file mode 100644
index 99e711a..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/linux-x64/refint/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.build.json b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.build.json
deleted file mode 100644
index e1b0fbf..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.build.json
+++ /dev/null
@@ -1,146 +0,0 @@
-{
- "Version": 1,
- "Hash": "6is3s4OxX0K0lvtr7zy7ZpLf3MVbzPRsjhXk+DvbGvE=",
- "Source": "PaperlessREST",
- "BasePath": "_content/PaperlessREST",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessService\\PaperlessService.csproj",
- "Version": 2,
- "Source": "PaperlessService",
- "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "PaperlessREST\\wwwroot",
- "Source": "PaperlessREST",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "css/index.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\css\\index.css"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "documents.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\documents.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\favicon.ico"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "index.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\index.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "js/main.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\js\\main.js"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "upload.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\upload.html"
- }
- ]
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.development.json b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.development.json
deleted file mode 100644
index 6521d4c..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.development.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.pack.json b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.pack.json
deleted file mode 100644
index 1d0f8a1..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.pack.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "Files": [
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "PackagePath": "staticwebassets\\css\\index.css"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "PackagePath": "staticwebassets\\documents.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "PackagePath": "staticwebassets\\favicon.ico"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "PackagePath": "staticwebassets\\index.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "PackagePath": "staticwebassets\\js\\main.js"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "PackagePath": "staticwebassets\\upload.html"
- },
- {
- "Id": "obj\\Release\\net8.0\\linux-x64\\staticwebassets\\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props",
- "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\linux-x64\\staticwebassets\\msbuild.build.PaperlessREST.props",
- "PackagePath": "build\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\linux-x64\\staticwebassets\\msbuild.buildMultiTargeting.PaperlessREST.props",
- "PackagePath": "buildMultiTargeting\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\linux-x64\\staticwebassets\\msbuild.buildTransitive.PaperlessREST.props",
- "PackagePath": "buildTransitive\\PaperlessREST.props"
- }
- ],
- "ElementsToRemove": []
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.publish.json b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.publish.json
deleted file mode 100644
index da9f03f..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets.publish.json
+++ /dev/null
@@ -1,146 +0,0 @@
-{
- "Version": 1,
- "Hash": "13nMC3OKggt2F/mhrySXAAh1dJ2jaOp5Oea1FSkg0pw=",
- "Source": "PaperlessREST",
- "BasePath": "_content/PaperlessREST",
- "Mode": "Default",
- "ManifestType": "Publish",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessService\\PaperlessService.csproj",
- "Version": 2,
- "Source": "PaperlessService",
- "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "PaperlessREST\\wwwroot",
- "Source": "PaperlessREST",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "css/index.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\css\\index.css"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "documents.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\documents.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\favicon.ico"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "index.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\index.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "js/main.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\js\\main.js"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "upload.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\upload.html"
- }
- ]
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
deleted file mode 100644
index df8a7cb..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- css/index.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\index.css))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- documents.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\documents.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- favicon.ico
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- index.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\index.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- js/main.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\main.js))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- upload.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\upload.html))
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.build.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.build.PaperlessREST.props
deleted file mode 100644
index c12810d..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.build.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
deleted file mode 100644
index 23e6794..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildTransitive.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
deleted file mode 100644
index 2e3fb65..0000000
--- a/PaperlessREST/obj/Release/net8.0/linux-x64/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/ref/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/ref/PaperlessREST.dll
deleted file mode 100644
index e9ad6a9..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/ref/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/refint/PaperlessREST.dll b/PaperlessREST/obj/Release/net8.0/refint/PaperlessREST.dll
deleted file mode 100644
index e9ad6a9..0000000
Binary files a/PaperlessREST/obj/Release/net8.0/refint/PaperlessREST.dll and /dev/null differ
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets.build.json b/PaperlessREST/obj/Release/net8.0/staticwebassets.build.json
deleted file mode 100644
index e1b0fbf..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets.build.json
+++ /dev/null
@@ -1,146 +0,0 @@
-{
- "Version": 1,
- "Hash": "6is3s4OxX0K0lvtr7zy7ZpLf3MVbzPRsjhXk+DvbGvE=",
- "Source": "PaperlessREST",
- "BasePath": "_content/PaperlessREST",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessService\\PaperlessService.csproj",
- "Version": 2,
- "Source": "PaperlessService",
- "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "PaperlessREST\\wwwroot",
- "Source": "PaperlessREST",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "css/index.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\css\\index.css"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "documents.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\documents.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\favicon.ico"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "index.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\index.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "js/main.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\js\\main.js"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "upload.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\upload.html"
- }
- ]
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets.development.json b/PaperlessREST/obj/Release/net8.0/staticwebassets.development.json
deleted file mode 100644
index 6521d4c..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets.development.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"index.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/index.css"},"Patterns":null}},"Asset":null,"Patterns":null},"documents.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"documents.html"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"js":{"Children":{"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null}},"Asset":null,"Patterns":null},"upload.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"upload.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets.pack.json b/PaperlessREST/obj/Release/net8.0/staticwebassets.pack.json
deleted file mode 100644
index b1e7008..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets.pack.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "Files": [
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "PackagePath": "staticwebassets\\css\\index.css"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "PackagePath": "staticwebassets\\documents.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "PackagePath": "staticwebassets\\favicon.ico"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "PackagePath": "staticwebassets\\index.html"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "PackagePath": "staticwebassets\\js\\main.js"
- },
- {
- "Id": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "PackagePath": "staticwebassets\\upload.html"
- },
- {
- "Id": "obj\\Release\\net8.0\\staticwebassets\\msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props",
- "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\staticwebassets\\msbuild.build.PaperlessREST.props",
- "PackagePath": "build\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\staticwebassets\\msbuild.buildMultiTargeting.PaperlessREST.props",
- "PackagePath": "buildMultiTargeting\\PaperlessREST.props"
- },
- {
- "Id": "obj\\Release\\net8.0\\staticwebassets\\msbuild.buildTransitive.PaperlessREST.props",
- "PackagePath": "buildTransitive\\PaperlessREST.props"
- }
- ],
- "ElementsToRemove": []
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets.publish.json b/PaperlessREST/obj/Release/net8.0/staticwebassets.publish.json
deleted file mode 100644
index da9f03f..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets.publish.json
+++ /dev/null
@@ -1,146 +0,0 @@
-{
- "Version": 1,
- "Hash": "13nMC3OKggt2F/mhrySXAAh1dJ2jaOp5Oea1FSkg0pw=",
- "Source": "PaperlessREST",
- "BasePath": "_content/PaperlessREST",
- "Mode": "Default",
- "ManifestType": "Publish",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessService\\PaperlessService.csproj",
- "Version": 2,
- "Source": "PaperlessService",
- "GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectBuildStaticWebAssetItems",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "PaperlessREST\\wwwroot",
- "Source": "PaperlessREST",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\css\\index.css",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "css/index.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\css\\index.css"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\documents.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "documents.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\documents.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\favicon.ico",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "favicon.ico",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\favicon.ico"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\index.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "index.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\index.html"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\js\\main.js",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "js/main.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\js\\main.js"
- },
- {
- "Identity": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\upload.html",
- "SourceId": "PaperlessREST",
- "SourceType": "Discovered",
- "ContentRoot": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\wwwroot\\",
- "BasePath": "_content/PaperlessREST",
- "RelativePath": "upload.html",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "AssetMergeBehavior": "PreferTarget",
- "AssetMergeSource": "",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "wwwroot\\upload.html"
- }
- ]
-}
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props b/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
deleted file mode 100644
index df8a7cb..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.PaperlessREST.Microsoft.AspNetCore.StaticWebAssets.props
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- css/index.css
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\index.css))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- documents.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\documents.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- favicon.ico
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- index.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\index.html))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- js/main.js
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\main.js))
-
-
- Package
- PaperlessREST
- $(MSBuildThisFileDirectory)..\staticwebassets\
- _content/PaperlessREST
- upload.html
- All
- All
- Primary
-
-
-
- Never
- PreserveNewest
- $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\upload.html))
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.build.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.build.PaperlessREST.props
deleted file mode 100644
index c12810d..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.build.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
deleted file mode 100644
index 23e6794..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props b/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
deleted file mode 100644
index 2e3fb65..0000000
--- a/PaperlessREST/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.PaperlessREST.props
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/PaperlessREST/obj/project.assets.json b/PaperlessREST/obj/project.assets.json
index 24f9a31..749477c 100644
--- a/PaperlessREST/obj/project.assets.json
+++ b/PaperlessREST/obj/project.assets.json
@@ -1,3798 +1,3348 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "AutoMapper/13.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Options": "6.0.0"
- },
- "compile": {
- "lib/net6.0/AutoMapper.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "related": ".xml"
- }
- }
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "type": "package",
- "compile": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "EasyNetQ/7.8.0": {
- "type": "package",
- "dependencies": {
- "RabbitMQ.Client": "6.8.1"
- },
- "compile": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/EasyNetQ.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/EasyNetQ.Management.Client.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/EasyNetQ.Management.Client.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "type": "package",
- "dependencies": {
- "Elastic.Transport": "0.5.6"
- },
- "compile": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
- "related": ".xml"
- }
- }
- },
- "Elastic.Transport/0.5.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Elastic.Transport.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Elastic.Transport.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "FluentValidation/11.11.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/FluentValidation.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/FluentValidation.dll": {
- "related": ".xml"
- }
- }
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "type": "package",
- "dependencies": {
- "FluentValidation": "11.5.1",
- "FluentValidation.DependencyInjectionExtensions": "11.5.1"
- },
- "compile": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/FluentValidation.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "type": "package",
- "dependencies": {
- "FluentValidation": "11.5.1",
- "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0"
- },
- "compile": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "related": ".xml"
- }
- }
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "type": "package",
- "dependencies": {
- "Magick.NET.Core": "14.2.0"
- },
- "compile": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netstandard20/Magick.NET-Q16-AnyCPU.targets": {}
- },
- "runtimeTargets": {
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
- "assetType": "native",
- "rid": "linux-arm64"
- },
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
- "assetType": "native",
- "rid": "linux-musl-x64"
- },
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
- "assetType": "native",
- "rid": "linux-x64"
- },
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
- "assetType": "native",
- "rid": "osx-arm64"
- },
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
- "assetType": "native",
- "rid": "osx-x64"
- },
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Magick.NET.Core/14.2.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Magick.NET.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "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": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.OpenApi/8.0.11": {
- "type": "package",
- "dependencies": {
- "Microsoft.OpenApi": "1.4.3"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.5.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "6.0.0"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "compile": {
- "lib/net8.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.10"
- },
- "compile": {
- "lib/net8.0/_._": {}
- },
- "runtime": {
- "lib/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "build": {
- "build/Microsoft.Extensions.ApiDescription.Server.props": {},
- "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "type": "package",
- "compile": {
- "lib/net8.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.OpenApi/1.6.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Minio/6.0.3": {
- "type": "package",
- "dependencies": {
- "CommunityToolkit.HighPerformance": "8.2.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.0",
- "System.IO.Hashing": "8.0.0",
- "System.Reactive": "6.0.1"
- },
- "compile": {
- "lib/net8.0/Minio.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Minio.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {}
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Npgsql/8.0.5": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Npgsql.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "related": ".xml"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Npgsql": "8.0.5"
- },
- "compile": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "related": ".xml"
- }
- }
- },
- "RabbitMQ.Client/6.8.1": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Channels": "7.0.0"
- },
- "compile": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/RabbitMQ.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- },
- "build": {
- "build/Swashbuckle.AspNetCore.props": {}
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "related": ".pdb;.xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.IO.Hashing/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.IO.Hashing.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Reactive/6.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Reactive.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Tesseract/5.2.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection.Emit": "4.7.0"
- },
- "compile": {
- "lib/netstandard2.0/Tesseract.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Tesseract.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/_._": {}
- }
- },
- "Contract/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "5.0.17"
- },
- "compile": {
- "bin/placeholder/Contract.dll": {}
- },
- "runtime": {
- "bin/placeholder/Contract.dll": {}
- }
- },
- "PaperlessServices/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Contract": "1.0.0",
- "EasyNetQ": "7.8.0",
- "EasyNetQ.Management.Client": "3.0.0",
- "Elastic.Clients.Elasticsearch": "8.16.3",
- "FluentValidation": "11.11.0",
- "FluentValidation.AspNetCore": "11.3.0",
- "Magick.NET-Q16-AnyCPU": "14.2.0",
- "Magick.NET.Core": "14.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
- "Minio": "6.0.3",
- "PostgreSQL": "1.0.0",
- "Tesseract": "5.2.0"
- },
- "compile": {
- "bin/placeholder/PaperlessServices.dll": {}
- },
- "runtime": {
- "bin/placeholder/PaperlessServices.dll": {}
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "FluentValidation": "11.11.0",
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Newtonsoft.Json": "13.0.3",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
- },
- "compile": {
- "bin/placeholder/PostgreSQL.dll": {}
- },
- "runtime": {
- "bin/placeholder/PostgreSQL.dll": {}
- }
- }
- }
- },
- "libraries": {
- "AutoMapper/13.0.1": {
- "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
- "type": "package",
- "path": "automapper/13.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "automapper.13.0.1.nupkg.sha512",
- "automapper.nuspec",
- "icon.png",
- "lib/net6.0/AutoMapper.dll",
- "lib/net6.0/AutoMapper.xml"
- ]
- },
- "CommunityToolkit.HighPerformance/8.2.2": {
- "sha512": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
- "type": "package",
- "path": "communitytoolkit.highperformance/8.2.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "License.md",
- "ThirdPartyNotices.txt",
- "communitytoolkit.highperformance.8.2.2.nupkg.sha512",
- "communitytoolkit.highperformance.nuspec",
- "lib/net6.0/CommunityToolkit.HighPerformance.dll",
- "lib/net6.0/CommunityToolkit.HighPerformance.pdb",
- "lib/net6.0/CommunityToolkit.HighPerformance.xml",
- "lib/net7.0/CommunityToolkit.HighPerformance.dll",
- "lib/net7.0/CommunityToolkit.HighPerformance.pdb",
- "lib/net7.0/CommunityToolkit.HighPerformance.xml",
- "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll",
- "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb",
- "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml",
- "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll",
- "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb",
- "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml"
- ]
- },
- "EasyNetQ/7.8.0": {
- "sha512": "Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
- "type": "package",
- "path": "easynetq/7.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EasyNetQ.png",
- "easynetq.7.8.0.nupkg.sha512",
- "easynetq.nuspec",
- "lib/netstandard2.0/EasyNetQ.dll",
- "lib/netstandard2.0/EasyNetQ.pdb",
- "lib/netstandard2.0/EasyNetQ.xml",
- "licence.txt"
- ]
- },
- "EasyNetQ.Management.Client/3.0.0": {
- "sha512": "FXWQN32X/eCmdWl4nJoDbeweJH8rrXMGbWx7cUnKoyaU1PG2h9a5nynqok8xgxHN/M9SIMdzY7uUcLsIlz7FJQ==",
- "type": "package",
- "path": "easynetq.management.client/3.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EasyNetQ.png",
- "easynetq.management.client.3.0.0.nupkg.sha512",
- "easynetq.management.client.nuspec",
- "lib/net6.0/EasyNetQ.Management.Client.dll",
- "lib/net6.0/EasyNetQ.Management.Client.pdb",
- "lib/net6.0/EasyNetQ.Management.Client.xml",
- "lib/netstandard2.0/EasyNetQ.Management.Client.dll",
- "lib/netstandard2.0/EasyNetQ.Management.Client.pdb",
- "lib/netstandard2.0/EasyNetQ.Management.Client.xml",
- "license.txt"
- ]
- },
- "Elastic.Clients.Elasticsearch/8.16.3": {
- "sha512": "p1Ld3i3kosTxYsvnUIu5evq0zbGX2Uty8W7figuDpejvD9ebxKmRgsId4dZdPjHQ2L/z0t8+rTnBlZ3BsqLCmg==",
- "type": "package",
- "path": "elastic.clients.elasticsearch/8.16.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "README.md",
- "elastic.clients.elasticsearch.8.16.3.nupkg.sha512",
- "elastic.clients.elasticsearch.nuspec",
- "lib/net462/Elastic.Clients.Elasticsearch.dll",
- "lib/net462/Elastic.Clients.Elasticsearch.xml",
- "lib/net8.0/Elastic.Clients.Elasticsearch.dll",
- "lib/net8.0/Elastic.Clients.Elasticsearch.xml",
- "lib/netstandard2.0/Elastic.Clients.Elasticsearch.dll",
- "lib/netstandard2.0/Elastic.Clients.Elasticsearch.xml",
- "lib/netstandard2.1/Elastic.Clients.Elasticsearch.dll",
- "lib/netstandard2.1/Elastic.Clients.Elasticsearch.xml",
- "nuget-icon.png"
- ]
- },
- "Elastic.Transport/0.5.6": {
- "sha512": "4WGaVuBDvdLYgrXNchxXS0dLh92Vb5bH7dgVl0w6cHudXFKh67JZFY2se2LZ3SpUPsQWuv2UKQQRbJB/qbRJBQ==",
- "type": "package",
- "path": "elastic.transport/0.5.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "elastic.transport.0.5.6.nupkg.sha512",
- "elastic.transport.nuspec",
- "lib/net462/Elastic.Transport.dll",
- "lib/net462/Elastic.Transport.pdb",
- "lib/net462/Elastic.Transport.xml",
- "lib/net8.0/Elastic.Transport.dll",
- "lib/net8.0/Elastic.Transport.pdb",
- "lib/net8.0/Elastic.Transport.xml",
- "lib/netstandard2.0/Elastic.Transport.dll",
- "lib/netstandard2.0/Elastic.Transport.pdb",
- "lib/netstandard2.0/Elastic.Transport.xml",
- "lib/netstandard2.1/Elastic.Transport.dll",
- "lib/netstandard2.1/Elastic.Transport.pdb",
- "lib/netstandard2.1/Elastic.Transport.xml",
- "license.txt",
- "nuget-icon.png"
- ]
- },
- "FluentValidation/11.11.0": {
- "sha512": "cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
- "type": "package",
- "path": "fluentvalidation/11.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "fluent-validation-icon.png",
- "fluentvalidation.11.11.0.nupkg.sha512",
- "fluentvalidation.nuspec",
- "lib/net5.0/FluentValidation.dll",
- "lib/net5.0/FluentValidation.xml",
- "lib/net6.0/FluentValidation.dll",
- "lib/net6.0/FluentValidation.xml",
- "lib/net7.0/FluentValidation.dll",
- "lib/net7.0/FluentValidation.xml",
- "lib/net8.0/FluentValidation.dll",
- "lib/net8.0/FluentValidation.xml",
- "lib/netstandard2.0/FluentValidation.dll",
- "lib/netstandard2.0/FluentValidation.xml",
- "lib/netstandard2.1/FluentValidation.dll",
- "lib/netstandard2.1/FluentValidation.xml"
- ]
- },
- "FluentValidation.AspNetCore/11.3.0": {
- "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
- "type": "package",
- "path": "fluentvalidation.aspnetcore/11.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "fluent-validation-icon.png",
- "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512",
- "fluentvalidation.aspnetcore.nuspec",
- "lib/net5.0/FluentValidation.AspNetCore.dll",
- "lib/net5.0/FluentValidation.AspNetCore.xml",
- "lib/net6.0/FluentValidation.AspNetCore.dll",
- "lib/net6.0/FluentValidation.AspNetCore.xml",
- "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll",
- "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml"
- ]
- },
- "FluentValidation.DependencyInjectionExtensions/11.5.1": {
- "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==",
- "type": "package",
- "path": "fluentvalidation.dependencyinjectionextensions/11.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "fluent-validation-icon.png",
- "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512",
- "fluentvalidation.dependencyinjectionextensions.nuspec",
- "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll",
- "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml",
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll",
- "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml"
- ]
- },
- "Humanizer.Core/2.14.1": {
- "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "type": "package",
- "path": "humanizer.core/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.2.14.1.nupkg.sha512",
- "humanizer.core.nuspec",
- "lib/net6.0/Humanizer.dll",
- "lib/net6.0/Humanizer.xml",
- "lib/netstandard1.0/Humanizer.dll",
- "lib/netstandard1.0/Humanizer.xml",
- "lib/netstandard2.0/Humanizer.dll",
- "lib/netstandard2.0/Humanizer.xml",
- "logo.png"
- ]
- },
- "Magick.NET-Q16-AnyCPU/14.2.0": {
- "sha512": "dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
- "type": "package",
- "path": "magick.net-q16-anycpu/14.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Magick.NET.icon.png",
- "Notice.linux-musl.txt",
- "Notice.linux.txt",
- "Notice.osx.txt",
- "Notice.win.txt",
- "build/netstandard20/Magick.NET-Q16-AnyCPU.targets",
- "buildTransitive/netstandard20/Magick.NET-Q16-AnyCPU.targets",
- "docs/Readme.md",
- "lib/net8.0/Magick.NET-Q16-AnyCPU.dll",
- "lib/net8.0/Magick.NET-Q16-AnyCPU.xml",
- "lib/netstandard20/Magick.NET-Q16-AnyCPU.dll",
- "lib/netstandard20/Magick.NET-Q16-AnyCPU.xml",
- "magick.net-q16-anycpu.14.2.0.nupkg.sha512",
- "magick.net-q16-anycpu.nuspec",
- "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so",
- "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so",
- "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so",
- "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib",
- "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib",
- "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll",
- "runtimes/win-x64/native/Magick.Native-Q16-x64.dll",
- "runtimes/win-x86/native/Magick.Native-Q16-x86.dll"
- ]
- },
- "Magick.NET.Core/14.2.0": {
- "sha512": "1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
- "type": "package",
- "path": "magick.net.core/14.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Copyright.txt",
- "Magick.NET.icon.png",
- "docs/Readme.md",
- "lib/net8.0/Magick.NET.Core.dll",
- "lib/net8.0/Magick.NET.Core.xml",
- "lib/netstandard20/Magick.NET.Core.dll",
- "lib/netstandard20/Magick.NET.Core.xml",
- "magick.net.core.14.2.0.nupkg.sha512",
- "magick.net.core.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.AspNetCore.OpenApi/8.0.11": {
- "sha512": "1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
- "type": "package",
- "path": "microsoft.aspnetcore.openapi/8.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
- "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512",
- "microsoft.aspnetcore.openapi.nuspec"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
- "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
- "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "build/Microsoft.CodeAnalysis.Analyzers.props",
- "build/Microsoft.CodeAnalysis.Analyzers.targets",
- "build/config/analysislevel_2_9_8_all.editorconfig",
- "build/config/analysislevel_2_9_8_default.editorconfig",
- "build/config/analysislevel_2_9_8_minimum.editorconfig",
- "build/config/analysislevel_2_9_8_none.editorconfig",
- "build/config/analysislevel_2_9_8_recommended.editorconfig",
- "build/config/analysislevel_3_3_all.editorconfig",
- "build/config/analysislevel_3_3_default.editorconfig",
- "build/config/analysislevel_3_3_minimum.editorconfig",
- "build/config/analysislevel_3_3_none.editorconfig",
- "build/config/analysislevel_3_3_recommended.editorconfig",
- "build/config/analysislevel_3_all.editorconfig",
- "build/config/analysislevel_3_default.editorconfig",
- "build/config/analysislevel_3_minimum.editorconfig",
- "build/config/analysislevel_3_none.editorconfig",
- "build/config/analysislevel_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_recommended.editorconfig",
- "build/config/analysislevellibrary_2_9_8_all.editorconfig",
- "build/config/analysislevellibrary_2_9_8_default.editorconfig",
- "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
- "build/config/analysislevellibrary_2_9_8_none.editorconfig",
- "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
- "build/config/analysislevellibrary_3_3_all.editorconfig",
- "build/config/analysislevellibrary_3_3_default.editorconfig",
- "build/config/analysislevellibrary_3_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_3_none.editorconfig",
- "build/config/analysislevellibrary_3_3_recommended.editorconfig",
- "build/config/analysislevellibrary_3_all.editorconfig",
- "build/config/analysislevellibrary_3_default.editorconfig",
- "build/config/analysislevellibrary_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_none.editorconfig",
- "build/config/analysislevellibrary_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
- "documentation/Analyzer Configuration.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
- "editorconfig/AllRulesDefault/.editorconfig",
- "editorconfig/AllRulesDisabled/.editorconfig",
- "editorconfig/AllRulesEnabled/.editorconfig",
- "editorconfig/CorrectnessRulesDefault/.editorconfig",
- "editorconfig/CorrectnessRulesEnabled/.editorconfig",
- "editorconfig/DataflowRulesDefault/.editorconfig",
- "editorconfig/DataflowRulesEnabled/.editorconfig",
- "editorconfig/LibraryRulesDefault/.editorconfig",
- "editorconfig/LibraryRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
- "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
- "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "rulesets/AllRulesDefault.ruleset",
- "rulesets/AllRulesDisabled.ruleset",
- "rulesets/AllRulesEnabled.ruleset",
- "rulesets/CorrectnessRulesDefault.ruleset",
- "rulesets/CorrectnessRulesEnabled.ruleset",
- "rulesets/DataflowRulesDefault.ruleset",
- "rulesets/DataflowRulesEnabled.ruleset",
- "rulesets/LibraryRulesDefault.ruleset",
- "rulesets/LibraryRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
- "rulesets/PortedFromFxCopRulesDefault.ruleset",
- "rulesets/PortedFromFxCopRulesEnabled.ruleset",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.workspaces.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.common.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore/8.0.10": {
- "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "docs/PACKAGE.md",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "sha512": "uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.design.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
- "sha512": "aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.tools/8.0.10",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "docs/PACKAGE.md",
- "lib/net8.0/_._",
- "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.tools.nuspec",
- "tools/EntityFrameworkCore.PS2.psd1",
- "tools/EntityFrameworkCore.PS2.psm1",
- "tools/EntityFrameworkCore.psd1",
- "tools/EntityFrameworkCore.psm1",
- "tools/about_EntityFrameworkCore.help.txt",
- "tools/init.ps1",
- "tools/net461/any/ef.exe",
- "tools/net461/win-arm64/ef.exe",
- "tools/net461/win-x86/ef.exe",
- "tools/netcoreapp2.0/any/ef.dll",
- "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
- ]
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "type": "package",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "build/Microsoft.Extensions.ApiDescription.Server.props",
- "build/Microsoft.Extensions.ApiDescription.Server.targets",
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
- "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
- "microsoft.extensions.apidescription.server.nuspec",
- "tools/Newtonsoft.Json.dll",
- "tools/dotnet-getdocument.deps.json",
- "tools/dotnet-getdocument.dll",
- "tools/dotnet-getdocument.runtimeconfig.json",
- "tools/net461-x86/GetDocument.Insider.exe",
- "tools/net461-x86/GetDocument.Insider.exe.config",
- "tools/net461-x86/Microsoft.Win32.Primitives.dll",
- "tools/net461-x86/System.AppContext.dll",
- "tools/net461-x86/System.Buffers.dll",
- "tools/net461-x86/System.Collections.Concurrent.dll",
- "tools/net461-x86/System.Collections.NonGeneric.dll",
- "tools/net461-x86/System.Collections.Specialized.dll",
- "tools/net461-x86/System.Collections.dll",
- "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461-x86/System.ComponentModel.Primitives.dll",
- "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
- "tools/net461-x86/System.ComponentModel.dll",
- "tools/net461-x86/System.Console.dll",
- "tools/net461-x86/System.Data.Common.dll",
- "tools/net461-x86/System.Diagnostics.Contracts.dll",
- "tools/net461-x86/System.Diagnostics.Debug.dll",
- "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461-x86/System.Diagnostics.Process.dll",
- "tools/net461-x86/System.Diagnostics.StackTrace.dll",
- "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461-x86/System.Diagnostics.Tools.dll",
- "tools/net461-x86/System.Diagnostics.TraceSource.dll",
- "tools/net461-x86/System.Diagnostics.Tracing.dll",
- "tools/net461-x86/System.Drawing.Primitives.dll",
- "tools/net461-x86/System.Dynamic.Runtime.dll",
- "tools/net461-x86/System.Globalization.Calendars.dll",
- "tools/net461-x86/System.Globalization.Extensions.dll",
- "tools/net461-x86/System.Globalization.dll",
- "tools/net461-x86/System.IO.Compression.ZipFile.dll",
- "tools/net461-x86/System.IO.Compression.dll",
- "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
- "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
- "tools/net461-x86/System.IO.FileSystem.dll",
- "tools/net461-x86/System.IO.IsolatedStorage.dll",
- "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
- "tools/net461-x86/System.IO.Pipes.dll",
- "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461-x86/System.IO.dll",
- "tools/net461-x86/System.Linq.Expressions.dll",
- "tools/net461-x86/System.Linq.Parallel.dll",
- "tools/net461-x86/System.Linq.Queryable.dll",
- "tools/net461-x86/System.Linq.dll",
- "tools/net461-x86/System.Memory.dll",
- "tools/net461-x86/System.Net.Http.dll",
- "tools/net461-x86/System.Net.NameResolution.dll",
- "tools/net461-x86/System.Net.NetworkInformation.dll",
- "tools/net461-x86/System.Net.Ping.dll",
- "tools/net461-x86/System.Net.Primitives.dll",
- "tools/net461-x86/System.Net.Requests.dll",
- "tools/net461-x86/System.Net.Security.dll",
- "tools/net461-x86/System.Net.Sockets.dll",
- "tools/net461-x86/System.Net.WebHeaderCollection.dll",
- "tools/net461-x86/System.Net.WebSockets.Client.dll",
- "tools/net461-x86/System.Net.WebSockets.dll",
- "tools/net461-x86/System.Numerics.Vectors.dll",
- "tools/net461-x86/System.ObjectModel.dll",
- "tools/net461-x86/System.Reflection.Extensions.dll",
- "tools/net461-x86/System.Reflection.Primitives.dll",
- "tools/net461-x86/System.Reflection.dll",
- "tools/net461-x86/System.Resources.Reader.dll",
- "tools/net461-x86/System.Resources.ResourceManager.dll",
- "tools/net461-x86/System.Resources.Writer.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461-x86/System.Runtime.Extensions.dll",
- "tools/net461-x86/System.Runtime.Handles.dll",
- "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461-x86/System.Runtime.InteropServices.dll",
- "tools/net461-x86/System.Runtime.Numerics.dll",
- "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
- "tools/net461-x86/System.Runtime.Serialization.Json.dll",
- "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
- "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
- "tools/net461-x86/System.Runtime.dll",
- "tools/net461-x86/System.Security.Claims.dll",
- "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
- "tools/net461-x86/System.Security.Cryptography.Csp.dll",
- "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
- "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
- "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461-x86/System.Security.Principal.dll",
- "tools/net461-x86/System.Security.SecureString.dll",
- "tools/net461-x86/System.Text.Encoding.Extensions.dll",
- "tools/net461-x86/System.Text.Encoding.dll",
- "tools/net461-x86/System.Text.RegularExpressions.dll",
- "tools/net461-x86/System.Threading.Overlapped.dll",
- "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
- "tools/net461-x86/System.Threading.Tasks.dll",
- "tools/net461-x86/System.Threading.Thread.dll",
- "tools/net461-x86/System.Threading.ThreadPool.dll",
- "tools/net461-x86/System.Threading.Timer.dll",
- "tools/net461-x86/System.Threading.dll",
- "tools/net461-x86/System.ValueTuple.dll",
- "tools/net461-x86/System.Xml.ReaderWriter.dll",
- "tools/net461-x86/System.Xml.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.dll",
- "tools/net461-x86/System.Xml.XmlDocument.dll",
- "tools/net461-x86/System.Xml.XmlSerializer.dll",
- "tools/net461-x86/netstandard.dll",
- "tools/net461/GetDocument.Insider.exe",
- "tools/net461/GetDocument.Insider.exe.config",
- "tools/net461/Microsoft.Win32.Primitives.dll",
- "tools/net461/System.AppContext.dll",
- "tools/net461/System.Buffers.dll",
- "tools/net461/System.Collections.Concurrent.dll",
- "tools/net461/System.Collections.NonGeneric.dll",
- "tools/net461/System.Collections.Specialized.dll",
- "tools/net461/System.Collections.dll",
- "tools/net461/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461/System.ComponentModel.Primitives.dll",
- "tools/net461/System.ComponentModel.TypeConverter.dll",
- "tools/net461/System.ComponentModel.dll",
- "tools/net461/System.Console.dll",
- "tools/net461/System.Data.Common.dll",
- "tools/net461/System.Diagnostics.Contracts.dll",
- "tools/net461/System.Diagnostics.Debug.dll",
- "tools/net461/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461/System.Diagnostics.Process.dll",
- "tools/net461/System.Diagnostics.StackTrace.dll",
- "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461/System.Diagnostics.Tools.dll",
- "tools/net461/System.Diagnostics.TraceSource.dll",
- "tools/net461/System.Diagnostics.Tracing.dll",
- "tools/net461/System.Drawing.Primitives.dll",
- "tools/net461/System.Dynamic.Runtime.dll",
- "tools/net461/System.Globalization.Calendars.dll",
- "tools/net461/System.Globalization.Extensions.dll",
- "tools/net461/System.Globalization.dll",
- "tools/net461/System.IO.Compression.ZipFile.dll",
- "tools/net461/System.IO.Compression.dll",
- "tools/net461/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461/System.IO.FileSystem.Primitives.dll",
- "tools/net461/System.IO.FileSystem.Watcher.dll",
- "tools/net461/System.IO.FileSystem.dll",
- "tools/net461/System.IO.IsolatedStorage.dll",
- "tools/net461/System.IO.MemoryMappedFiles.dll",
- "tools/net461/System.IO.Pipes.dll",
- "tools/net461/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461/System.IO.dll",
- "tools/net461/System.Linq.Expressions.dll",
- "tools/net461/System.Linq.Parallel.dll",
- "tools/net461/System.Linq.Queryable.dll",
- "tools/net461/System.Linq.dll",
- "tools/net461/System.Memory.dll",
- "tools/net461/System.Net.Http.dll",
- "tools/net461/System.Net.NameResolution.dll",
- "tools/net461/System.Net.NetworkInformation.dll",
- "tools/net461/System.Net.Ping.dll",
- "tools/net461/System.Net.Primitives.dll",
- "tools/net461/System.Net.Requests.dll",
- "tools/net461/System.Net.Security.dll",
- "tools/net461/System.Net.Sockets.dll",
- "tools/net461/System.Net.WebHeaderCollection.dll",
- "tools/net461/System.Net.WebSockets.Client.dll",
- "tools/net461/System.Net.WebSockets.dll",
- "tools/net461/System.Numerics.Vectors.dll",
- "tools/net461/System.ObjectModel.dll",
- "tools/net461/System.Reflection.Extensions.dll",
- "tools/net461/System.Reflection.Primitives.dll",
- "tools/net461/System.Reflection.dll",
- "tools/net461/System.Resources.Reader.dll",
- "tools/net461/System.Resources.ResourceManager.dll",
- "tools/net461/System.Resources.Writer.dll",
- "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461/System.Runtime.Extensions.dll",
- "tools/net461/System.Runtime.Handles.dll",
- "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461/System.Runtime.InteropServices.dll",
- "tools/net461/System.Runtime.Numerics.dll",
- "tools/net461/System.Runtime.Serialization.Formatters.dll",
- "tools/net461/System.Runtime.Serialization.Json.dll",
- "tools/net461/System.Runtime.Serialization.Primitives.dll",
- "tools/net461/System.Runtime.Serialization.Xml.dll",
- "tools/net461/System.Runtime.dll",
- "tools/net461/System.Security.Claims.dll",
- "tools/net461/System.Security.Cryptography.Algorithms.dll",
- "tools/net461/System.Security.Cryptography.Csp.dll",
- "tools/net461/System.Security.Cryptography.Encoding.dll",
- "tools/net461/System.Security.Cryptography.Primitives.dll",
- "tools/net461/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461/System.Security.Principal.dll",
- "tools/net461/System.Security.SecureString.dll",
- "tools/net461/System.Text.Encoding.Extensions.dll",
- "tools/net461/System.Text.Encoding.dll",
- "tools/net461/System.Text.RegularExpressions.dll",
- "tools/net461/System.Threading.Overlapped.dll",
- "tools/net461/System.Threading.Tasks.Parallel.dll",
- "tools/net461/System.Threading.Tasks.dll",
- "tools/net461/System.Threading.Thread.dll",
- "tools/net461/System.Threading.ThreadPool.dll",
- "tools/net461/System.Threading.Timer.dll",
- "tools/net461/System.Threading.dll",
- "tools/net461/System.ValueTuple.dll",
- "tools/net461/System.Xml.ReaderWriter.dll",
- "tools/net461/System.Xml.XDocument.dll",
- "tools/net461/System.Xml.XPath.XDocument.dll",
- "tools/net461/System.Xml.XPath.dll",
- "tools/net461/System.Xml.XmlDocument.dll",
- "tools/net461/System.Xml.XmlSerializer.dll",
- "tools/net461/netstandard.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
- "tools/netcoreapp2.1/GetDocument.Insider.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
- "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
- ]
- },
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
- "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net8.0/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.8.0.0.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
- "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
- "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net8.0/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.8.0.1.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
- "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net8.0/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.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net8.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.8.0.1.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net8.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.8.0.2.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyModel/8.0.2": {
- "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
- "type": "package",
- "path": "microsoft.extensions.dependencymodel/8.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
- "lib/net462/Microsoft.Extensions.DependencyModel.dll",
- "lib/net462/Microsoft.Extensions.DependencyModel.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
- "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
- "microsoft.extensions.dependencymodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
- "sha512": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
- "type": "package",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512",
- "microsoft.extensions.diagnostics.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
- "sha512": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
- "type": "package",
- "path": "microsoft.extensions.hosting.abstractions/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
- "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512",
- "microsoft.extensions.hosting.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "type": "package",
- "path": "microsoft.extensions.logging/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
- "lib/net462/Microsoft.Extensions.Logging.dll",
- "lib/net462/Microsoft.Extensions.Logging.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.dll",
- "lib/net8.0/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.8.0.1.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
- "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "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",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net8.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.8.0.2.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Options/8.0.2": {
- "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
- "type": "package",
- "path": "microsoft.extensions.options/8.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Options.targets",
- "buildTransitive/net462/Microsoft.Extensions.Options.targets",
- "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
- "lib/net462/Microsoft.Extensions.Options.dll",
- "lib/net462/Microsoft.Extensions.Options.xml",
- "lib/net6.0/Microsoft.Extensions.Options.dll",
- "lib/net6.0/Microsoft.Extensions.Options.xml",
- "lib/net7.0/Microsoft.Extensions.Options.dll",
- "lib/net7.0/Microsoft.Extensions.Options.xml",
- "lib/net8.0/Microsoft.Extensions.Options.dll",
- "lib/net8.0/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.8.0.2.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/8.0.0": {
- "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
- "type": "package",
- "path": "microsoft.extensions.primitives/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
- "lib/net462/Microsoft.Extensions.Primitives.dll",
- "lib/net462/Microsoft.Extensions.Primitives.xml",
- "lib/net6.0/Microsoft.Extensions.Primitives.dll",
- "lib/net6.0/Microsoft.Extensions.Primitives.xml",
- "lib/net7.0/Microsoft.Extensions.Primitives.dll",
- "lib/net7.0/Microsoft.Extensions.Primitives.xml",
- "lib/net8.0/Microsoft.Extensions.Primitives.dll",
- "lib/net8.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.OpenApi/1.6.14": {
- "sha512": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "type": "package",
- "path": "microsoft.openapi/1.6.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/netstandard2.0/Microsoft.OpenApi.dll",
- "lib/netstandard2.0/Microsoft.OpenApi.pdb",
- "lib/netstandard2.0/Microsoft.OpenApi.xml",
- "microsoft.openapi.1.6.14.nupkg.sha512",
- "microsoft.openapi.nuspec"
- ]
- },
- "Minio/6.0.3": {
- "sha512": "WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
- "type": "package",
- "path": "minio/6.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE",
- "icon.png",
- "lib/net6.0/Minio.dll",
- "lib/net6.0/Minio.pdb",
- "lib/net6.0/Minio.xml",
- "lib/net8.0/Minio.dll",
- "lib/net8.0/Minio.pdb",
- "lib/net8.0/Minio.xml",
- "lib/netstandard2.0/Minio.dll",
- "lib/netstandard2.0/Minio.pdb",
- "lib/netstandard2.0/Minio.xml",
- "minio.6.0.3.nupkg.sha512",
- "minio.nuspec",
- "readme.md"
- ]
- },
- "Mono.TextTemplating/2.2.1": {
- "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "type": "package",
- "path": "mono.texttemplating/2.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net472/Mono.TextTemplating.dll",
- "lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.2.2.1.nupkg.sha512",
- "mono.texttemplating.nuspec"
- ]
- },
- "Newtonsoft.Json/13.0.3": {
- "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "type": "package",
- "path": "newtonsoft.json/13.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "README.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/net6.0/Newtonsoft.Json.dll",
- "lib/net6.0/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.3.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "Npgsql/8.0.5": {
- "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
- "type": "package",
- "path": "npgsql/8.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net6.0/Npgsql.dll",
- "lib/net6.0/Npgsql.xml",
- "lib/net7.0/Npgsql.dll",
- "lib/net7.0/Npgsql.xml",
- "lib/net8.0/Npgsql.dll",
- "lib/net8.0/Npgsql.xml",
- "lib/netstandard2.0/Npgsql.dll",
- "lib/netstandard2.0/Npgsql.xml",
- "lib/netstandard2.1/Npgsql.dll",
- "lib/netstandard2.1/Npgsql.xml",
- "npgsql.8.0.5.nupkg.sha512",
- "npgsql.nuspec",
- "postgresql.png"
- ]
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
- "sha512": "gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
- "type": "package",
- "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
- "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
- "npgsql.entityframeworkcore.postgresql.nuspec",
- "postgresql.png"
- ]
- },
- "RabbitMQ.Client/6.8.1": {
- "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
- "type": "package",
- "path": "rabbitmq.client/6.8.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/RabbitMQ.Client.dll",
- "lib/net462/RabbitMQ.Client.xml",
- "lib/netstandard2.0/RabbitMQ.Client.dll",
- "lib/netstandard2.0/RabbitMQ.Client.xml",
- "rabbitmq.client.6.8.1.nupkg.sha512",
- "rabbitmq.client.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "sha512": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "type": "package",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/Swashbuckle.AspNetCore.props",
- "swashbuckle.aspnetcore.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "sha512": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swagger.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "sha512": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swaggergen.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "sha512": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swaggerui.nuspec"
- ]
- },
- "System.CodeDom/4.4.0": {
- "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "type": "package",
- "path": "system.codedom/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.dll",
- "ref/net461/System.CodeDom.dll",
- "ref/net461/System.CodeDom.xml",
- "ref/netstandard2.0/System.CodeDom.dll",
- "ref/netstandard2.0/System.CodeDom.xml",
- "system.codedom.4.4.0.nupkg.sha512",
- "system.codedom.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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.Composition/6.0.0": {
- "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "type": "package",
- "path": "system.composition/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "system.composition.6.0.0.nupkg.sha512",
- "system.composition.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.AttributedModel/6.0.0": {
- "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "type": "package",
- "path": "system.composition.attributedmodel/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.AttributedModel.dll",
- "lib/net461/System.Composition.AttributedModel.xml",
- "lib/net6.0/System.Composition.AttributedModel.dll",
- "lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/netstandard2.0/System.Composition.AttributedModel.dll",
- "lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "system.composition.attributedmodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Convention/6.0.0": {
- "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "type": "package",
- "path": "system.composition.convention/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Convention.dll",
- "lib/net461/System.Composition.Convention.xml",
- "lib/net6.0/System.Composition.Convention.dll",
- "lib/net6.0/System.Composition.Convention.xml",
- "lib/netstandard2.0/System.Composition.Convention.dll",
- "lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.6.0.0.nupkg.sha512",
- "system.composition.convention.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Hosting/6.0.0": {
- "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "type": "package",
- "path": "system.composition.hosting/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Hosting.dll",
- "lib/net461/System.Composition.Hosting.xml",
- "lib/net6.0/System.Composition.Hosting.dll",
- "lib/net6.0/System.Composition.Hosting.xml",
- "lib/netstandard2.0/System.Composition.Hosting.dll",
- "lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.6.0.0.nupkg.sha512",
- "system.composition.hosting.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Runtime/6.0.0": {
- "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "type": "package",
- "path": "system.composition.runtime/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Runtime.dll",
- "lib/net461/System.Composition.Runtime.xml",
- "lib/net6.0/System.Composition.Runtime.dll",
- "lib/net6.0/System.Composition.Runtime.xml",
- "lib/netstandard2.0/System.Composition.Runtime.dll",
- "lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.6.0.0.nupkg.sha512",
- "system.composition.runtime.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.TypedParts/6.0.0": {
- "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "type": "package",
- "path": "system.composition.typedparts/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.TypedParts.dll",
- "lib/net461/System.Composition.TypedParts.xml",
- "lib/net6.0/System.Composition.TypedParts.dll",
- "lib/net6.0/System.Composition.TypedParts.xml",
- "lib/netstandard2.0/System.Composition.TypedParts.dll",
- "lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.6.0.0.nupkg.sha512",
- "system.composition.typedparts.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.IO.Hashing/8.0.0": {
- "sha512": "ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
- "type": "package",
- "path": "system.io.hashing/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.IO.Hashing.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets",
- "lib/net462/System.IO.Hashing.dll",
- "lib/net462/System.IO.Hashing.xml",
- "lib/net6.0/System.IO.Hashing.dll",
- "lib/net6.0/System.IO.Hashing.xml",
- "lib/net7.0/System.IO.Hashing.dll",
- "lib/net7.0/System.IO.Hashing.xml",
- "lib/net8.0/System.IO.Hashing.dll",
- "lib/net8.0/System.IO.Hashing.xml",
- "lib/netstandard2.0/System.IO.Hashing.dll",
- "lib/netstandard2.0/System.IO.Hashing.xml",
- "system.io.hashing.8.0.0.nupkg.sha512",
- "system.io.hashing.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.IO.Pipelines/6.0.3": {
- "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "type": "package",
- "path": "system.io.pipelines/6.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.3.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Memory/4.5.5": {
- "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "type": "package",
- "path": "system.memory/4.5.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.5.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reactive/6.0.1": {
- "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
- "type": "package",
- "path": "system.reactive/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/net6.0-windows10.0.19041/_._",
- "build/net6.0/_._",
- "buildTransitive/net6.0-windows10.0.19041/_._",
- "buildTransitive/net6.0/_._",
- "icon.png",
- "lib/net472/System.Reactive.dll",
- "lib/net472/System.Reactive.xml",
- "lib/net6.0-windows10.0.19041/System.Reactive.dll",
- "lib/net6.0-windows10.0.19041/System.Reactive.xml",
- "lib/net6.0/System.Reactive.dll",
- "lib/net6.0/System.Reactive.xml",
- "lib/netstandard2.0/System.Reactive.dll",
- "lib/netstandard2.0/System.Reactive.xml",
- "lib/uap10.0.18362/System.Reactive.dll",
- "lib/uap10.0.18362/System.Reactive.pri",
- "lib/uap10.0.18362/System.Reactive.xml",
- "readme.md",
- "system.reactive.6.0.1.nupkg.sha512",
- "system.reactive.nuspec"
- ]
- },
- "System.Reflection.Emit/4.7.0": {
- "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "type": "package",
- "path": "system.reflection.emit/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Reflection.Emit.dll",
- "lib/netstandard1.1/System.Reflection.Emit.xml",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/netstandard2.0/System.Reflection.Emit.dll",
- "lib/netstandard2.0/System.Reflection.Emit.xml",
- "lib/netstandard2.1/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcoreapp2.0/_._",
- "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/netstandard2.0/System.Reflection.Emit.dll",
- "ref/netstandard2.0/System.Reflection.Emit.xml",
- "ref/netstandard2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
- "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
- "system.reflection.emit.4.7.0.nupkg.sha512",
- "system.reflection.emit.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reflection.Metadata/6.0.1": {
- "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "type": "package",
- "path": "system.reflection.metadata/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/net6.0/System.Reflection.Metadata.dll",
- "lib/net6.0/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.6.0.1.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Text.Encoding.CodePages/6.0.0": {
- "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "type": "package",
- "path": "system.text.encoding.codepages/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Channels/7.0.0": {
- "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "type": "package",
- "path": "system.threading.channels/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Threading.Channels.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
- "lib/net462/System.Threading.Channels.dll",
- "lib/net462/System.Threading.Channels.xml",
- "lib/net6.0/System.Threading.Channels.dll",
- "lib/net6.0/System.Threading.Channels.xml",
- "lib/net7.0/System.Threading.Channels.dll",
- "lib/net7.0/System.Threading.Channels.xml",
- "lib/netstandard2.0/System.Threading.Channels.dll",
- "lib/netstandard2.0/System.Threading.Channels.xml",
- "lib/netstandard2.1/System.Threading.Channels.dll",
- "lib/netstandard2.1/System.Threading.Channels.xml",
- "system.threading.channels.7.0.0.nupkg.sha512",
- "system.threading.channels.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Tesseract/5.2.0": {
- "sha512": "YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
- "type": "package",
- "path": "tesseract/5.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/Tesseract.targets",
- "lib/net47/Tesseract.dll",
- "lib/net48/Tesseract.dll",
- "lib/netstandard2.0/Tesseract.dll",
- "lib/netstandard2.0/Tesseract.xml",
- "tesseract.5.2.0.nupkg.sha512",
- "tesseract.nuspec",
- "x64/leptonica-1.82.0.dll",
- "x64/tesseract50.dll",
- "x86/leptonica-1.82.0.dll",
- "x86/tesseract50.dll"
- ]
- },
- "Contract/1.0.0": {
- "type": "project",
- "path": "../Contract/Contract.csproj",
- "msbuildProject": "../Contract/Contract.csproj"
- },
- "PaperlessServices/1.0.0": {
- "type": "project",
- "path": "../PaperlessServices/PaperlessServices.csproj",
- "msbuildProject": "../PaperlessServices/PaperlessServices.csproj"
- },
- "PostgreSQL/1.0.0": {
- "type": "project",
- "path": "../PostgreSQL/PostgreSQL.csproj",
- "msbuildProject": "../PostgreSQL/PostgreSQL.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "AutoMapper >= 13.0.1",
- "Contract >= 1.0.0",
- "Elastic.Clients.Elasticsearch >= 8.16.3",
- "FluentValidation >= 11.11.0",
- "FluentValidation.AspNetCore >= 11.3.0",
- "Microsoft.AspNetCore.OpenApi >= 8.0.11",
- "Microsoft.EntityFrameworkCore >= 8.0.10",
- "Microsoft.EntityFrameworkCore.Design >= 8.0.10",
- "Microsoft.EntityFrameworkCore.Tools >= 8.0.10",
- "Newtonsoft.Json >= 13.0.3",
- "PaperlessServices >= 1.0.0",
- "PostgreSQL >= 1.0.0",
- "Swashbuckle.AspNetCore >= 6.6.2"
- ]
- },
- "packageFolders": {
- "C:\\Users\\anfh2\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj",
- "projectName": "PaperlessREST",
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj",
- "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\obj\\",
- "projectStyle": "PackageReference",
- "UsingMicrosoftNETSdk": false,
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj"
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj"
- },
- "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj": {
- "projectPath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "AutoMapper": {
- "target": "Package",
- "version": "[13.0.1, )"
- },
- "Elastic.Clients.Elasticsearch": {
- "target": "Package",
- "version": "[8.16.3, )"
- },
- "FluentValidation": {
- "target": "Package",
- "version": "[11.11.0, )"
- },
- "FluentValidation.AspNetCore": {
- "target": "Package",
- "version": "[11.3.0, )"
- },
- "Microsoft.AspNetCore.OpenApi": {
- "target": "Package",
- "version": "[8.0.11, )"
- },
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "Swashbuckle.AspNetCore": {
- "target": "Package",
- "version": "[6.6.2, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {
+ "AutoMapper/13.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Options": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/AutoMapper.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/AutoMapper.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "CommunityToolkit.HighPerformance/8.2.2": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/CommunityToolkit.HighPerformance.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "EasyNetQ/7.8.0": {
+ "type": "package",
+ "dependencies": {
+ "RabbitMQ.Client": "6.8.1"
+ },
+ "compile": {
+ "lib/netstandard2.0/EasyNetQ.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/EasyNetQ.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Elastic.Clients.Elasticsearch/8.17.0": {
+ "type": "package",
+ "dependencies": {
+ "Elastic.Transport": "0.5.7"
+ },
+ "compile": {
+ "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Elastic.Clients.Elasticsearch.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Elastic.Transport/0.5.7": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Elastic.Transport.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Elastic.Transport.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "FluentValidation/11.11.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/FluentValidation.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/FluentValidation.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "FluentValidation.AspNetCore/11.3.0": {
+ "type": "package",
+ "dependencies": {
+ "FluentValidation": "11.5.1",
+ "FluentValidation.DependencyInjectionExtensions": "11.5.1"
+ },
+ "compile": {
+ "lib/net6.0/FluentValidation.AspNetCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/FluentValidation.AspNetCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "FluentValidation.DependencyInjectionExtensions/11.11.0": {
+ "type": "package",
+ "dependencies": {
+ "FluentValidation": "11.11.0",
+ "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Humanizer.Core/2.14.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Magick.NET-Q16-AnyCPU/14.2.0": {
+ "type": "package",
+ "dependencies": {
+ "Magick.NET.Core": "14.2.0"
+ },
+ "compile": {
+ "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Magick.NET-Q16-AnyCPU.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netstandard20/Magick.NET-Q16-AnyCPU.targets": {}
+ },
+ "runtimeTargets": {
+ "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so": {
+ "assetType": "native",
+ "rid": "linux-arm64"
+ },
+ "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so": {
+ "assetType": "native",
+ "rid": "linux-musl-x64"
+ },
+ "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so": {
+ "assetType": "native",
+ "rid": "linux-x64"
+ },
+ "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib": {
+ "assetType": "native",
+ "rid": "osx-arm64"
+ },
+ "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib": {
+ "assetType": "native",
+ "rid": "osx-x64"
+ },
+ "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ },
+ "runtimes/win-x64/native/Magick.Native-Q16-x64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/Magick.Native-Q16-x86.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "Magick.NET.Core/14.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Magick.NET.Core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Magick.NET.Core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "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": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.11": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "type": "package",
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
+ "System.Collections.Immutable": "6.0.0",
+ "System.Reflection.Metadata": "6.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/_._": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "resource": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/_._": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "resource": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/_._": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "resource": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.CodeAnalysis.Common": "[4.5.0]",
+ "System.Composition": "6.0.0",
+ "System.IO.Pipelines": "6.0.3",
+ "System.Threading.Channels": "6.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.1/_._": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "resource": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
+ "Microsoft.Extensions.Caching.Memory": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Design/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
+ "Microsoft.Extensions.DependencyModel": "8.0.2",
+ "Mono.TextTemplating": "2.2.1"
+ },
+ "compile": {
+ "lib/net8.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.10",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Design": "8.0.10"
+ },
+ "compile": {
+ "lib/net8.0/_._": {}
+ },
+ "runtime": {
+ "lib/net8.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1",
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
+ "Microsoft.Extensions.Options": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Minio/6.0.3": {
+ "type": "package",
+ "dependencies": {
+ "CommunityToolkit.HighPerformance": "8.2.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
+ "Microsoft.Extensions.Logging": "8.0.0",
+ "System.IO.Hashing": "8.0.0",
+ "System.Reactive": "6.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Minio.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Minio.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Mono.TextTemplating/2.2.1": {
+ "type": "package",
+ "dependencies": {
+ "System.CodeDom": "4.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Mono.TextTemplating.dll": {}
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Npgsql/8.0.5": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Npgsql.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.10",
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
+ "Npgsql": "8.0.5"
+ },
+ "compile": {
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "RabbitMQ.Client/6.8.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Threading.Channels": "7.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/RabbitMQ.Client.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/RabbitMQ.Client.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.CodeDom/4.4.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {}
+ }
+ },
+ "System.Collections.Immutable/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Convention": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0",
+ "System.Composition.TypedParts": "6.0.0"
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.AttributedModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition.Convention/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Convention.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Hosting.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Runtime.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.TypedParts.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.IO.Hashing/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/System.IO.Hashing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/System.IO.Hashing.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Reactive/6.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Reactive.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Reactive.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Reflection.Emit/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "System.Reflection.Metadata/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Threading.Channels/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/System.Threading.Channels.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Threading.Channels.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Tesseract/5.2.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection.Emit": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Tesseract.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Tesseract.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Contract/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Features": "5.0.17",
+ "Microsoft.EntityFrameworkCore": "8.0.10",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "bin/placeholder/Contract.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/Contract.dll": {}
+ }
+ },
+ "PaperlessServices/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v8.0",
+ "dependencies": {
+ "AutoMapper": "13.0.1",
+ "Contract": "1.0.0",
+ "EasyNetQ": "7.8.0",
+ "Elastic.Clients.Elasticsearch": "8.17.0",
+ "FluentValidation": "11.11.0",
+ "FluentValidation.DependencyInjectionExtensions": "11.11.0",
+ "Magick.NET-Q16-AnyCPU": "14.2.0",
+ "Magick.NET.Core": "14.2.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "8.0.1",
+ "Minio": "6.0.3",
+ "Newtonsoft.Json": "13.0.3",
+ "PostgreSQL": "1.0.0",
+ "Tesseract": "5.2.0"
+ },
+ "compile": {
+ "bin/placeholder/PaperlessServices.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/PaperlessServices.dll": {}
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "PostgreSQL/1.0.0": {
+ "type": "project",
+ "framework": ".NETCoreApp,Version=v8.0",
+ "dependencies": {
+ "Contract": "1.0.0",
+ "Microsoft.EntityFrameworkCore": "8.0.10",
+ "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
+ },
+ "compile": {
+ "bin/placeholder/PostgreSQL.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/PostgreSQL.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "AutoMapper/13.0.1": {
+ "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
+ "type": "package",
+ "path": "automapper/13.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "automapper.13.0.1.nupkg.sha512",
+ "automapper.nuspec",
+ "icon.png",
+ "lib/net6.0/AutoMapper.dll",
+ "lib/net6.0/AutoMapper.xml"
+ ]
+ },
+ "CommunityToolkit.HighPerformance/8.2.2": {
+ "sha512": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==",
+ "type": "package",
+ "path": "communitytoolkit.highperformance/8.2.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "License.md",
+ "ThirdPartyNotices.txt",
+ "communitytoolkit.highperformance.8.2.2.nupkg.sha512",
+ "communitytoolkit.highperformance.nuspec",
+ "lib/net6.0/CommunityToolkit.HighPerformance.dll",
+ "lib/net6.0/CommunityToolkit.HighPerformance.pdb",
+ "lib/net6.0/CommunityToolkit.HighPerformance.xml",
+ "lib/net7.0/CommunityToolkit.HighPerformance.dll",
+ "lib/net7.0/CommunityToolkit.HighPerformance.pdb",
+ "lib/net7.0/CommunityToolkit.HighPerformance.xml",
+ "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll",
+ "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb",
+ "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml",
+ "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll",
+ "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb",
+ "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml"
+ ]
+ },
+ "EasyNetQ/7.8.0": {
+ "sha512": "Qo+OoVkQMsN/LU/0QtKZF+bt8W0G5gd3OUibxluWQhWA2bqmapS9R+Hvb3hpQ5JV+TaiJyxM43ZkmnhOLm9r0g==",
+ "type": "package",
+ "path": "easynetq/7.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "EasyNetQ.png",
+ "easynetq.7.8.0.nupkg.sha512",
+ "easynetq.nuspec",
+ "lib/netstandard2.0/EasyNetQ.dll",
+ "lib/netstandard2.0/EasyNetQ.pdb",
+ "lib/netstandard2.0/EasyNetQ.xml",
+ "licence.txt"
+ ]
+ },
+ "Elastic.Clients.Elasticsearch/8.17.0": {
+ "sha512": "h/JfF01PzmBrO9O04BBalpjl2k7jMnFevgCZVitLViqYXyILBNOKlRcfIIYZGYzb9eYBC+fg4ay3BV+Ngd0r2A==",
+ "type": "package",
+ "path": "elastic.clients.elasticsearch/8.17.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "README.md",
+ "elastic.clients.elasticsearch.8.17.0.nupkg.sha512",
+ "elastic.clients.elasticsearch.nuspec",
+ "lib/net462/Elastic.Clients.Elasticsearch.dll",
+ "lib/net462/Elastic.Clients.Elasticsearch.xml",
+ "lib/net8.0/Elastic.Clients.Elasticsearch.dll",
+ "lib/net8.0/Elastic.Clients.Elasticsearch.xml",
+ "lib/netstandard2.0/Elastic.Clients.Elasticsearch.dll",
+ "lib/netstandard2.0/Elastic.Clients.Elasticsearch.xml",
+ "lib/netstandard2.1/Elastic.Clients.Elasticsearch.dll",
+ "lib/netstandard2.1/Elastic.Clients.Elasticsearch.xml",
+ "nuget-icon.png"
+ ]
+ },
+ "Elastic.Transport/0.5.7": {
+ "sha512": "0VQhS6RauOqydF1bUs7nqpk9u8X2Sa2O7djiioD5b/jWf/cX6S7GcmlWzqvm2j1a+np1Q79B2SwEFOI2zMkcbw==",
+ "type": "package",
+ "path": "elastic.transport/0.5.7",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "elastic.transport.0.5.7.nupkg.sha512",
+ "elastic.transport.nuspec",
+ "lib/net462/Elastic.Transport.dll",
+ "lib/net462/Elastic.Transport.pdb",
+ "lib/net462/Elastic.Transport.xml",
+ "lib/net8.0/Elastic.Transport.dll",
+ "lib/net8.0/Elastic.Transport.pdb",
+ "lib/net8.0/Elastic.Transport.xml",
+ "lib/netstandard2.0/Elastic.Transport.dll",
+ "lib/netstandard2.0/Elastic.Transport.pdb",
+ "lib/netstandard2.0/Elastic.Transport.xml",
+ "lib/netstandard2.1/Elastic.Transport.dll",
+ "lib/netstandard2.1/Elastic.Transport.pdb",
+ "lib/netstandard2.1/Elastic.Transport.xml",
+ "license.txt",
+ "nuget-icon.png"
+ ]
+ },
+ "FluentValidation/11.11.0": {
+ "sha512": "cyIVdQBwSipxWG8MA3Rqox7iNbUNUTK5bfJi9tIdm4CAfH71Oo5ABLP4/QyrUwuakqpUEPGtE43BDddvEehuYw==",
+ "type": "package",
+ "path": "fluentvalidation/11.11.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "fluent-validation-icon.png",
+ "fluentvalidation.11.11.0.nupkg.sha512",
+ "fluentvalidation.nuspec",
+ "lib/net5.0/FluentValidation.dll",
+ "lib/net5.0/FluentValidation.xml",
+ "lib/net6.0/FluentValidation.dll",
+ "lib/net6.0/FluentValidation.xml",
+ "lib/net7.0/FluentValidation.dll",
+ "lib/net7.0/FluentValidation.xml",
+ "lib/net8.0/FluentValidation.dll",
+ "lib/net8.0/FluentValidation.xml",
+ "lib/netstandard2.0/FluentValidation.dll",
+ "lib/netstandard2.0/FluentValidation.xml",
+ "lib/netstandard2.1/FluentValidation.dll",
+ "lib/netstandard2.1/FluentValidation.xml"
+ ]
+ },
+ "FluentValidation.AspNetCore/11.3.0": {
+ "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==",
+ "type": "package",
+ "path": "fluentvalidation.aspnetcore/11.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "fluent-validation-icon.png",
+ "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512",
+ "fluentvalidation.aspnetcore.nuspec",
+ "lib/net5.0/FluentValidation.AspNetCore.dll",
+ "lib/net5.0/FluentValidation.AspNetCore.xml",
+ "lib/net6.0/FluentValidation.AspNetCore.dll",
+ "lib/net6.0/FluentValidation.AspNetCore.xml",
+ "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll",
+ "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml"
+ ]
+ },
+ "FluentValidation.DependencyInjectionExtensions/11.11.0": {
+ "sha512": "viTKWaMbL3yJYgGI0DiCeavNbE9UPMWFVK2XS9nYXGbm3NDMd0/L5ER4wBzmTtW3BYh3SrlSXm9RACiKZ6stlA==",
+ "type": "package",
+ "path": "fluentvalidation.dependencyinjectionextensions/11.11.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "fluent-validation-icon.png",
+ "fluentvalidation.dependencyinjectionextensions.11.11.0.nupkg.sha512",
+ "fluentvalidation.dependencyinjectionextensions.nuspec",
+ "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll",
+ "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml",
+ "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll",
+ "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml"
+ ]
+ },
+ "Humanizer.Core/2.14.1": {
+ "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
+ "type": "package",
+ "path": "humanizer.core/2.14.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "humanizer.core.2.14.1.nupkg.sha512",
+ "humanizer.core.nuspec",
+ "lib/net6.0/Humanizer.dll",
+ "lib/net6.0/Humanizer.xml",
+ "lib/netstandard1.0/Humanizer.dll",
+ "lib/netstandard1.0/Humanizer.xml",
+ "lib/netstandard2.0/Humanizer.dll",
+ "lib/netstandard2.0/Humanizer.xml",
+ "logo.png"
+ ]
+ },
+ "Magick.NET-Q16-AnyCPU/14.2.0": {
+ "sha512": "dlC3F/jpJ7SoUYCPrNBny0NnBBqj6M0jstEDHmyh83zZHH9vSdOcRk3f/3E7Qdd4vRD4DAPfR+d6e6chNyRjiA==",
+ "type": "package",
+ "path": "magick.net-q16-anycpu/14.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Magick.NET.icon.png",
+ "Notice.linux-musl.txt",
+ "Notice.linux.txt",
+ "Notice.osx.txt",
+ "Notice.win.txt",
+ "build/netstandard20/Magick.NET-Q16-AnyCPU.targets",
+ "buildTransitive/netstandard20/Magick.NET-Q16-AnyCPU.targets",
+ "docs/Readme.md",
+ "lib/net8.0/Magick.NET-Q16-AnyCPU.dll",
+ "lib/net8.0/Magick.NET-Q16-AnyCPU.xml",
+ "lib/netstandard20/Magick.NET-Q16-AnyCPU.dll",
+ "lib/netstandard20/Magick.NET-Q16-AnyCPU.xml",
+ "magick.net-q16-anycpu.14.2.0.nupkg.sha512",
+ "magick.net-q16-anycpu.nuspec",
+ "runtimes/linux-arm64/native/Magick.Native-Q16-arm64.dll.so",
+ "runtimes/linux-musl-x64/native/Magick.Native-Q16-x64.dll.so",
+ "runtimes/linux-x64/native/Magick.Native-Q16-x64.dll.so",
+ "runtimes/osx-arm64/native/Magick.Native-Q16-arm64.dll.dylib",
+ "runtimes/osx-x64/native/Magick.Native-Q16-x64.dll.dylib",
+ "runtimes/win-arm64/native/Magick.Native-Q16-arm64.dll",
+ "runtimes/win-x64/native/Magick.Native-Q16-x64.dll",
+ "runtimes/win-x86/native/Magick.Native-Q16-x86.dll"
+ ]
+ },
+ "Magick.NET.Core/14.2.0": {
+ "sha512": "1F0vtPJwmoVg9tvi59VEy6KdmpUXbzKYJOH+TL37DT6kXfqj4iFtOMqD7CXC3G6z2zMgFeF5LX9SSApn8Jhhqg==",
+ "type": "package",
+ "path": "magick.net.core/14.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Copyright.txt",
+ "Magick.NET.icon.png",
+ "docs/Readme.md",
+ "lib/net8.0/Magick.NET.Core.dll",
+ "lib/net8.0/Magick.NET.Core.xml",
+ "lib/netstandard20/Magick.NET.Core.dll",
+ "lib/netstandard20/Magick.NET.Core.xml",
+ "magick.net.core.14.2.0.nupkg.sha512",
+ "magick.net.core.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.AspNetCore.OpenApi/8.0.11": {
+ "sha512": "1WCvCZpqvOAyul6upSJ8Rkb/QHdr4PLrDny26vFexya/nTkG3x2zt8j9qlJ5T3J+/yJD9KwlGKhho9ZDD/YiFA==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.openapi/8.0.11",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512",
+ "microsoft.aspnetcore.openapi.nuspec"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
+ "type": "package",
+ "path": "microsoft.codeanalysis.analyzers/3.3.3",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
+ "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
+ "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
+ "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
+ "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
+ "build/Microsoft.CodeAnalysis.Analyzers.props",
+ "build/Microsoft.CodeAnalysis.Analyzers.targets",
+ "build/config/analysislevel_2_9_8_all.editorconfig",
+ "build/config/analysislevel_2_9_8_default.editorconfig",
+ "build/config/analysislevel_2_9_8_minimum.editorconfig",
+ "build/config/analysislevel_2_9_8_none.editorconfig",
+ "build/config/analysislevel_2_9_8_recommended.editorconfig",
+ "build/config/analysislevel_3_3_all.editorconfig",
+ "build/config/analysislevel_3_3_default.editorconfig",
+ "build/config/analysislevel_3_3_minimum.editorconfig",
+ "build/config/analysislevel_3_3_none.editorconfig",
+ "build/config/analysislevel_3_3_recommended.editorconfig",
+ "build/config/analysislevel_3_all.editorconfig",
+ "build/config/analysislevel_3_default.editorconfig",
+ "build/config/analysislevel_3_minimum.editorconfig",
+ "build/config/analysislevel_3_none.editorconfig",
+ "build/config/analysislevel_3_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
+ "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_all.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_default.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_none.editorconfig",
+ "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
+ "build/config/analysislevelcorrectness_3_all.editorconfig",
+ "build/config/analysislevelcorrectness_3_default.editorconfig",
+ "build/config/analysislevelcorrectness_3_minimum.editorconfig",
+ "build/config/analysislevelcorrectness_3_none.editorconfig",
+ "build/config/analysislevelcorrectness_3_recommended.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_all.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_default.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_none.editorconfig",
+ "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
+ "build/config/analysislevellibrary_3_3_all.editorconfig",
+ "build/config/analysislevellibrary_3_3_default.editorconfig",
+ "build/config/analysislevellibrary_3_3_minimum.editorconfig",
+ "build/config/analysislevellibrary_3_3_none.editorconfig",
+ "build/config/analysislevellibrary_3_3_recommended.editorconfig",
+ "build/config/analysislevellibrary_3_all.editorconfig",
+ "build/config/analysislevellibrary_3_default.editorconfig",
+ "build/config/analysislevellibrary_3_minimum.editorconfig",
+ "build/config/analysislevellibrary_3_none.editorconfig",
+ "build/config/analysislevellibrary_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
+ "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
+ "documentation/Analyzer Configuration.md",
+ "documentation/Microsoft.CodeAnalysis.Analyzers.md",
+ "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
+ "editorconfig/AllRulesDefault/.editorconfig",
+ "editorconfig/AllRulesDisabled/.editorconfig",
+ "editorconfig/AllRulesEnabled/.editorconfig",
+ "editorconfig/CorrectnessRulesDefault/.editorconfig",
+ "editorconfig/CorrectnessRulesEnabled/.editorconfig",
+ "editorconfig/DataflowRulesDefault/.editorconfig",
+ "editorconfig/DataflowRulesEnabled/.editorconfig",
+ "editorconfig/LibraryRulesDefault/.editorconfig",
+ "editorconfig/LibraryRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
+ "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
+ "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
+ "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
+ "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "microsoft.codeanalysis.analyzers.nuspec",
+ "rulesets/AllRulesDefault.ruleset",
+ "rulesets/AllRulesDisabled.ruleset",
+ "rulesets/AllRulesEnabled.ruleset",
+ "rulesets/CorrectnessRulesDefault.ruleset",
+ "rulesets/CorrectnessRulesEnabled.ruleset",
+ "rulesets/DataflowRulesDefault.ruleset",
+ "rulesets/DataflowRulesEnabled.ruleset",
+ "rulesets/LibraryRulesDefault.ruleset",
+ "rulesets/LibraryRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
+ "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
+ "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
+ "rulesets/PortedFromFxCopRulesDefault.ruleset",
+ "rulesets/PortedFromFxCopRulesEnabled.ruleset",
+ "tools/install.ps1",
+ "tools/uninstall.ps1"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
+ "type": "package",
+ "path": "microsoft.codeanalysis.common/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
+ "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
+ "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
+ "microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
+ "microsoft.codeanalysis.common.nuspec"
+ ]
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
+ "type": "package",
+ "path": "microsoft.codeanalysis.csharp/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
+ "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.nuspec"
+ ]
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
+ "type": "package",
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
+ "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.workspaces.nuspec"
+ ]
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
+ "type": "package",
+ "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
+ "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
+ "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
+ "microsoft.codeanalysis.workspaces.common.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore/8.0.10": {
+ "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
+ "microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
+ "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
+ "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
+ "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
+ "docs/PACKAGE.md",
+ "lib/netstandard2.0/_._",
+ "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.analyzers.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Design/8.0.10": {
+ "sha512": "uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.design/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
+ "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.design.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
+ "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.relational/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
+ "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.relational.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Tools/8.0.10": {
+ "sha512": "aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.tools/8.0.10",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "docs/PACKAGE.md",
+ "lib/net8.0/_._",
+ "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512",
+ "microsoft.entityframeworkcore.tools.nuspec",
+ "tools/EntityFrameworkCore.PS2.psd1",
+ "tools/EntityFrameworkCore.PS2.psm1",
+ "tools/EntityFrameworkCore.psd1",
+ "tools/EntityFrameworkCore.psm1",
+ "tools/about_EntityFrameworkCore.help.txt",
+ "tools/init.ps1",
+ "tools/net461/any/ef.exe",
+ "tools/net461/win-arm64/ef.exe",
+ "tools/net461/win-x86/ef.exe",
+ "tools/netcoreapp2.0/any/ef.dll",
+ "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net8.0/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.8.0.0.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.1": {
+ "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net8.0/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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net8.0/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.8.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.1": {
+ "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net8.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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net8.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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.2": {
+ "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencymodel/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
+ "lib/net462/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net462/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
+ "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": {
+ "sha512": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==",
+ "type": "package",
+ "path": "microsoft.extensions.diagnostics.abstractions/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
+ "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512",
+ "microsoft.extensions.diagnostics.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/8.0.1": {
+ "sha512": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging/8.0.1": {
+ "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
+ "lib/net462/Microsoft.Extensions.Logging.dll",
+ "lib/net462/Microsoft.Extensions.Logging.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.dll",
+ "lib/net8.0/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.8.0.1.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
+ "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "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",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net8.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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/8.0.2": {
+ "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
+ "type": "package",
+ "path": "microsoft.extensions.options/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
+ "lib/net462/Microsoft.Extensions.Options.dll",
+ "lib/net462/Microsoft.Extensions.Options.xml",
+ "lib/net6.0/Microsoft.Extensions.Options.dll",
+ "lib/net6.0/Microsoft.Extensions.Options.xml",
+ "lib/net7.0/Microsoft.Extensions.Options.dll",
+ "lib/net7.0/Microsoft.Extensions.Options.xml",
+ "lib/net8.0/Microsoft.Extensions.Options.dll",
+ "lib/net8.0/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.8.0.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
+ "lib/net6.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net6.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net7.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net8.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "type": "package",
+ "path": "microsoft.openapi/1.4.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.1.4.3.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ },
+ "Minio/6.0.3": {
+ "sha512": "WHlkouclHtiK/pIXPHcjVmbeELHPtElj2qRSopFVpSmsFhZXeM10sPvczrkSPePsmwuvZdFryJ/hJzKu3XeLVg==",
+ "type": "package",
+ "path": "minio/6.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE",
+ "icon.png",
+ "lib/net6.0/Minio.dll",
+ "lib/net6.0/Minio.pdb",
+ "lib/net6.0/Minio.xml",
+ "lib/net8.0/Minio.dll",
+ "lib/net8.0/Minio.pdb",
+ "lib/net8.0/Minio.xml",
+ "lib/netstandard2.0/Minio.dll",
+ "lib/netstandard2.0/Minio.pdb",
+ "lib/netstandard2.0/Minio.xml",
+ "minio.6.0.3.nupkg.sha512",
+ "minio.nuspec",
+ "readme.md"
+ ]
+ },
+ "Mono.TextTemplating/2.2.1": {
+ "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
+ "type": "package",
+ "path": "mono.texttemplating/2.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/Mono.TextTemplating.dll",
+ "lib/netstandard2.0/Mono.TextTemplating.dll",
+ "mono.texttemplating.2.2.1.nupkg.sha512",
+ "mono.texttemplating.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "type": "package",
+ "path": "newtonsoft.json/13.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "README.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/net6.0/Newtonsoft.Json.dll",
+ "lib/net6.0/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.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Npgsql/8.0.5": {
+ "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==",
+ "type": "package",
+ "path": "npgsql/8.0.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net6.0/Npgsql.dll",
+ "lib/net6.0/Npgsql.xml",
+ "lib/net7.0/Npgsql.dll",
+ "lib/net7.0/Npgsql.xml",
+ "lib/net8.0/Npgsql.dll",
+ "lib/net8.0/Npgsql.xml",
+ "lib/netstandard2.0/Npgsql.dll",
+ "lib/netstandard2.0/Npgsql.xml",
+ "lib/netstandard2.1/Npgsql.dll",
+ "lib/netstandard2.1/Npgsql.xml",
+ "npgsql.8.0.5.nupkg.sha512",
+ "npgsql.nuspec",
+ "postgresql.png"
+ ]
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": {
+ "sha512": "gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==",
+ "type": "package",
+ "path": "npgsql.entityframeworkcore.postgresql/8.0.10",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
+ "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
+ "npgsql.entityframeworkcore.postgresql.nuspec",
+ "postgresql.png"
+ ]
+ },
+ "RabbitMQ.Client/6.8.1": {
+ "sha512": "jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
+ "type": "package",
+ "path": "rabbitmq.client/6.8.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net462/RabbitMQ.Client.dll",
+ "lib/net462/RabbitMQ.Client.xml",
+ "lib/netstandard2.0/RabbitMQ.Client.dll",
+ "lib/netstandard2.0/RabbitMQ.Client.xml",
+ "rabbitmq.client.6.8.1.nupkg.sha512",
+ "rabbitmq.client.nuspec"
+ ]
+ },
+ "System.CodeDom/4.4.0": {
+ "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
+ "type": "package",
+ "path": "system.codedom/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.CodeDom.dll",
+ "lib/netstandard2.0/System.CodeDom.dll",
+ "ref/net461/System.CodeDom.dll",
+ "ref/net461/System.CodeDom.xml",
+ "ref/netstandard2.0/System.CodeDom.dll",
+ "ref/netstandard2.0/System.CodeDom.xml",
+ "system.codedom.4.4.0.nupkg.sha512",
+ "system.codedom.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "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.Composition/6.0.0": {
+ "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
+ "type": "package",
+ "path": "system.composition/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "system.composition.6.0.0.nupkg.sha512",
+ "system.composition.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
+ "type": "package",
+ "path": "system.composition.attributedmodel/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.AttributedModel.dll",
+ "lib/net461/System.Composition.AttributedModel.xml",
+ "lib/net6.0/System.Composition.AttributedModel.dll",
+ "lib/net6.0/System.Composition.AttributedModel.xml",
+ "lib/netstandard2.0/System.Composition.AttributedModel.dll",
+ "lib/netstandard2.0/System.Composition.AttributedModel.xml",
+ "system.composition.attributedmodel.6.0.0.nupkg.sha512",
+ "system.composition.attributedmodel.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Convention/6.0.0": {
+ "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
+ "type": "package",
+ "path": "system.composition.convention/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Convention.dll",
+ "lib/net461/System.Composition.Convention.xml",
+ "lib/net6.0/System.Composition.Convention.dll",
+ "lib/net6.0/System.Composition.Convention.xml",
+ "lib/netstandard2.0/System.Composition.Convention.dll",
+ "lib/netstandard2.0/System.Composition.Convention.xml",
+ "system.composition.convention.6.0.0.nupkg.sha512",
+ "system.composition.convention.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
+ "type": "package",
+ "path": "system.composition.hosting/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Hosting.dll",
+ "lib/net461/System.Composition.Hosting.xml",
+ "lib/net6.0/System.Composition.Hosting.dll",
+ "lib/net6.0/System.Composition.Hosting.xml",
+ "lib/netstandard2.0/System.Composition.Hosting.dll",
+ "lib/netstandard2.0/System.Composition.Hosting.xml",
+ "system.composition.hosting.6.0.0.nupkg.sha512",
+ "system.composition.hosting.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
+ "type": "package",
+ "path": "system.composition.runtime/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.Runtime.dll",
+ "lib/net461/System.Composition.Runtime.xml",
+ "lib/net6.0/System.Composition.Runtime.dll",
+ "lib/net6.0/System.Composition.Runtime.xml",
+ "lib/netstandard2.0/System.Composition.Runtime.dll",
+ "lib/netstandard2.0/System.Composition.Runtime.xml",
+ "system.composition.runtime.6.0.0.nupkg.sha512",
+ "system.composition.runtime.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
+ "type": "package",
+ "path": "system.composition.typedparts/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Composition.TypedParts.dll",
+ "lib/net461/System.Composition.TypedParts.xml",
+ "lib/net6.0/System.Composition.TypedParts.dll",
+ "lib/net6.0/System.Composition.TypedParts.xml",
+ "lib/netstandard2.0/System.Composition.TypedParts.dll",
+ "lib/netstandard2.0/System.Composition.TypedParts.xml",
+ "system.composition.typedparts.6.0.0.nupkg.sha512",
+ "system.composition.typedparts.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.IO.Hashing/8.0.0": {
+ "sha512": "ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==",
+ "type": "package",
+ "path": "system.io.hashing/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.IO.Hashing.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets",
+ "lib/net462/System.IO.Hashing.dll",
+ "lib/net462/System.IO.Hashing.xml",
+ "lib/net6.0/System.IO.Hashing.dll",
+ "lib/net6.0/System.IO.Hashing.xml",
+ "lib/net7.0/System.IO.Hashing.dll",
+ "lib/net7.0/System.IO.Hashing.xml",
+ "lib/net8.0/System.IO.Hashing.dll",
+ "lib/net8.0/System.IO.Hashing.xml",
+ "lib/netstandard2.0/System.IO.Hashing.dll",
+ "lib/netstandard2.0/System.IO.Hashing.xml",
+ "system.io.hashing.8.0.0.nupkg.sha512",
+ "system.io.hashing.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
+ "type": "package",
+ "path": "system.io.pipelines/6.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.IO.Pipelines.dll",
+ "lib/net461/System.IO.Pipelines.xml",
+ "lib/net6.0/System.IO.Pipelines.dll",
+ "lib/net6.0/System.IO.Pipelines.xml",
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll",
+ "lib/netcoreapp3.1/System.IO.Pipelines.xml",
+ "lib/netstandard2.0/System.IO.Pipelines.dll",
+ "lib/netstandard2.0/System.IO.Pipelines.xml",
+ "system.io.pipelines.6.0.3.nupkg.sha512",
+ "system.io.pipelines.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Memory/4.5.5": {
+ "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "type": "package",
+ "path": "system.memory/4.5.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Memory.dll",
+ "lib/net461/System.Memory.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.5.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reactive/6.0.1": {
+ "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
+ "type": "package",
+ "path": "system.reactive/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/net6.0-windows10.0.19041/_._",
+ "build/net6.0/_._",
+ "buildTransitive/net6.0-windows10.0.19041/_._",
+ "buildTransitive/net6.0/_._",
+ "icon.png",
+ "lib/net472/System.Reactive.dll",
+ "lib/net472/System.Reactive.xml",
+ "lib/net6.0-windows10.0.19041/System.Reactive.dll",
+ "lib/net6.0-windows10.0.19041/System.Reactive.xml",
+ "lib/net6.0/System.Reactive.dll",
+ "lib/net6.0/System.Reactive.xml",
+ "lib/netstandard2.0/System.Reactive.dll",
+ "lib/netstandard2.0/System.Reactive.xml",
+ "lib/uap10.0.18362/System.Reactive.dll",
+ "lib/uap10.0.18362/System.Reactive.pri",
+ "lib/uap10.0.18362/System.Reactive.xml",
+ "readme.md",
+ "system.reactive.6.0.1.nupkg.sha512",
+ "system.reactive.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.7.0": {
+ "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
+ "type": "package",
+ "path": "system.reflection.emit/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Reflection.Emit.dll",
+ "lib/netstandard1.1/System.Reflection.Emit.xml",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.dll",
+ "lib/netstandard2.0/System.Reflection.Emit.xml",
+ "lib/netstandard2.1/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcoreapp2.0/_._",
+ "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/netstandard2.0/System.Reflection.Emit.dll",
+ "ref/netstandard2.0/System.Reflection.Emit.xml",
+ "ref/netstandard2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
+ "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
+ "system.reflection.emit.4.7.0.nupkg.sha512",
+ "system.reflection.emit.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection.Metadata/6.0.1": {
+ "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
+ "type": "package",
+ "path": "system.reflection.metadata/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Reflection.Metadata.dll",
+ "lib/net461/System.Reflection.Metadata.xml",
+ "lib/net6.0/System.Reflection.Metadata.dll",
+ "lib/net6.0/System.Reflection.Metadata.xml",
+ "lib/netstandard2.0/System.Reflection.Metadata.dll",
+ "lib/netstandard2.0/System.Reflection.Metadata.xml",
+ "system.reflection.metadata.6.0.1.nupkg.sha512",
+ "system.reflection.metadata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "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.Text.Encoding.CodePages/6.0.0": {
+ "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.xml",
+ "lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
+ "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "system.text.encoding.codepages.6.0.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Threading.Channels/7.0.0": {
+ "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
+ "type": "package",
+ "path": "system.threading.channels/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Threading.Channels.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
+ "lib/net462/System.Threading.Channels.dll",
+ "lib/net462/System.Threading.Channels.xml",
+ "lib/net6.0/System.Threading.Channels.dll",
+ "lib/net6.0/System.Threading.Channels.xml",
+ "lib/net7.0/System.Threading.Channels.dll",
+ "lib/net7.0/System.Threading.Channels.xml",
+ "lib/netstandard2.0/System.Threading.Channels.dll",
+ "lib/netstandard2.0/System.Threading.Channels.xml",
+ "lib/netstandard2.1/System.Threading.Channels.dll",
+ "lib/netstandard2.1/System.Threading.Channels.xml",
+ "system.threading.channels.7.0.0.nupkg.sha512",
+ "system.threading.channels.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Tesseract/5.2.0": {
+ "sha512": "YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
+ "type": "package",
+ "path": "tesseract/5.2.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Tesseract.targets",
+ "lib/net47/Tesseract.dll",
+ "lib/net48/Tesseract.dll",
+ "lib/netstandard2.0/Tesseract.dll",
+ "lib/netstandard2.0/Tesseract.xml",
+ "tesseract.5.2.0.nupkg.sha512",
+ "tesseract.nuspec",
+ "x64/leptonica-1.82.0.dll",
+ "x64/tesseract50.dll",
+ "x86/leptonica-1.82.0.dll",
+ "x86/tesseract50.dll"
+ ]
+ },
+ "Contract/1.0.0": {
+ "type": "project",
+ "path": "../Contract/Contract.csproj",
+ "msbuildProject": "../Contract/Contract.csproj"
+ },
+ "PaperlessServices/1.0.0": {
+ "type": "project",
+ "path": "../PaperlessServices/PaperlessServices.csproj",
+ "msbuildProject": "../PaperlessServices/PaperlessServices.csproj"
+ },
+ "PostgreSQL/1.0.0": {
+ "type": "project",
+ "path": "../PostgreSQL/PostgreSQL.csproj",
+ "msbuildProject": "../PostgreSQL/PostgreSQL.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "AutoMapper >= 13.0.1",
+ "Contract >= 1.0.0",
+ "Elastic.Clients.Elasticsearch >= 8.17.0",
+ "FluentValidation >= 11.11.0",
+ "FluentValidation.AspNetCore >= 11.3.0",
+ "Microsoft.AspNetCore.OpenApi >= 8.0.11",
+ "Microsoft.EntityFrameworkCore >= 8.0.10",
+ "Microsoft.EntityFrameworkCore.Design >= 8.0.10",
+ "Microsoft.EntityFrameworkCore.Tools >= 8.0.10",
+ "Newtonsoft.Json >= 13.0.3",
+ "PaperlessServices >= 1.0.0",
+ "PostgreSQL >= 1.0.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\anfh2\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj",
+ "projectName": "PaperlessREST",
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj",
+ "packagesPath": "C:\\Users\\anfh2\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\anfh2\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj"
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj"
+ },
+ "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj": {
+ "projectPath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ },
+ "SdkAnalysisLevel": "9.0.100"
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "AutoMapper": {
+ "target": "Package",
+ "version": "[13.0.1, )"
+ },
+ "Elastic.Clients.Elasticsearch": {
+ "target": "Package",
+ "version": "[8.17.0, )"
+ },
+ "FluentValidation": {
+ "target": "Package",
+ "version": "[11.11.0, )"
+ },
+ "FluentValidation.AspNetCore": {
+ "target": "Package",
+ "version": "[11.3.0, )"
+ },
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.11, )"
+ },
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Microsoft.EntityFrameworkCore.Tools": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.10, )"
+ },
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[13.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
}
\ No newline at end of file
diff --git a/PaperlessREST/obj/project.nuget.cache b/PaperlessREST/obj/project.nuget.cache
index ff1ebb1..0b2629e 100644
--- a/PaperlessREST/obj/project.nuget.cache
+++ b/PaperlessREST/obj/project.nuget.cache
@@ -1,78 +1,72 @@
-{
- "version": 2,
- "dgSpecHash": "2xs4sis1wTw=",
- "success": true,
- "projectFilePath": "C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj",
- "expectedPackageFiles": [
- "C:\\Users\\anfh2\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\communitytoolkit.highperformance\\8.2.2\\communitytoolkit.highperformance.8.2.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\easynetq\\7.8.0\\easynetq.7.8.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\easynetq.management.client\\3.0.0\\easynetq.management.client.3.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\elastic.clients.elasticsearch\\8.16.3\\elastic.clients.elasticsearch.8.16.3.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\elastic.transport\\0.5.6\\elastic.transport.0.5.6.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation\\11.11.0\\fluentvalidation.11.11.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\magick.net-q16-anycpu\\14.2.0\\magick.net-q16-anycpu.14.2.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\magick.net.core\\14.2.0\\magick.net.core.14.2.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.11\\microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.10\\microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.10\\microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.10\\microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.1\\microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\8.0.1\\microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.openapi\\1.6.14\\microsoft.openapi.1.6.14.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\minio\\6.0.3\\minio.6.0.3.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.10\\npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\rabbitmq.client\\6.8.1\\rabbitmq.client.6.8.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\swashbuckle.aspnetcore\\6.6.2\\swashbuckle.aspnetcore.6.6.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.6.2\\swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.6.2\\swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.6.2\\swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.io.hashing\\8.0.0\\system.io.hashing.8.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512",
- "C:\\Users\\anfh2\\.nuget\\packages\\tesseract\\5.2.0\\tesseract.5.2.0.nupkg.sha512"
- ],
- "logs": []
+{
+ "version": 2,
+ "dgSpecHash": "R7E+qEcaTJo=",
+ "success": true,
+ "projectFilePath": "C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\anfh2\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\communitytoolkit.highperformance\\8.2.2\\communitytoolkit.highperformance.8.2.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\easynetq\\7.8.0\\easynetq.7.8.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\elastic.clients.elasticsearch\\8.17.0\\elastic.clients.elasticsearch.8.17.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\elastic.transport\\0.5.7\\elastic.transport.0.5.7.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation\\11.11.0\\fluentvalidation.11.11.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.11.0\\fluentvalidation.dependencyinjectionextensions.11.11.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\magick.net-q16-anycpu\\14.2.0\\magick.net-q16-anycpu.14.2.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\magick.net.core\\14.2.0\\magick.net.core.14.2.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.http.features\\5.0.17\\microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.11\\microsoft.aspnetcore.openapi.8.0.11.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.10\\microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.10\\microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.10\\microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.1\\microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\8.0.1\\microsoft.extensions.hosting.abstractions.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\minio\\6.0.3\\minio.6.0.3.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.10\\npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\rabbitmq.client\\6.8.1\\rabbitmq.client.6.8.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.io.hashing\\8.0.0\\system.io.hashing.8.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512",
+ "C:\\Users\\anfh2\\.nuget\\packages\\tesseract\\5.2.0\\tesseract.5.2.0.nupkg.sha512"
+ ],
+ "logs": []
}
\ No newline at end of file
diff --git a/PaperlessREST/obj/project.packagespec.json b/PaperlessREST/obj/project.packagespec.json
index deb8f04..2cc1123 100644
--- a/PaperlessREST/obj/project.packagespec.json
+++ b/PaperlessREST/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj","projectName":"PaperlessREST","projectPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\PaperlessREST.csproj","outputPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessREST\\obj\\","projectStyle":"PackageReference","UsingMicrosoftNETSdk":false,"fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\Contract\\Contract.csproj"},"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PaperlessServices\\PaperlessServices.csproj"},"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\SWEN3\\PostgreSQL\\PostgreSQL.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"AutoMapper":{"target":"Package","version":"[13.0.1, )"},"Elastic.Clients.Elasticsearch":{"target":"Package","version":"[8.16.3, )"},"FluentValidation":{"target":"Package","version":"[11.11.0, )"},"FluentValidation.AspNetCore":{"target":"Package","version":"[11.3.0, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.11, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Tools":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.6.2, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj","projectName":"PaperlessREST","projectPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\PaperlessREST.csproj","outputPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessREST\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\Contract\\Contract.csproj"},"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PaperlessServices\\PaperlessServices.csproj"},"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj":{"projectPath":"C:\\Users\\anfh2\\RiderProjects\\Paperless\\PostgreSQL\\PostgreSQL.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.100"}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"AutoMapper":{"target":"Package","version":"[13.0.1, )"},"Elastic.Clients.Elasticsearch":{"target":"Package","version":"[8.17.0, )"},"FluentValidation":{"target":"Package","version":"[11.11.0, )"},"FluentValidation.AspNetCore":{"target":"Package","version":"[11.3.0, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[8.0.11, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Tools":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/PaperlessREST/obj/rider.project.model.nuget.info b/PaperlessREST/obj/rider.project.model.nuget.info
index 50cfd24..94e4c3a 100644
--- a/PaperlessREST/obj/rider.project.model.nuget.info
+++ b/PaperlessREST/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17337395306773208
\ No newline at end of file
+17370009371576633
\ No newline at end of file
diff --git a/PaperlessREST/obj/rider.project.restore.info b/PaperlessREST/obj/rider.project.restore.info
index c4050d5..0f36822 100644
--- a/PaperlessREST/obj/rider.project.restore.info
+++ b/PaperlessREST/obj/rider.project.restore.info
@@ -1 +1 @@
-17337395359738154
\ No newline at end of file
+17370009412449133
\ No newline at end of file
diff --git a/PaperlessREST/rest-appsettings.json b/PaperlessREST/rest-appsettings.json
index b63e068..3e293d6 100644
--- a/PaperlessREST/rest-appsettings.json
+++ b/PaperlessREST/rest-appsettings.json
@@ -1,6 +1,6 @@
{
"ConnectionStrings": {
- "DefaultConnection": "Host=localhost;Database=paperless;Username=postgres;Password=postgres",
+ "DefaultConnection": "Host=postgres;Database=paperless;Username=postgres;Password=postgres",
"Rabbit": "host=localhost;port=5672;username=guest;password=guest"
},
"RabbitMQ": {
diff --git a/PaperlessREST/wwwroot/css/index.css b/PaperlessREST/wwwroot/css/index.css
index 6de0fca..0375f2f 100644
--- a/PaperlessREST/wwwroot/css/index.css
+++ b/PaperlessREST/wwwroot/css/index.css
@@ -26,7 +26,21 @@ body {
margin: 20px 0;
}
-.alert {
- display: none;
- margin-top: 20px;
+#alert-container {
+ width: 100%;
+ max-width: 600px;
+ z-index: 1050;
+ pointer-events: none;
+}
+
+#alert-container .alert {
+ pointer-events: auto;
+ margin-top: 1rem;
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
+ opacity: 1;
+ transition: opacity 0.3s ease-in-out;
+}
+
+#alert-container .alert.fade-out {
+ opacity: 0;
}
\ No newline at end of file
diff --git a/PaperlessREST/wwwroot/documents.html b/PaperlessREST/wwwroot/documents.html
index 00a31a4..ac8a239 100644
--- a/PaperlessREST/wwwroot/documents.html
+++ b/PaperlessREST/wwwroot/documents.html
@@ -8,8 +8,9 @@
+