Skip to content

Commit

Permalink
Bump HIC.BadMedicine.Dicom from 0.0.16-rc1 to 0.0.16 (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 9, 2023
1 parent 89d057b commit 44cdc43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Rdmp.Dicom.Tests/Rdmp.Dicom.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
<ProjectReference Include="..\RDMP\Tests.Common\Tests.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HIC.BadMedicine.Dicom" Version="0.0.16-rc1" />
<PackageReference Include="HIC.BadMedicine.Dicom" Version="0.0.16" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
Expand Down
5 changes: 3 additions & 2 deletions Rdmp.Dicom.Tests/Unit/PacsFetch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using FellowOakDicom.Memory;
using FellowOakDicom.Network;
using FellowOakDicom.Network.Client;
using Microsoft.Extensions.Logging;
using NUnit.Framework;

namespace Rdmp.Dicom.Tests.Unit;
Expand All @@ -17,9 +18,9 @@ internal class PacsFetch
class QRService : DicomService, IDicomServiceProvider, IDicomCFindProvider, IDicomCEchoProvider,
IDicomCMoveProvider
{
private static readonly DicomServiceDependencies Deps = new(new ConsoleLogManager(),
private static readonly DicomServiceDependencies Dependencies = new(LoggerFactory.Create(builder=>builder.AddConsole()),
new DesktopNetworkManager(), new DefaultTranscoderManager(), new ArrayPoolMemoryProvider());
public QRService(INetworkStream stream, Encoding fallbackEncoding, Logger log) : base(stream, fallbackEncoding, log,Deps)
public QRService(INetworkStream stream, Encoding fallbackEncoding,Microsoft.Extensions.Logging.ILogger log) : base(stream, fallbackEncoding, log,Dependencies)
{
}

Expand Down

0 comments on commit 44cdc43

Please sign in to comment.