Skip to content

Commit 8c462a2

Browse files
authored
Merge pull request #41 from davebronson/remove-net-versions
Remove NET 5, 6, 7 targets. Increase version to 2.1.1. Remove CodeQ…
2 parents 2921ec9 + 197bb82 commit 8c462a2

File tree

6 files changed

+23
-95
lines changed

6 files changed

+23
-95
lines changed

.github/workflows/codeql.yml

Lines changed: 0 additions & 72 deletions
This file was deleted.

ClearHl7.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Global
4242
$4.scope = text/x-csharp
4343
$0.CSharpFormattingPolicy = $5
4444
$5.scope = text/x-csharp
45-
version = 2.1.0
45+
version = 2.1.1
4646
description = .NET HL7® library
4747
EndGlobalSection
4848
EndGlobal

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
.NET HL7® message generation and parsing library for the version 2.x standard
88

9-
Understanding and programmatically building HL7 messages can be difficult. clear-hl7-net takes pain out of this process by exposing an object hierarchy that is well structured, clearly named, and (most importantly) strongly-typed.
9+
Understanding and programmatically building HL7 messages can be difficult. clear-hl7-net takes pain out of this process by exposing an object hierarchy that is well structured, clearly named, and strongly-typed.
1010

1111
HL7® is the registered trademark of Health Level Seven International, and the use of this trademark does not constitute an endorsement by HL7.
1212

@@ -16,7 +16,7 @@ Upgrading from Version 1.x to Version 2? Please read some important notes about
1616
## Getting Started
1717
### Building clear-hl7-net
1818
1. Clone the source code: `git clone https://github.com/davebronson/clear-hl7-net.git`
19-
2. Open ClearHl7.sln in Visual Studio for Windows or Mac, or build from the command line
19+
2. Open ClearHl7.sln in Visual Studio or VS Code, or build from the command line
2020

2121
### Download From NuGet
2222
* https://www.nuget.org/packages/ClearHl7
@@ -25,9 +25,6 @@ Upgrading from Version 1.x to Version 2? Please read some important notes about
2525
### Targets
2626
* .NET Standard 2.0
2727
* .NET Standard 2.1
28-
* .NET 5
29-
* .NET 6
30-
* .NET 7
3128

3229
## Supported HL7 Versions
3330
Several versions exist for the HL7 Version 2.x messaging standard. clear-hl7-net supports the following:

src/ClearHl7.Codes/ClearHl7.Codes.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<CheckEolTargetFramework>false</CheckEolTargetFramework>
66
<Authors>Dave Bronson</Authors>
7-
<Copyright>Copyright © Dave Bronson 2020-2022</Copyright>
7+
<Copyright>Copyright © Dave Bronson 2020-2024</Copyright>
88
<PackageProjectUrl>https://github.com/davebronson/clear-hl7-net</PackageProjectUrl>
99
<Summary>Enumerated coded values for the HL7® standard</Summary>
1010
<PackageTags>hl7;hl7-builder;hl7-parser;hl7-message;hl7-generating;dotnet;healthcare;code;codesystem</PackageTags>
1111
<Title>ClearHL7.Codes</Title>
1212
<Description>Enumerated coded values for the HL7® standard</Description>
1313
<NeutralLanguage>en-US</NeutralLanguage>
14-
<PackageVersion>2.1.0</PackageVersion>
14+
<VersionPrefix>2.1.1</VersionPrefix>
15+
<PackageVersion>2.1.1</PackageVersion>
16+
<ReleaseVersion>2.1.1</ReleaseVersion>
1517
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1618
<PackOnBuild>true</PackOnBuild>
1719
<Owners>Dave Bronson</Owners>
18-
<ReleaseVersion>2.1.0</ReleaseVersion>
1920
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2021
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2122
<IncludeSymbols>true</IncludeSymbols>
@@ -34,7 +35,7 @@
3435
<None Remove="Microsoft.SourceLink.GitHub" />
3536
</ItemGroup>
3637
<ItemGroup>
37-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
38+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
3839
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3940
<PrivateAssets>all</PrivateAssets>
4041
</PackageReference>

src/ClearHl7/ClearHl7.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
55
<CheckEolTargetFramework>false</CheckEolTargetFramework>
66
<Authors>Dave Bronson</Authors>
7-
<Copyright>Copyright © Dave Bronson 2020-2022</Copyright>
7+
<Copyright>Copyright © Dave Bronson 2020-2024</Copyright>
88
<PackageProjectUrl>https://github.com/davebronson/clear-hl7-net</PackageProjectUrl>
99
<Summary>.NET HL7® message generation and parsing library for the version 2.x standard</Summary>
1010
<PackageTags>hl7;hl7-builder;hl7-parser;hl7-message;hl7-generating;hl7-parsing;dotnet;healthcare</PackageTags>
1111
<Title>ClearHL7</Title>
1212
<Description>.NET HL7® message generation and parsing library for the version 2.x standard. Please see important info about changes in V2: https://github.com/davebronson/clear-hl7-net/blob/master/Version2.md </Description>
1313
<NeutralLanguage>en-US</NeutralLanguage>
14-
<PackageVersion>2.1.0</PackageVersion>
14+
<VersionPrefix>2.1.1</VersionPrefix>
15+
<PackageVersion>2.1.1</PackageVersion>
16+
<ReleaseVersion>2.1.1</ReleaseVersion>
1517
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1618
<PackOnBuild>true</PackOnBuild>
1719
<Owners>Dave Bronson</Owners>
@@ -20,7 +22,7 @@
2022
<IncludeSymbols>true</IncludeSymbols>
2123
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2224
<Deterministic>true</Deterministic>
23-
<ReleaseVersion>2.1.0</ReleaseVersion>
25+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2426
</PropertyGroup>
2527
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2628
<LangVersion>latest</LangVersion>
@@ -34,7 +36,7 @@
3436
<None Remove="Microsoft.SourceLink.GitHub" />
3537
</ItemGroup>
3638
<ItemGroup>
37-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
39+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
3840
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3941
<PrivateAssets>all</PrivateAssets>
4042
</PackageReference>

test/ClearHl7.Tests/ClearHl7.Tests.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<IsPackable>false</IsPackable>
6-
<ReleaseVersion>2.1.0</ReleaseVersion>
6+
<ReleaseVersion>2.2.0</ReleaseVersion>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
11-
<PackageReference Include="xunit" Version="2.4.2" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
11+
<PackageReference Include="xunit" Version="2.9.2" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="coverlet.collector" Version="3.2.0">
16+
<PackageReference Include="coverlet.collector" Version="6.0.2">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>
20-
<PackageReference Include="FluentAssertions" Version="6.8.0" />
20+
<PackageReference Include="FluentAssertions" Version="7.0.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

0 commit comments

Comments
 (0)