Skip to content

Commit

Permalink
Merge pull request #111 from HicServices/develop
Browse files Browse the repository at this point in the history
Release v2.1.0 to main
  • Loading branch information
jas88 committed Feb 8, 2022
2 parents 2494c67 + 1c4c4cd commit 67c1916
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 61 deletions.
31 changes: 0 additions & 31 deletions .appveyor.yml

This file was deleted.

18 changes: 14 additions & 4 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,20 @@ jobs:
- name: Restore NuGet
run: nuget restore

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test

# Execute all unit tests in the solution via coverlet for coverage info
- name : coverlet
uses: b3b00/coverlet-action@1.1.0
with:
testProject: 'Tests/Tests.csproj'
output: 'lcov.info'
outputFormat: 'lcov'
excludes: '[test]test.*'
- name: Upload coverage report
uses: coverallsapp/github-action@v1.1.1
with:
github-token: ${{secrets.GITHUB_TOKEN }}
path-to-lcov: Tests/lcov.info

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: dotnet build -c Release --verbosity quiet
Expand Down
26 changes: 22 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
## [2.1.0] - 2022-02-08

- Fixed navigate to online templates not working after dotnet core update
### Changes

- Using .Net 5.0

### Dependency updates

- Bump CsvHelper from 26.1.0 to 27.2.1
- Bump HIC.DicomTypeTranslation from 2.3.2 to 3.0.0
- Bump DockPanelSuite from 3.1.0-beta7 to 3.1.0
- Bump fo-dicom from 4.0.7 to 4.0.8
- Bump fo-dicom.Drawing from 4.0.7 to 4.0.8
- Bump HIC.DicomTypeTranslation from 2.3.2 to 3.0.0
- Bump System.Drawing.Common from 5.0.2 to 6.0.0
- Bump fernandreu.ScintillaNET from 4.0.4 to 4.2.0

## [2.0.0] - 2020-03-26
## [2.0.0] - 2021-03-27

### Fixed

- Fixed navigate to online templates not working after dotnet core update
-
### Added

- Added logging to ProcessJob for outPath in DicomRepopulatorProcessor
Expand Down Expand Up @@ -59,7 +76,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial version


[Unreleased]: https://github.com/HicServices/DicomTemplateBuilder/compare/v2.0.0...develop
[Unreleased]: https://github.com/HicServices/DicomTemplateBuilder/compare/v2.1.0...develop
[2.1.0]: https://github.com/HicServices/DicomTemplateBuilder/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/HicServices/DicomTemplateBuilder/compare/v1.1.0...v2.0.0
[1.1.0]: https://github.com/HicServices/DicomTemplateBuilder/compare/v1.0.2...v1.1.0
[1.0.2]: https://github.com/HicServices/DicomTemplateBuilder/compare/v1.0.1...v1.0.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DicomTemplateBuilder

[![Build Status](https://travis-ci.org/HicServices/DicomTemplateBuilder.svg?branch=master)](https://travis-ci.org/HicServices/DicomTemplateBuilder) [![Total alerts](https://img.shields.io/lgtm/alerts/g/HicServices/DicomTemplateBuilder.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/HicServices/DicomTemplateBuilder/alerts/)
[![codecov](https://codecov.io/gh/HicServices/DicomTemplateBuilder/branch/develop/graph/badge.svg)](https://codecov.io/gh/HicServices/DicomTemplateBuilder/)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/HicServices/DicomTemplateBuilder.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/HicServices/DicomTemplateBuilder/alerts/)
[![Coverage Status](https://coveralls.io/repos/github/HicServices/DicomTemplateBuilder/badge.svg?branch=feature/coverage)](https://coveralls.io/github/HicServices/DicomTemplateBuilder?branch=feature/coverage)

[Dicom Template Builder](https://github.com/HicServices/DicomTemplateBuilder/releases) is a small windows application to assist researchers in building simple relational database schemas for storing DICOM images.

Expand Down
6 changes: 3 additions & 3 deletions Repopulator/Repopulator.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>3b0e5ac1-5439-470c-832d-7de566b22cd8</ProjectGuid>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<AssemblyTitle>Repopulator</AssemblyTitle>
<Product>Repopulator</Product>
<Copyright>Copyright © 2019</Copyright>
Expand All @@ -14,8 +14,8 @@
<Content Include="..\TemplateBuilder\NLog.config" Link="NLog.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="26.1.0" />
<PackageReference Include="HIC.DicomTypeTranslation" Version="2.3.2" />
<PackageReference Include="CsvHelper" Version="27.2.1" />
<PackageReference Include="HIC.DicomTypeTranslation" Version="3.0.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.*" />
<PackageReference Include="Microsoft.CSharp" Version="4.*" />
<PackageReference Include="System.Net.Http" Version="4.*" />
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyCulture("")]

// These should be replaced with correct values by the release process
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0")]
[assembly: AssemblyVersion("2.1.0")]
[assembly: AssemblyFileVersion("2.1.0")]
[assembly: AssemblyInformationalVersion("2.1.0")]
16 changes: 8 additions & 8 deletions TemplateBuilder/TemplateBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<PackageReference Include="CsvHelper" Version="26.1.0" />
<PackageReference Include="DockPanelSuite" Version="3.1.0-beta7" />
<PackageReference Include="DockPanelSuite.ThemeVS2015" Version="3.1.0-beta7" />
<PackageReference Include="fo-dicom" Version="4.0.7" />
<PackageReference Include="fo-dicom.Drawing" Version="4.0.7" />
<PackageReference Include="CsvHelper" Version="27.2.1" />
<PackageReference Include="DockPanelSuite" Version="3.1.0" />
<PackageReference Include="DockPanelSuite.ThemeVS2015" Version="3.1.0" />
<PackageReference Include="fo-dicom" Version="5.0.2" />
<PackageReference Include="fo-dicom.Drawing" Version="4.0.8" />
<PackageReference Include="HIC.BadMedicine.Dicom" Version="0.0.9" />
<PackageReference Include="HIC.DicomTypeTranslation" Version="2.3.2" />
<PackageReference Include="HIC.DicomTypeTranslation" Version="3.0.0" />
<PackageReference Include="ObjectListView.Official" Version="2.9.1" />
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="System.Resources.Extensions" Version="4.6.0" />
<PackageReference Include="fernandreu.ScintillaNET" Version="4.0.4" />
<PackageReference Include="fernandreu.ScintillaNET" Version="4.2.0" />
<ProjectReference Include="..\Repopulator\Repopulator.csproj" />

<Compile Update="Properties\Settings.Designer.cs">
Expand Down
15 changes: 9 additions & 6 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@
</PropertyGroup>
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<ItemGroup>
<PackageReference Include="HIC.DicomTypeTranslation" Version="2.3.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="HIC.DicomTypeTranslation" Version="3.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NunitXml.TestLogger" Version="3.0.97" />
<PackageReference Include="OpenCover" Version="4.7.922" />
<PackageReference Include="NunitXml.TestLogger" Version="3.0.117" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Repopulator\Repopulator.csproj" />
Expand Down

0 comments on commit 67c1916

Please sign in to comment.