Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
Added support for .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jaime-olivares committed Jul 1, 2024
1 parent cfefe6d commit 6a2df1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/HL7-dotnetcore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<Description>Lightweight HL7 2.x library compatible with .Net Standard and .Net Core</Description>
<Copyright>(c) Efferent Health, LLC</Copyright>
<VersionPrefix>2.38.2</VersionPrefix>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<VersionPrefix>2.38.3-beta1</VersionPrefix>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<AssemblyName>HL7-dotnetcore</AssemblyName>
<PackageId>HL7-dotnetcore</PackageId>
<PackageTags>hl7;dotnetcore</PackageTags>
Expand Down
4 changes: 2 additions & 2 deletions src/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public bool ParseMessage(bool bypassValidation = false)
else
isValid = true;
}
catch (HL7Exception ex)
catch (HL7Exception)
{
throw ex;
throw;
}
catch (Exception ex)
{
Expand Down

0 comments on commit 6a2df1e

Please sign in to comment.