Skip to content

Commit

Permalink
add dicom to csv pipeline component
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Feb 3, 2025
1 parent 52e9e79 commit 60da60e
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 11 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
id: version
shell: cmd
run: |
for /f tokens^=1^,2^ delims^=^" %%i in (SharedAssemblyInfo.cs) do @if "%%i"=="[assembly: AssemblyVersion(" echo version=%%j>> %GITHUB_OUTPUT%
perl -ne "print """rdmpversion=""".$1."""\n""" if /version>(.+)</i" RDMP\directory.build.props >>%GITHUB_OUTPUT%
perl getversions.pl
perl getversions.pl >> %GITHUB_OUTPUT%
- name: Fetch RDMP latest tag
run: |
cd RDMP
git fetch --unshallow --tags
git checkout v${{steps.version.outputs.rdmpversion}}
cd ..
- name: Install MS SQL 2019
uses: crazy-max/ghaction-chocolatey@v3
with:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [7.1.4] - Unreleased

- Add DicomToCSV pipeline component

## [7.1.3] 2024-12-02

Expand Down
8 changes: 4 additions & 4 deletions Rdmp.Dicom.Tests/Rdmp.Dicom.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="HIC.BadMedicine.Dicom" Version="0.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.4.0">
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="NunitXml.TestLogger" Version="4.1.0" />
<PackageReference Include="NunitXml.TestLogger" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="TestDatabases.txt">
Expand Down
3 changes: 3 additions & 0 deletions Rdmp.Dicom.UI/TagColumnAdderUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Windows.Forms;
using Rdmp.Core.Curation.Data;
using Rdmp.Dicom.TagPromotionSchema;
using System.ComponentModel;

namespace Rdmp.Dicom.UI;

Expand Down Expand Up @@ -37,7 +38,9 @@ private void cbxTag_SelectedIndexChanged(object sender, EventArgs e)
}
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string ColumnName { get; private set; }
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string ColumnDataType { get; private set; }

private void btnOk_Click(object sender, EventArgs e)
Expand Down
2 changes: 2 additions & 0 deletions Rdmp.Dicom.UI/TagElevationXmlUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Runtime.Versioning;
using System.Windows.Forms;
using Rdmp.UI.ScintillaHelper;
using System.ComponentModel;

namespace Rdmp.Dicom.UI;

Expand Down Expand Up @@ -71,6 +72,7 @@ private void RunChecks()
}
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ICatalogueRepository CatalogueRepository { get;set; }

public ICustomUIDrivenClass GetFinalStateOfUnderlyingObject()
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyCulture("")]

// These should be replaced with correct values by the release process
[assembly: AssemblyVersion("7.1.3")]
[assembly: AssemblyFileVersion("7.1.3")]
[assembly: AssemblyInformationalVersion("7.1.3")]
[assembly: AssemblyVersion("7.1.4")]
[assembly: AssemblyFileVersion("7.1.4")]
[assembly: AssemblyInformationalVersion("7.1.4")]
[assembly: InternalsVisibleTo("Rdmp.Dicom.Tests")]

0 comments on commit 60da60e

Please sign in to comment.