Skip to content

Commit

Permalink
Merge pull request #41 from davebronson/remove-net-versions
Browse files Browse the repository at this point in the history
Remove NET 5, 6, 7 targets.  Increase version to 2.1.1.  Remove CodeQ…
  • Loading branch information
davebronson authored Dec 7, 2024
2 parents 2921ec9 + 197bb82 commit 8c462a2
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 95 deletions.
72 changes: 0 additions & 72 deletions .github/workflows/codeql.yml

This file was deleted.

2 changes: 1 addition & 1 deletion ClearHl7.sln
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Global
$4.scope = text/x-csharp
$0.CSharpFormattingPolicy = $5
$5.scope = text/x-csharp
version = 2.1.0
version = 2.1.1
description = .NET HL7® library
EndGlobalSection
EndGlobal
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

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.
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.

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

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

### Download From NuGet
* https://www.nuget.org/packages/ClearHl7
Expand All @@ -25,9 +25,6 @@ Upgrading from Version 1.x to Version 2? Please read some important notes about
### Targets
* .NET Standard 2.0
* .NET Standard 2.1
* .NET 5
* .NET 6
* .NET 7

## Supported HL7 Versions
Several versions exist for the HL7 Version 2.x messaging standard. clear-hl7-net supports the following:
Expand Down
11 changes: 6 additions & 5 deletions src/ClearHl7.Codes/ClearHl7.Codes.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<Authors>Dave Bronson</Authors>
<Copyright>Copyright © Dave Bronson 2020-2022</Copyright>
<Copyright>Copyright © Dave Bronson 2020-2024</Copyright>
<PackageProjectUrl>https://github.com/davebronson/clear-hl7-net</PackageProjectUrl>
<Summary>Enumerated coded values for the HL7® standard</Summary>
<PackageTags>hl7;hl7-builder;hl7-parser;hl7-message;hl7-generating;dotnet;healthcare;code;codesystem</PackageTags>
<Title>ClearHL7.Codes</Title>
<Description>Enumerated coded values for the HL7® standard</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageVersion>2.1.0</PackageVersion>
<VersionPrefix>2.1.1</VersionPrefix>
<PackageVersion>2.1.1</PackageVersion>
<ReleaseVersion>2.1.1</ReleaseVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackOnBuild>true</PackOnBuild>
<Owners>Dave Bronson</Owners>
<ReleaseVersion>2.1.0</ReleaseVersion>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
Expand All @@ -34,7 +35,7 @@
<None Remove="Microsoft.SourceLink.GitHub" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
12 changes: 7 additions & 5 deletions src/ClearHl7/ClearHl7.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<Authors>Dave Bronson</Authors>
<Copyright>Copyright © Dave Bronson 2020-2022</Copyright>
<Copyright>Copyright © Dave Bronson 2020-2024</Copyright>
<PackageProjectUrl>https://github.com/davebronson/clear-hl7-net</PackageProjectUrl>
<Summary>.NET HL7® message generation and parsing library for the version 2.x standard</Summary>
<PackageTags>hl7;hl7-builder;hl7-parser;hl7-message;hl7-generating;hl7-parsing;dotnet;healthcare</PackageTags>
<Title>ClearHL7</Title>
<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>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageVersion>2.1.0</PackageVersion>
<VersionPrefix>2.1.1</VersionPrefix>
<PackageVersion>2.1.1</PackageVersion>
<ReleaseVersion>2.1.1</ReleaseVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackOnBuild>true</PackOnBuild>
<Owners>Dave Bronson</Owners>
Expand All @@ -20,7 +22,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ReleaseVersion>2.1.0</ReleaseVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>latest</LangVersion>
Expand All @@ -34,7 +36,7 @@
<None Remove="Microsoft.SourceLink.GitHub" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
14 changes: 7 additions & 7 deletions test/ClearHl7.Tests/ClearHl7.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<ReleaseVersion>2.1.0</ReleaseVersion>
<ReleaseVersion>2.2.0</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.8.0" />
<PackageReference Include="FluentAssertions" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 8c462a2

Please sign in to comment.