Skip to content

Commit 3896708

Browse files
committed
fix up some build warnings
Signed-off-by: Neil South <[email protected]>
1 parent dfa94b5 commit 3896708

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

src/Api/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
},
4242
"Microsoft.NET.ILLink.Tasks": {
4343
"type": "Direct",
44-
"requested": "[8.0.6, )",
45-
"resolved": "8.0.6",
46-
"contentHash": "E+lDylsTeP4ZiDmnEkiJ5wobnGaIJzFhOgZppznJCb69UZgbh6G3cfv1pnLDLLBx6JAgl0kAlnINDeT3uCuczQ=="
44+
"requested": "[8.0.7, )",
45+
"resolved": "8.0.7",
46+
"contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ=="
4747
},
4848
"Monai.Deploy.Messaging": {
4949
"type": "Direct",

src/CLI/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
},
3636
"Microsoft.NET.ILLink.Tasks": {
3737
"type": "Direct",
38-
"requested": "[8.0.6, )",
39-
"resolved": "8.0.6",
40-
"contentHash": "E+lDylsTeP4ZiDmnEkiJ5wobnGaIJzFhOgZppznJCb69UZgbh6G3cfv1pnLDLLBx6JAgl0kAlnINDeT3uCuczQ=="
38+
"requested": "[8.0.7, )",
39+
"resolved": "8.0.7",
40+
"contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ=="
4141
},
4242
"System.CommandLine.Hosting": {
4343
"type": "Direct",

src/Configuration/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"net8.0": {
55
"Microsoft.NET.ILLink.Tasks": {
66
"type": "Direct",
7-
"requested": "[8.0.6, )",
8-
"resolved": "8.0.6",
9-
"contentHash": "E+lDylsTeP4ZiDmnEkiJ5wobnGaIJzFhOgZppznJCb69UZgbh6G3cfv1pnLDLLBx6JAgl0kAlnINDeT3uCuczQ=="
7+
"requested": "[8.0.7, )",
8+
"resolved": "8.0.7",
9+
"contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ=="
1010
},
1111
"Ardalis.GuardClauses": {
1212
"type": "Transitive",

src/InformaticsGateway/Repositories/MonaiServiceLocator.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
using Microsoft.Extensions.Hosting;
2424
using Monai.Deploy.InformaticsGateway.Api.Rest;
2525
using Monai.Deploy.InformaticsGateway.Services.Common;
26-
using Monai.Deploy.InformaticsGateway.Services.Connectors;
2726

2827
namespace Monai.Deploy.InformaticsGateway.Repositories
2928
{
@@ -76,7 +75,7 @@ private static List<Type> LocateTypes()
7675
return services.Distinct().ToList();
7776
}
7877

79-
private IList<IMonaiService> LocateServices()
78+
private List<IMonaiService> LocateServices()
8079
{
8180
var list = new List<IMonaiService>();
8281
foreach (var t in _types)

src/InformaticsGateway/Test/Repositories/MonaiServiceLocatorTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
using System;
1818
using System.Collections.Generic;
19-
using DotNext.Collections.Generic;
20-
using Microsoft.Extensions.DependencyInjection;
2119
using Microsoft.Extensions.Hosting;
2220
using Monai.Deploy.InformaticsGateway.Api.Rest;
2321
using Monai.Deploy.InformaticsGateway.Repositories;

0 commit comments

Comments
 (0)