diff --git a/src/Api/Rest/InferenceRequest.cs b/src/Api/Rest/InferenceRequest.cs index 0302279bf..cca4558a3 100644 --- a/src/Api/Rest/InferenceRequest.cs +++ b/src/Api/Rest/InferenceRequest.cs @@ -168,7 +168,7 @@ public InputConnectionDetails? Application { get { - return InputResources.FirstOrDefault(predicate => predicate.Interface == InputInterfaceType.Algorithm)?.ConnectionDetails; + return InputResources?.FirstOrDefault(predicate => predicate.Interface == InputInterfaceType.Algorithm)?.ConnectionDetails; } } @@ -232,13 +232,13 @@ private void ValidateOUtputResources(List errors) { Guard.Against.Null(errors); - if (InputMetadata.Inputs.IsNullOrEmpty()) + if (InputMetadata is not null && InputMetadata.Inputs.IsNullOrEmpty()) { errors.Add("Request has no `inputMetadata` defined. At least one `inputs` or `inputMetadata` required."); } - else + else if (InputMetadata!.Inputs is not null) { - foreach (var inputDetails in InputMetadata.Inputs) + foreach (var inputDetails in InputMetadata!.Inputs) { CheckInputMetadataDetails(inputDetails, errors); } @@ -249,7 +249,7 @@ private void ValidateInputMetadata(List errors) { Guard.Against.Null(errors); - foreach (var output in OutputResources) + foreach (var output in OutputResources ?? Enumerable.Empty()) { if (output.Interface == InputInterfaceType.DicomWeb) { @@ -267,12 +267,12 @@ private void ValidateInputResources(List errors) Guard.Against.Null(errors); if (InputResources.IsNullOrEmpty() || - !InputResources.Any(predicate => predicate.Interface != InputInterfaceType.Algorithm)) + !InputResources!.Any(predicate => predicate.Interface != InputInterfaceType.Algorithm)) { errors.Add("No 'inputResources' specified."); } - foreach (var input in InputResources) + foreach (var input in InputResources ?? Enumerable.Empty()) { if (input.Interface == InputInterfaceType.DicomWeb) { @@ -326,7 +326,7 @@ private static void CheckInputMetadataWithTypeFhirResource(InferenceRequestDetai { errors.Add("Request type is set to `FHIR_RESOURCE` but no FHIR `resources` defined."); } - else + else if (details.Resources is not null) { errors.AddRange(details.Resources.Where(resource => string.IsNullOrWhiteSpace(resource.Type)).Select(resource => "A FHIR resource type cannot be empty.")); } @@ -341,7 +341,7 @@ private static void CheckInputMetadataWithTypDicomUid(InferenceRequestDetails de { errors.Add("Request type is set to `DICOM_UID` but no `studies` defined."); } - else + else if (details.Studies is not null) { foreach (var study in details.Studies) { @@ -358,7 +358,7 @@ private static void CheckInputMetadataWithTypDicomUid(InferenceRequestDetails de private static void CheckInputMetadataWithTypeDicomSeries(List errors, RequestedStudy study) { - foreach (var series in study.Series) + foreach (var series in study.Series ?? Enumerable.Empty()) { if (string.IsNullOrWhiteSpace(series.SeriesInstanceUid)) { @@ -366,31 +366,32 @@ private static void CheckInputMetadataWithTypeDicomSeries(List errors, R } if (series.Instances is null) continue; + errors.AddRange( series.Instances .Where( instance => instance.SopInstanceUid.IsNullOrEmpty() || - instance.SopInstanceUid.Any(p => string.IsNullOrWhiteSpace(p))) + instance.SopInstanceUid!.Any(p => string.IsNullOrWhiteSpace(p))) .Select(instance => "`SOPInstanceUID` cannot be empty.")); } } - private static void CheckFhirConnectionDetails(string source, List errors, DicomWebConnectionDetails connection) + private static void CheckFhirConnectionDetails(string source, List errors, DicomWebConnectionDetails? connection) { - if (!Uri.IsWellFormedUriString(connection.Uri, UriKind.Absolute)) + if (connection is not null && !Uri.IsWellFormedUriString(connection.Uri, UriKind.Absolute)) { errors.Add($"The provided URI '{connection.Uri}' in `{source}` is not well formed."); } } - private static void CheckDicomWebConnectionDetails(string source, List errors, DicomWebConnectionDetails connection) + private static void CheckDicomWebConnectionDetails(string source, List errors, DicomWebConnectionDetails? connection) { - if (connection.AuthType != ConnectionAuthType.None && string.IsNullOrWhiteSpace(connection.AuthId)) + if (connection is not null && connection.AuthType != ConnectionAuthType.None && string.IsNullOrWhiteSpace(connection.AuthId)) { errors.Add($"One of the '{source}' has authType of '{connection.AuthType:F}' but does not include a valid value for 'authId'"); } - if (!Uri.IsWellFormedUriString(connection.Uri, UriKind.Absolute)) + if (connection is not null && !Uri.IsWellFormedUriString(connection.Uri, UriKind.Absolute)) { errors.Add($"The provided URI '{connection.Uri}' is not well formed."); } diff --git a/src/Api/Test/packages.lock.json b/src/Api/Test/packages.lock.json index 7cf779074..1babfad02 100644 --- a/src/Api/Test/packages.lock.json +++ b/src/Api/Test/packages.lock.json @@ -1267,22 +1267,22 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/Api/packages.lock.json b/src/Api/packages.lock.json index dea82ff8b..5a6e87970 100644 --- a/src/Api/packages.lock.json +++ b/src/Api/packages.lock.json @@ -279,12 +279,12 @@ "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/CLI/Test/packages.lock.json b/src/CLI/Test/packages.lock.json index b86fc32c8..bfff2f281 100644 --- a/src/CLI/Test/packages.lock.json +++ b/src/CLI/Test/packages.lock.json @@ -1553,55 +1553,55 @@ "mig-cli": { "type": "Project", "dependencies": { - "Crayon": "[2.0.69, )", - "Docker.DotNet": "[3.125.12, )", - "Microsoft.Extensions.Hosting": "[6.0.1, )", - "Microsoft.Extensions.Logging": "[6.0.0, )", - "Microsoft.Extensions.Logging.Console": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Client": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "System.CommandLine": "[2.0.0-beta4.22272.1, )", - "System.CommandLine.Hosting": "[0.4.0-alpha.22272.1, )", - "System.CommandLine.Rendering": "[0.4.0-alpha.22272.1, )", - "System.IO.Abstractions": "[17.2.3, )" + "Crayon": "2.0.69", + "Docker.DotNet": "3.125.12", + "Microsoft.Extensions.Hosting": "6.0.1", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Client": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "System.CommandLine": "2.0.0-beta4.22272.1", + "System.CommandLine.Hosting": "0.4.0-alpha.22272.1", + "System.CommandLine.Rendering": "0.4.0-alpha.22272.1", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.client": { "type": "Project", "dependencies": { - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )" + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/CLI/packages.lock.json b/src/CLI/packages.lock.json index cdcc36d9f..f5245a9a1 100644 --- a/src/CLI/packages.lock.json +++ b/src/CLI/packages.lock.json @@ -1421,38 +1421,38 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.client": { "type": "Project", "dependencies": { - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )" + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/Client.Common/Test/packages.lock.json b/src/Client.Common/Test/packages.lock.json index f377bdbf2..0c9173250 100644 --- a/src/Client.Common/Test/packages.lock.json +++ b/src/Client.Common/Test/packages.lock.json @@ -1086,8 +1086,8 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } } } diff --git a/src/Client/Test/packages.lock.json b/src/Client/Test/packages.lock.json index 0f09c250f..1c37f572c 100644 --- a/src/Client/Test/packages.lock.json +++ b/src/Client/Test/packages.lock.json @@ -1668,138 +1668,138 @@ "monai.deploy.informaticsgateway": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "DotNext.Threading": "[4.7.4, )", - "HL7-dotnetcore": "[2.29.0, )", - "Karambolo.Extensions.Logging.File": "[3.3.1, )", - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Microsoft.Extensions.DependencyInjection.Abstractions": "[6.0.0, )", - "Microsoft.Extensions.Hosting": "[6.0.1, )", - "Microsoft.Extensions.Logging": "[6.0.0, )", - "Microsoft.Extensions.Logging.Console": "[6.0.0, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.DicomWeb.Client": "[1.0.0, )", - "Monai.Deploy.Messaging.RabbitMQ": "[0.1.19, )", - "Monai.Deploy.Security": "[0.1.3, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "Monai.Deploy.Storage.MinIO": "[0.2.13, )", - "NLog": "[5.1.0, )", - "NLog.Web.AspNetCore": "[5.2.0, )", - "Polly": "[7.2.3, )", - "Swashbuckle.AspNetCore": "[6.4.0, )", - "fo-dicom": "[5.0.3, )", - "fo-dicom.NLog": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "DotNext.Threading": "4.7.4", + "HL7-dotnetcore": "2.29.0", + "Karambolo.Extensions.Logging.File": "3.3.1", + "Microsoft.EntityFrameworkCore": "6.0.12", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Hosting": "6.0.1", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "1.0.0", + "Monai.Deploy.InformaticsGateway.DicomWeb.Client": "1.0.0", + "Monai.Deploy.Messaging.RabbitMQ": "0.1.19", + "Monai.Deploy.Security": "0.1.3", + "Monai.Deploy.Storage": "0.2.13", + "Monai.Deploy.Storage.MinIO": "0.2.13", + "NLog": "5.1.0", + "NLog.Web.AspNetCore": "5.2.0", + "Polly": "7.2.3", + "Swashbuckle.AspNetCore": "6.4.0", + "fo-dicom": "5.0.3", + "fo-dicom.NLog": "5.0.3" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.client": { "type": "Project", "dependencies": { - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )" + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[6.0.2, )", - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Microsoft.Extensions.Configuration": "[6.0.1, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[6.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[6.0.0, )", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[6.0.11, )", - "Microsoft.Extensions.Options.ConfigurationExtensions": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.MongoDB": "[1.0.0, )" + "AspNetCore.HealthChecks.MongoDb": "6.0.2", + "Microsoft.EntityFrameworkCore": "6.0.12", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "6.0.11", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.MongoDB": "1.0.0" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", - "Microsoft.Extensions.Configuration": "[6.0.1, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[6.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.18.0, )", - "MongoDB.Driver.Core": "[2.18.0, )" + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0", + "MongoDB.Driver": "2.18.0", + "MongoDB.Driver.Core": "2.18.0" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Microsoft.Net.Http.Headers": "[2.2.8, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "System.Linq.Async": "[6.0.1, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.8", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0", + "System.Linq.Async": "6.0.1", + "fo-dicom": "5.0.3" } } } diff --git a/src/Client/packages.lock.json b/src/Client/packages.lock.json index 973d634a3..e1efacf6b 100644 --- a/src/Client/packages.lock.json +++ b/src/Client/packages.lock.json @@ -1182,29 +1182,29 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/Common/Test/packages.lock.json b/src/Common/Test/packages.lock.json index 37bb2b749..519ca4b70 100644 --- a/src/Common/Test/packages.lock.json +++ b/src/Common/Test/packages.lock.json @@ -1163,12 +1163,12 @@ "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/Common/packages.lock.json b/src/Common/packages.lock.json index 84079d2b5..9a2b36402 100644 --- a/src/Common/packages.lock.json +++ b/src/Common/packages.lock.json @@ -143,4 +143,4 @@ } } } -} +} \ No newline at end of file diff --git a/src/Configuration/Test/packages.lock.json b/src/Configuration/Test/packages.lock.json index e29ab9d89..6dd3029e8 100644 --- a/src/Configuration/Test/packages.lock.json +++ b/src/Configuration/Test/packages.lock.json @@ -1280,34 +1280,34 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } } } } -} +} \ No newline at end of file diff --git a/src/Configuration/packages.lock.json b/src/Configuration/packages.lock.json index fe3345b4b..212a6d3ae 100644 --- a/src/Configuration/packages.lock.json +++ b/src/Configuration/packages.lock.json @@ -280,22 +280,22 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } } } } -} +} \ No newline at end of file diff --git a/src/Database/Api/Test/packages.lock.json b/src/Database/Api/Test/packages.lock.json index 359852ddc..817c91935 100644 --- a/src/Database/Api/Test/packages.lock.json +++ b/src/Database/Api/Test/packages.lock.json @@ -1301,43 +1301,43 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } } } } -} +} \ No newline at end of file diff --git a/src/Database/Api/packages.lock.json b/src/Database/Api/packages.lock.json index 382d326eb..f42d478d5 100644 --- a/src/Database/Api/packages.lock.json +++ b/src/Database/Api/packages.lock.json @@ -323,34 +323,34 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } } } } -} +} \ No newline at end of file diff --git a/src/Database/EntityFramework/Test/packages.lock.json b/src/Database/EntityFramework/Test/packages.lock.json index 0c7f5bcd4..de72708b0 100644 --- a/src/Database/EntityFramework/Test/packages.lock.json +++ b/src/Database/EntityFramework/Test/packages.lock.json @@ -1461,56 +1461,56 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", - "Microsoft.Extensions.Configuration": "[6.0.1, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[6.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0" } } } } -} +} \ No newline at end of file diff --git a/src/Database/EntityFramework/packages.lock.json b/src/Database/EntityFramework/packages.lock.json index e6ce5af3f..8df7a1ecc 100644 --- a/src/Database/EntityFramework/packages.lock.json +++ b/src/Database/EntityFramework/packages.lock.json @@ -470,43 +470,43 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } } } } -} +} \ No newline at end of file diff --git a/src/Database/MongoDB/Integration.Test/packages.lock.json b/src/Database/MongoDB/Integration.Test/packages.lock.json index fc6c40bac..f370bb2c9 100644 --- a/src/Database/MongoDB/Integration.Test/packages.lock.json +++ b/src/Database/MongoDB/Integration.Test/packages.lock.json @@ -1430,51 +1430,51 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.18.0, )", - "MongoDB.Driver.Core": "[2.18.0, )" + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0", + "MongoDB.Driver": "2.18.0", + "MongoDB.Driver.Core": "2.18.0" } } } } -} +} \ No newline at end of file diff --git a/src/Database/MongoDB/packages.lock.json b/src/Database/MongoDB/packages.lock.json index f435fd2eb..166175a72 100644 --- a/src/Database/MongoDB/packages.lock.json +++ b/src/Database/MongoDB/packages.lock.json @@ -408,43 +408,43 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } } } } -} +} \ No newline at end of file diff --git a/src/Database/packages.lock.json b/src/Database/packages.lock.json index fea774f3a..8dcbe8460 100644 --- a/src/Database/packages.lock.json +++ b/src/Database/packages.lock.json @@ -587,64 +587,64 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )" + "Macross.Json.Extensions": "3.0.0", + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.12", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.IO.Abstractions": "[17.2.3, )", - "System.Threading.Tasks.Dataflow": "[6.0.0, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "System.IO.Abstractions": "17.2.3", + "System.Threading.Tasks.Dataflow": "6.0.0", + "fo-dicom": "5.0.3" } }, "monai.deploy.informaticsgateway.configuration": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "[6.0.3, )", - "Microsoft.Extensions.Options": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[0.1.19, )", - "Monai.Deploy.Storage": "[0.2.13, )", - "System.IO.Abstractions": "[17.2.3, )" + "Microsoft.Extensions.Logging.Abstractions": "6.0.3", + "Microsoft.Extensions.Options": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Common": "1.0.0", + "Monai.Deploy.Messaging": "0.1.19", + "Monai.Deploy.Storage": "0.2.13", + "System.IO.Abstractions": "17.2.3" } }, "monai.deploy.informaticsgateway.database.api": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Polly": "[7.2.3, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Polly": "7.2.3" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[6.0.12, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", - "Microsoft.Extensions.Configuration": "[6.0.1, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[6.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[6.0.0, )", - "Monai.Deploy.InformaticsGateway.Api": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )" + "Microsoft.EntityFrameworkCore": "6.0.12", + "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Monai.Deploy.InformaticsGateway.Api": "1.0.0", + "Monai.Deploy.InformaticsGateway.Configuration": "1.0.0", + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { - "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.18.0, )", - "MongoDB.Driver.Core": "[2.18.0, )" + "Monai.Deploy.InformaticsGateway.Database.Api": "1.0.0", + "MongoDB.Driver": "2.18.0", + "MongoDB.Driver.Core": "2.18.0" } } } } -} +} \ No newline at end of file diff --git a/src/DicomWebClient/CLI/packages.lock.json b/src/DicomWebClient/CLI/packages.lock.json index dcd37d8e5..a7d23637f 100644 --- a/src/DicomWebClient/CLI/packages.lock.json +++ b/src/DicomWebClient/CLI/packages.lock.json @@ -1474,20 +1474,20 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Microsoft.Net.Http.Headers": "[2.2.8, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "System.Linq.Async": "[6.0.1, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.8", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0", + "System.Linq.Async": "6.0.1", + "fo-dicom": "5.0.3" } } } diff --git a/src/DicomWebClient/Test/packages.lock.json b/src/DicomWebClient/Test/packages.lock.json index f6e6413f5..c4e8195b9 100644 --- a/src/DicomWebClient/Test/packages.lock.json +++ b/src/DicomWebClient/Test/packages.lock.json @@ -1208,20 +1208,20 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "Microsoft.AspNet.WebApi.Client": "[5.2.9, )", - "Microsoft.Extensions.Http": "[6.0.0, )", - "Microsoft.Net.Http.Headers": "[2.2.8, )", - "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "System.Linq.Async": "[6.0.1, )", - "fo-dicom": "[5.0.3, )" + "Ardalis.GuardClauses": "4.0.1", + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.8", + "Monai.Deploy.InformaticsGateway.Client.Common": "1.0.0", + "System.Linq.Async": "6.0.1", + "fo-dicom": "5.0.3" } } } diff --git a/src/DicomWebClient/packages.lock.json b/src/DicomWebClient/packages.lock.json index 4650e1b92..714d952dd 100644 --- a/src/DicomWebClient/packages.lock.json +++ b/src/DicomWebClient/packages.lock.json @@ -1254,8 +1254,8 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.0.1, )", - "System.Text.Json": "[6.0.7, )" + "Ardalis.GuardClauses": "4.0.1", + "System.Text.Json": "6.0.7" } } } diff --git a/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj b/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj index 658d201d5..2ee72c63a 100644 --- a/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj +++ b/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj @@ -1,4 +1,4 @@ -