diff --git a/Knots/Endpoints/Discussion/CreateDiscussionEndpoint.cs b/Knots/Endpoints/Discussion/CreateDiscussionEndpoint.cs new file mode 100644 index 0000000..d523a01 --- /dev/null +++ b/Knots/Endpoints/Discussion/CreateDiscussionEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Discussion; + +public class CreateDiscussionEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Discussion/DeleteDiscussionEndpoint.cs b/Knots/Endpoints/Discussion/DeleteDiscussionEndpoint.cs new file mode 100644 index 0000000..236d400 --- /dev/null +++ b/Knots/Endpoints/Discussion/DeleteDiscussionEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Discussion; + +public class DeleteDiscussionEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs b/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs new file mode 100644 index 0000000..82c9c6b --- /dev/null +++ b/Knots/Endpoints/Discussion/GetDiscussionEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Discussion; + +public class GetDiscussionEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Group/CreateGroupEndpoint.cs b/Knots/Endpoints/Group/CreateGroupEndpoint.cs new file mode 100644 index 0000000..712eeb0 --- /dev/null +++ b/Knots/Endpoints/Group/CreateGroupEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Group; + +public class CreateGroupEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Group/DeleteGroupEndpoint.cs b/Knots/Endpoints/Group/DeleteGroupEndpoint.cs new file mode 100644 index 0000000..b2a297f --- /dev/null +++ b/Knots/Endpoints/Group/DeleteGroupEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Group; + +public class DeleteGroupEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Group/GetGroupEndpoint.cs b/Knots/Endpoints/Group/GetGroupEndpoint.cs new file mode 100644 index 0000000..52cd58f --- /dev/null +++ b/Knots/Endpoints/Group/GetGroupEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Group; + +public class GetGroupEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Key/CreateKeyEndpoint.cs b/Knots/Endpoints/Key/CreateKeyEndpoint.cs new file mode 100644 index 0000000..69ee9e9 --- /dev/null +++ b/Knots/Endpoints/Key/CreateKeyEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Key; + +public class CreateKeyEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Key/DeleteKeyEndpoint.cs b/Knots/Endpoints/Key/DeleteKeyEndpoint.cs new file mode 100644 index 0000000..92436d6 --- /dev/null +++ b/Knots/Endpoints/Key/DeleteKeyEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Key; + +public class DeleteKeyEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Key/GetKeyEndpoint.cs b/Knots/Endpoints/Key/GetKeyEndpoint.cs new file mode 100644 index 0000000..e890914 --- /dev/null +++ b/Knots/Endpoints/Key/GetKeyEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Key; + +public class GetKeyEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Message/CreateMessageEndpoint.cs b/Knots/Endpoints/Message/CreateMessageEndpoint.cs new file mode 100644 index 0000000..9fefb6e --- /dev/null +++ b/Knots/Endpoints/Message/CreateMessageEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Message; + +public class CreateMessageEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Message/DeleteMessageEndpoint.cs b/Knots/Endpoints/Message/DeleteMessageEndpoint.cs new file mode 100644 index 0000000..63691ad --- /dev/null +++ b/Knots/Endpoints/Message/DeleteMessageEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Message; + +public class DeleteMessageEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Message/GetMessageEndpoint.cs b/Knots/Endpoints/Message/GetMessageEndpoint.cs new file mode 100644 index 0000000..d23b69e --- /dev/null +++ b/Knots/Endpoints/Message/GetMessageEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Message; + +public class GetMessageEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Role/CreateRoleEndpoint.cs b/Knots/Endpoints/Role/CreateRoleEndpoint.cs new file mode 100644 index 0000000..a1a9b16 --- /dev/null +++ b/Knots/Endpoints/Role/CreateRoleEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Role; + +public class CreateRoleEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Role/GetRoleEndpoint.cs b/Knots/Endpoints/Role/GetRoleEndpoint.cs new file mode 100644 index 0000000..8d3c682 --- /dev/null +++ b/Knots/Endpoints/Role/GetRoleEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Role; + +public class GetRoleEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/Role/UpdateRoleEndpoint.cs b/Knots/Endpoints/Role/UpdateRoleEndpoint.cs new file mode 100644 index 0000000..283aff8 --- /dev/null +++ b/Knots/Endpoints/Role/UpdateRoleEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.Role; + +public class UpdateRoleEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/User/CreateUserEndpoint.cs b/Knots/Endpoints/User/CreateUserEndpoint.cs new file mode 100644 index 0000000..6176133 --- /dev/null +++ b/Knots/Endpoints/User/CreateUserEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.User; + +public class CreateUserEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/User/DeleteUserEndpoint.cs b/Knots/Endpoints/User/DeleteUserEndpoint.cs new file mode 100644 index 0000000..7f76d8b --- /dev/null +++ b/Knots/Endpoints/User/DeleteUserEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.User; + +public class DeleteUserEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/User/GetAllUsersEndpoint.cs b/Knots/Endpoints/User/GetAllUsersEndpoint.cs new file mode 100644 index 0000000..0ca85fd --- /dev/null +++ b/Knots/Endpoints/User/GetAllUsersEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.User; + +public class GetAllUsersEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/User/GetUserEndpoint.cs b/Knots/Endpoints/User/GetUserEndpoint.cs new file mode 100644 index 0000000..d6a6916 --- /dev/null +++ b/Knots/Endpoints/User/GetUserEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.User; + +public class GetUserEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Endpoints/User/UpdateUserEndpoint.cs b/Knots/Endpoints/User/UpdateUserEndpoint.cs new file mode 100644 index 0000000..c58ec6c --- /dev/null +++ b/Knots/Endpoints/User/UpdateUserEndpoint.cs @@ -0,0 +1,6 @@ +namespace Knots.Endpoints.User; + +public class UpdateUserEndpoint +{ + +} \ No newline at end of file diff --git a/Knots/Knots.csproj b/Knots/Knots.csproj index cab13e8..cdd762d 100644 --- a/Knots/Knots.csproj +++ b/Knots/Knots.csproj @@ -24,7 +24,6 @@ - diff --git a/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs b/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs index aea6c89..5d02ab2 100644 --- a/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs +++ b/Knots/obj/Debug/net9.0/Knots.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Knots")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f2e4058b04fa558b746330577933ccad1a256320")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2258e5ad8e56b01ea799bd6859bf45e6499a9f5f")] [assembly: System.Reflection.AssemblyProductAttribute("Knots")] [assembly: System.Reflection.AssemblyTitleAttribute("Knots")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache b/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache index f110e25..f5d1813 100644 --- a/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache +++ b/Knots/obj/Debug/net9.0/Knots.AssemblyInfoInputs.cache @@ -1 +1 @@ -58ea72202b7406d81e7748acd4a38ae302713932c2e53e7a26e9bb316e982ba1 +1ec67d9f775d898443e3ca901e3936ca7eac382476d451d905e395f125dd8665 diff --git a/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig b/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig index 34ced87..d9c6cf3 100644 --- a/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig +++ b/Knots/obj/Debug/net9.0/Knots.GeneratedMSBuildEditorConfig.editorconfig @@ -17,13 +17,13 @@ build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Knots build_property.RootNamespace = Knots -build_property.ProjectDir = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots/ +build_property.ProjectDir = /home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 9.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = /home/carteronm@stsio.lan/RiderProjects/Knots/Knots +build_property.MSBuildProjectDirectory = /home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots build_property._RazorSourceGeneratorDebug = build_property.EffectiveAnalysisLevelStyle = 9.0 build_property.EnableCodeStyleSeverity = diff --git a/Knots/obj/Debug/net9.0/Knots.assets.cache b/Knots/obj/Debug/net9.0/Knots.assets.cache index 9dae977..a530394 100644 Binary files a/Knots/obj/Debug/net9.0/Knots.assets.cache and b/Knots/obj/Debug/net9.0/Knots.assets.cache differ diff --git a/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache b/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache index b3aaecf..c239e7c 100644 Binary files a/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache and b/Knots/obj/Debug/net9.0/Knots.csproj.AssemblyReference.cache differ diff --git a/Knots/obj/Knots.csproj.nuget.dgspec.json b/Knots/obj/Knots.csproj.nuget.dgspec.json index 707be77..2d7f1fb 100644 --- a/Knots/obj/Knots.csproj.nuget.dgspec.json +++ b/Knots/obj/Knots.csproj.nuget.dgspec.json @@ -1,20 +1,20 @@ { "format": 1, "restore": { - "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj": {} + "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj": {} }, "projects": { - "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj": { + "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", + "projectUniqueName": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj", "projectName": "Knots", - "projectPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", - "packagesPath": "/home/carteronm@stsio.lan/.nuget/packages/", - "outputPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/", + "projectPath": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj", + "packagesPath": "/home/oistig@stsio.lan/.nuget/packages/", + "outputPath": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/obj/", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config" + "/home/oistig@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net9.0" @@ -90,7 +90,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/home/carteronm@stsio.lan/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/home/oistig@stsio.lan/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Knots/obj/Knots.csproj.nuget.g.props b/Knots/obj/Knots.csproj.nuget.g.props index 208ec6e..991ecdb 100644 --- a/Knots/obj/Knots.csproj.nuget.g.props +++ b/Knots/obj/Knots.csproj.nuget.g.props @@ -4,13 +4,13 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/carteronm@stsio.lan/.nuget/packages/ - /home/carteronm@stsio.lan/.nuget/packages/ + /home/oistig@stsio.lan/.nuget/packages/ + /home/oistig@stsio.lan/.nuget/packages/ PackageReference 7.0.0 - + @@ -18,6 +18,6 @@ - /home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + /home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 \ No newline at end of file diff --git a/Knots/obj/project.assets.json b/Knots/obj/project.assets.json index 1a4e0d4..e2f3b0b 100644 --- a/Knots/obj/project.assets.json +++ b/Knots/obj/project.assets.json @@ -5732,19 +5732,19 @@ ] }, "packageFolders": { - "/home/carteronm@stsio.lan/.nuget/packages/": {} + "/home/oistig@stsio.lan/.nuget/packages/": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", + "projectUniqueName": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj", "projectName": "Knots", - "projectPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", - "packagesPath": "/home/carteronm@stsio.lan/.nuget/packages/", - "outputPath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/", + "projectPath": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj", + "packagesPath": "/home/oistig@stsio.lan/.nuget/packages/", + "outputPath": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/obj/", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/carteronm@stsio.lan/.nuget/NuGet/NuGet.Config" + "/home/oistig@stsio.lan/.nuget/NuGet/NuGet.Config" ], "originalTargetFrameworks": [ "net9.0" @@ -5820,7 +5820,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/home/carteronm@stsio.lan/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/home/oistig@stsio.lan/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Knots/obj/project.nuget.cache b/Knots/obj/project.nuget.cache index 37dda8f..ab79ce1 100644 --- a/Knots/obj/project.nuget.cache +++ b/Knots/obj/project.nuget.cache @@ -1,115 +1,115 @@ { "version": 2, - "dgSpecHash": "qm+jIhY7MyQ=", + "dgSpecHash": "dVyDYKZ/S4U=", "success": true, - "projectFilePath": "/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj", + "projectFilePath": "/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj", "expectedPackageFiles": [ - "/home/carteronm@stsio.lan/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints/8.0.1/fastendpoints.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.attributes/8.0.1/fastendpoints.attributes.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.core/8.0.1/fastendpoints.core.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.jobqueues/8.0.1/fastendpoints.jobqueues.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.messaging/8.0.1/fastendpoints.messaging.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.messaging.core/8.0.1/fastendpoints.messaging.core.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fastendpoints.swagger/8.0.1/fastendpoints.swagger.8.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/fluentvalidation/12.1.1/fluentvalidation.12.1.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.3.9/microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.features/2.3.0/microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/9.0.8/microsoft.aspnetcore.openapi.9.0.8.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.build.framework/17.8.43/microsoft.build.framework.17.8.43.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.csharp/4.5.0/microsoft.csharp.4.5.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient/5.1.6/microsoft.data.sqlclient.5.1.6.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.1/microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore/9.0.14/microsoft.entityframeworkcore.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.14/microsoft.entityframeworkcore.abstractions.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.14/microsoft.entityframeworkcore.analyzers.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.design/9.0.14/microsoft.entityframeworkcore.design.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.14/microsoft.entityframeworkcore.relational.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.sqlserver/9.0.14/microsoft.entityframeworkcore.sqlserver.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.14/microsoft.extensions.caching.abstractions.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.caching.memory/9.0.14/microsoft.extensions.caching.memory.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.3/microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.14/microsoft.extensions.dependencyinjection.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.dependencymodel/9.0.14/microsoft.extensions.dependencymodel.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.3/microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.3/microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.3/microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging/9.0.14/microsoft.extensions.logging.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identity.client/4.61.3/microsoft.identity.client.4.61.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.abstractions/6.35.0/microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.35.0/microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.logging/6.35.0/microsoft.identitymodel.logging.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.annotations/11.5.2/njsonschema.annotations.11.5.2.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.newtonsoftjson/11.5.2/njsonschema.newtonsoftjson.11.5.2.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/njsonschema.yaml/11.5.2/njsonschema.yaml.11.5.2.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.annotations/14.6.3/nswag.annotations.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.aspnetcore/14.6.3/nswag.aspnetcore.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.core/14.6.3/nswag.core.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.core.yaml/14.6.3/nswag.core.yaml.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.generation/14.6.3/nswag.generation.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/nswag.generation.aspnetcore/14.6.3/nswag.generation.aspnetcore.14.6.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.collections.immutable/7.0.0/system.collections.immutable.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.diagnostics.diagnosticsource/10.0.3/system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.formats.asn1/9.0.14/system.formats.asn1.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.reflection.metadata/7.0.0/system.reflection.metadata.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.text.json/9.0.14/system.text.json.9.0.14.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512", - "/home/carteronm@stsio.lan/.nuget/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512" + "/home/oistig@stsio.lan/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints/8.0.1/fastendpoints.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.attributes/8.0.1/fastendpoints.attributes.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.core/8.0.1/fastendpoints.core.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.jobqueues/8.0.1/fastendpoints.jobqueues.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.messaging/8.0.1/fastendpoints.messaging.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.messaging.core/8.0.1/fastendpoints.messaging.core.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fastendpoints.swagger/8.0.1/fastendpoints.swagger.8.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/fluentvalidation/12.1.1/fluentvalidation.12.1.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.3.9/microsoft.aspnetcore.http.abstractions.2.3.9.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.aspnetcore.http.features/2.3.0/microsoft.aspnetcore.http.features.2.3.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.aspnetcore.openapi/9.0.8/microsoft.aspnetcore.openapi.9.0.8.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.build.framework/17.8.43/microsoft.build.framework.17.8.43.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.csharp/4.5.0/microsoft.csharp.4.5.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.data.sqlclient/5.1.6/microsoft.data.sqlclient.5.1.6.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.1/microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore/9.0.14/microsoft.entityframeworkcore.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.14/microsoft.entityframeworkcore.abstractions.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.14/microsoft.entityframeworkcore.analyzers.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.design/9.0.14/microsoft.entityframeworkcore.design.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.14/microsoft.entityframeworkcore.relational.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.entityframeworkcore.sqlserver/9.0.14/microsoft.entityframeworkcore.sqlserver.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.14/microsoft.extensions.caching.abstractions.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.caching.memory/9.0.14/microsoft.extensions.caching.memory.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.3/microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.14/microsoft.extensions.dependencyinjection.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.dependencymodel/9.0.14/microsoft.extensions.dependencymodel.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.3/microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.3/microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.3/microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.logging/9.0.14/microsoft.extensions.logging.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identity.client/4.61.3/microsoft.identity.client.4.61.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.abstractions/6.35.0/microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.35.0/microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.logging/6.35.0/microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/njsonschema.annotations/11.5.2/njsonschema.annotations.11.5.2.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/njsonschema.newtonsoftjson/11.5.2/njsonschema.newtonsoftjson.11.5.2.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/njsonschema.yaml/11.5.2/njsonschema.yaml.11.5.2.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.annotations/14.6.3/nswag.annotations.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.aspnetcore/14.6.3/nswag.aspnetcore.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.core/14.6.3/nswag.core.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.core.yaml/14.6.3/nswag.core.yaml.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.generation/14.6.3/nswag.generation.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/nswag.generation.aspnetcore/14.6.3/nswag.generation.aspnetcore.14.6.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.collections.immutable/7.0.0/system.collections.immutable.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.diagnostics.diagnosticsource/10.0.3/system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.formats.asn1/9.0.14/system.formats.asn1.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.reflection.metadata/7.0.0/system.reflection.metadata.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.text.json/9.0.14/system.text.json.9.0.14.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512", + "/home/oistig@stsio.lan/.nuget/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/Knots/obj/project.packagespec.json b/Knots/obj/project.packagespec.json index 7670894..75752f8 100644 --- a/Knots/obj/project.packagespec.json +++ b/Knots/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","projectName":"Knots","projectPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/Knots.csproj","outputPath":"/home/carteronm@stsio.lan/RiderProjects/Knots/Knots/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[9.0.8, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[9.0.14, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/carteronm@stsio.lan/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj","projectName":"Knots","projectPath":"/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/Knots.csproj","outputPath":"/home/oistig@stsio.lan/RiderProjects/KnotsProject/Knots/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"FastEndpoints":{"target":"Package","version":"[8.0.1, )"},"FastEndpoints.Swagger":{"target":"Package","version":"[8.0.1, )"},"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[9.0.8, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.14, )"},"Microsoft.EntityFrameworkCore.SqlServer":{"target":"Package","version":"[9.0.14, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/oistig@stsio.lan/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/Knots/obj/rider.project.model.nuget.info b/Knots/obj/rider.project.model.nuget.info index 1308342..4baa17f 100644 --- a/Knots/obj/rider.project.model.nuget.info +++ b/Knots/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17733256240434255 \ No newline at end of file +17733261452650947 \ No newline at end of file diff --git a/Knots/obj/rider.project.restore.info b/Knots/obj/rider.project.restore.info index 8c86e3b..43b59e3 100644 --- a/Knots/obj/rider.project.restore.info +++ b/Knots/obj/rider.project.restore.info @@ -1 +1 @@ -17733256270194255 \ No newline at end of file +17733261476890947 \ No newline at end of file