Skip to content

Commit 44b0c2e

Browse files
Merge remote-tracking branch 'origin/master' into do_not_throw_general_exceptions_from_generated_data_types
2 parents 7a00370 + 126f0cc commit 44b0c2e

File tree

99 files changed

+569783
-284524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+569783
-284524
lines changed

CHANGELOG.md

Lines changed: 56 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,71 @@ All notable changes to this project will be documented in this file.
44

55
## Upcoming Release
66

7-
## [3.X.X.X] - TBC
7+
## [3.X.X] - TBC
88

99
## Previous Releases
1010

11+
## [3.2.2] - 2023-01-24
12+
13+
This release is purely superficial, it does not fix or add anything.
14+
15+
- Add appropriate [target framework](https://learn.microsoft.com/en-us/nuget/reference/target-frameworks) metadata to the metapackage nuspec - already exists in the individual nuget packages.
16+
17+
See [3.2.0](#320---2023-01-20) release for latest changes.
18+
19+
By @milkshakeuk
20+
21+
## [3.2.0] - 2023-01-20
22+
23+
Various new `ParserOptions` have been added, see the [wiki](https://github.com/nHapiNET/nHapi/wiki/Parser-Options) for more information.
24+
25+
### Things of note
26+
27+
As part of [#398](https://github.com/nHapiNET/nHapi/pull/398) the imperfect behaviour of `XmlParser` and `DefaultXmlParser` have been updated and brought inline with `hapi` fixing many quirks and defects. If you are dependant on this old behaviour you can use `LegacyXmlParser` and `LegacyDefaultXmlParser` instead, these will be available until the next major version of `nHapi`.
28+
29+
The [nHapi](https://www.nuget.org/packages/nhapi) convenience nuget package is now a meta package meaning it does not directly contain any Dlls. This metapackage just describes its dependencies, which happen to be all of the individual nHapi nuget packages. If you want to understand a little bit more about metapackages [read this](https://andrewlock.net/what-is-the-microsoft-aspnetcore-metapackage/).
30+
31+
There is no difference in behaviour when using this metapackage vs the previous nHapi nuget package.
32+
33+
### Bug Fixes
34+
35+
- [#318](https://github.com/nHapiNET/nHapi/pull/318) Port `ORL_O34` fix for cyclic reference, fixes for `V2.5.1`, `2.5`, `2.6`. By @milkshakeuk (fixes [#298](https://github.com/nHapiNET/nHapi/issues/298))
36+
- [#340](https://github.com/nHapiNET/nHapi/pull/340) Fix `Terser` Regex bug. By @milkshakeuk (fixes [#319](https://github.com/nHapiNET/nHapi/issues/319))
37+
- [#402](https://github.com/nHapiNET/nHapi/pull/402) Fix `OBX` repeat counts for V24. By @milkshakeuk (fixes [#341](https://github.com/nHapiNET/nHapi/issues/341))
38+
39+
### Enhancements
40+
41+
- [#283](https://github.com/nHapiNET/nHapi/pull/283) Enable refactor of Source Generation code. By @milkshakeuk
42+
- [#291](https://github.com/nHapiNET/nHapi/pull/291) Fix some static analysis issues. By @PhantomGrazzler
43+
- [#308](https://github.com/nHapiNET/nHapi/pull/308) Include the optional `LongName` attribute in the XML encoded output. By @laxmi-lal-menaria (resolves [#301](https://github.com/nHapiNET/nHapi/issues/301))
44+
- [#360](https://github.com/nHapiNET/nHapi/pull/360) Add Support for `CharSetUtil` and `PreParser`. By @milkshakeuk (resolves [#312](https://github.com/nHapiNET/nHapi/issues/312))
45+
- [#362](https://github.com/nHapiNET/nHapi/pull/362) Fixed some static analysis warnings related to public constants. By @PhantomGrazzler
46+
- [#398](https://github.com/nHapiNET/nHapi/pull/398) Bring XmlParsing in line with `hapi`. By @milkshakeuk (unblocks [#308](https://github.com/nHapiNET/nHapi/pull/308))
47+
- [#278](https://github.com/nHapiNET/nHapi/issues/278) Better Source Link Support. By @milkshakeuk
48+
49+
### Other
50+
51+
- [#288](https://github.com/nHapiNET/nHapi/pull/288) Update Github Actions to use OS matrix. By @milkshakeuk
52+
1153
## [3.1.1] - 2022-02-19
1254

1355
### Enhancements
1456

15-
- [#277](https://github.com/nHapiNET/nHapi/pull/277) Remove MaxRepetition check, keeps nhapi in line with hapi behaviour, nhapi becomes more forgiving in regards to repetitions. (fixes [#276](https://github.com/nHapiNET/nHapi/issues/276))
57+
- [#277](https://github.com/nHapiNET/nHapi/pull/277) Remove MaxRepetition check, keeps nhapi in line with hapi behaviour, nhapi becomes more forgiving in regards to repetitions. By @milkshakeuk (fixes [#276](https://github.com/nHapiNET/nHapi/issues/276))
1658

1759
## [3.1.0] - 2022-01-01
1860

1961
### Enhancements
2062

21-
- [#254](https://github.com/nHapiNET/nHapi/pull/254) Add `UnexpectedSegmentBehaviour` Options, ported from hapi
22-
- [#251](https://github.com/nHapiNET/nHapi/pull/251) Fix concurrency issues with `PipeParser`, `StructureDefinition`, `GenericMessage` and `Escape`.
23-
- [#250](https://github.com/nHapiNET/nHapi/pull/250) Add new options `DefaultObx2Type` and `InvalidObx2Type` to `ParserOptions`, ported from nhapi. (fixes [#63](https://github.com/nHapiNET/nHapi/issues/63))
24-
- [#240](https://github.com/nHapiNET/nHapi/pull/240) Add support for `NonGreedyMode` by introducing `ParserOptions` ported from hapi. by @PhantomGrazzler (fixes [#65](https://github.com/nHapiNET/nHapi/issues/65) [#232](https://github.com/nHapiNET/nHapi/issues/232))
63+
- [#254](https://github.com/nHapiNET/nHapi/pull/254) Add `UnexpectedSegmentBehaviour` Options, ported from hapi. By @milkshakeuk
64+
- [#251](https://github.com/nHapiNET/nHapi/pull/251) Fix concurrency issues with `PipeParser`, `StructureDefinition`, `GenericMessage` and `Escape`. By @milkshakeuk
65+
- [#250](https://github.com/nHapiNET/nHapi/pull/250) Add new options `DefaultObx2Type` and `InvalidObx2Type` to `ParserOptions`, ported from nhapi. By @milkshakeuk (fixes [#63](https://github.com/nHapiNET/nHapi/issues/63))
66+
- [#240](https://github.com/nHapiNET/nHapi/pull/240) Add support for `NonGreedyMode` by introducing `ParserOptions` ported from hapi. By @PhantomGrazzler (fixes [#65](https://github.com/nHapiNET/nHapi/issues/65) [#232](https://github.com/nHapiNET/nHapi/issues/232))
2567

2668
### Other
2769

28-
- [#256](https://github.com/nHapiNET/nHapi/pull/256) Simplify cspoj through use of props and targets files.
29-
- Update tools and build to net6.0
70+
- [#256](https://github.com/nHapiNET/nHapi/pull/256) Simplify cspoj through use of props and targets files. By @milkshakeuk
71+
- Update tools and build to net6.0. By @milkshakeuk
3072

3173
## [3.0.4] - 2021-08-11
3274

@@ -38,10 +80,14 @@ In cases where dictionaries / hashtables are used for lookups such as `Escape.cs
3880

3981
Instead of using `Add(key, value)` which only allows 1 items with a given key to be added to the dictionary / hashtable, we are using the index accessor to set or update the value in a last one wins scenario, but only when its combined with `ContainsKey` which has indicated that an item with that key shouldn't exist.
4082

83+
By @milkshakeuk
84+
4185
## [3.0.3] - 2021-08-10
4286

4387
This change updates the `PipeParser` Version check when obtaining encoding characters from a message object in order to encode it to HL7; `string.CompareOrdinal` is now used instead of `System.Version` which is more forgiving when a version contains non numerical characters.
4488

89+
By @milkshakeuk
90+
4591
## [3.0.2] - 2021-08-09
4692

4793
This change gives nhapi [strong-named assemblies](https://docs.microsoft.com/en-us/dotnet/standard/assembly/strong-named), there are no codes changes.
@@ -50,6 +96,8 @@ This change gives nhapi [strong-named assemblies](https://docs.microsoft.com/en-
5096

5197
- [#227](https://github.com/nHapiNET/nHapi/issues/227) fixes "A strongly-named assembly is required" runtime errors
5298

99+
By @milkshakeuk
100+
53101
## [nhapi.model.v231 3.0.1] - 2021-07-02
54102

55103
This release is for the NuGet package `nhapi.model.v231` only, there are no code changes, see below for change.

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,9 @@ For more options please read the [Getting Started](https://github.com/nHapiNET/n
4848

4949
## Change Log
5050

51-
### nHapi 3.0.0 Announcement
51+
### nHapi 3.2.0 Announcement
5252

53-
nHapi 3.0.0 has been officially released, the main change for this release is support for netstandard2.0, but it also has other enhancements and bug fixes.
54-
Please read the change log below for full details of and how they might affect you prior to upgrading.
55-
56-
[Full Change Log](https://github.com/nHapiNET/nHapi/blob/master/CHANGELOG.md).
53+
nHapi 3.2.0 has been released - see [Full Change Log](https://github.com/nHapiNET/nHapi/blob/master/CHANGELOG.md) for details.
5754

5855
## Related Projects
5956

build/.nuget/NuGet.exe

-327 KB
Binary file not shown.

build/default.ps1

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ properties {
1010
"NHapi.Model.V21",
1111
"NHapi.Model.V22",
1212
"NHapi.Model.V23",
13+
"NHapi.Model.V231",
1314
"NHapi.Model.V24",
1415
"NHapi.Model.V25",
16+
"NHapi.Model.V251",
1517
"NHapi.Model.V26",
1618
"NHapi.Model.V27",
17-
"NHapi.Model.V28",
18-
"NHapi.Model.V231",
19-
"NHapi.Model.V251",
2019
"NHapi.Model.V271",
20+
"NHapi.Model.V28",
2121
"NHapi.Model.V281"
2222
)
2323
$apiKey = "YOUR_API_KEY"
@@ -27,8 +27,9 @@ Task Default -depends Build
2727

2828
Task Clean {
2929
Remove-Item ..\dist\*.nupkg -ErrorAction Ignore
30-
Remove-Item ..\dist\net35\*.* -ErrorAction Ignore
31-
Remove-Item ..\dist\netstandard2.0\*.* -ErrorAction Ignore
30+
Remove-Item ..\dist\*.snupkg -ErrorAction Ignore
31+
Remove-Item ..\dist\net35 -Recurse -ErrorAction Ignore
32+
Remove-Item ..\dist\netstandard2.0 -Recurse -ErrorAction Ignore
3233

3334
Get-ChildItem -path ..\ -inc bin -rec | Remove-Item -rec -force
3435
Get-ChildItem -path ..\ -inc obj -rec | Remove-Item -rec -force
@@ -72,33 +73,35 @@ task Test {
7273

7374
Task Package -depends Build {
7475

75-
Remove-Item ..\dist\net35\*.* -ErrorAction Ignore
76-
Remove-Item ..\dist\netstandard2.0\*.* -ErrorAction Ignore
77-
78-
New-Item -ItemType directory -Force -Path ..\dist\net35
79-
New-Item -ItemType directory -Force -Path ..\dist\netstandard2.0
76+
Remove-Item ..\dist\net35 -Recurse -ErrorAction Ignore
77+
Remove-Item ..\dist\netstandard2.0 -Recurse -ErrorAction Ignore
78+
Remove-Item ..\dist\*.nupkg -ErrorAction Ignore
79+
Remove-Item ..\dist\*.snupkg -ErrorAction Ignore
8080

8181
foreach($project in $projects) {
82-
Copy-Item "..\src\$project\bin\$projectConfig\net35\*.dll" ..\dist\net35
83-
Copy-Item "..\src\$project\bin\$projectConfig\net35\*.xml" ..\dist\net35
84-
85-
Copy-Item "..\src\$project\bin\$projectConfig\netstandard2.0\*.dll" ..\dist\netstandard2.0
86-
Copy-Item "..\src\$project\bin\$projectConfig\netstandard2.0\*.xml" ..\dist\netstandard2.0
82+
Exec { dotnet pack "..\src\$project\$project.csproj" -c $projectConfig --no-build --no-restore -o "..\dist" }
8783
}
8884

89-
Exec { .nuget\nuget pack .\nHapi.v3.nuspec -OutputDirectory ..\dist }
85+
$commit = (git rev-parse --verify HEAD)
86+
$nuspec = ".\nHapi.v3.nuspec"
9087

91-
foreach($project in $projects) {
92-
Exec { dotnet pack "..\src\$project\$project.csproj" -c $projectConfig --no-build --no-restore -o "..\dist" }
93-
}
88+
(Get-Content $nuspec).Replace('commit=""', 'commit="' + $commit + '"') | Set-Content $nuspec
89+
90+
New-Item -ItemType directory -Force -Path ..\dist\net35
91+
New-Item -ItemType directory -Force -Path ..\dist\netstandard2.0
92+
New-Item -ItemType file -Path ..\dist\net35 -Name _._
93+
New-Item -ItemType file -Path ..\dist\netstandard2.0 -Name _._
94+
95+
Exec { .nuget\nuget pack $nuspec -OutputDirectory ..\dist }
96+
97+
(Get-Content $nuspec).Replace('commit="' + $commit + '"', 'commit=""') | Set-Content $nuspec
9498
}
9599

96100
Task Deploy -depends Package {
97101

98102
foreach($project in $projects) {
99-
Exec { dotnet nuget push "..\dist\$project.*.nupkg" --api-key $apiKey }
103+
Exec { dotnet nuget push "..\dist\$project.*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" }
100104
}
101105

102-
Exec { dotnet nuget push "..\dist\nhapi.3.1.0.nupkg" --api-key $apiKey }
103-
# Exec { .nuget\nuget push *.nupkg -Source https://api.nuget.org/v3/index.json }
106+
Exec { dotnet nuget push "..\dist\nhapi.3.*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" }
104107
}

build/nHapi.v3.nuspec

Lines changed: 38 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,59 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>nhapi</id>
5-
<version>3.1.1</version>
5+
<version>3.2.2</version>
66
<authors>Chad Chenoweth,Duane Edwards,Jake Aitchison</authors>
77
<license type="expression">MPL-2.0</license>
88
<projectUrl>https://github.com/nHapiNET/nHapi</projectUrl>
9-
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" />
109
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1110
<description>NHapi is a port of the original project HAPI.
1211

1312
NHapi allows Microsoft .NET developers to easily use an HL7 2.x object model. This object model allows for parsing and encoding HL7 2.x data to/from Pipe Delimited or XML formats. A very handy program for use in the health care industry.
1413

15-
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.</description>
16-
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.1.1</releaseNotes>
17-
<tags>HL7 parsing healthcare HAPI xml</tags>
14+
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.
15+
16+
This nuget package is just a metapackage for conveniance.</description>
17+
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.2</releaseNotes>
18+
<tags>HL7 ER7 XML parsing healthcare HAPI</tags>
19+
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" commit=""/>
1820
<readme>docs\README.md</readme>
1921
<dependencies>
22+
<group targetFramework=".NETFramework3.5">
23+
<dependency id="nhapi.base" version="3.2.0" exclude="Build,Analyzers" />
24+
<dependency id="nhapi.model.v21" version="3.2.0" exclude="Build,Analyzers" />
25+
<dependency id="nhapi.model.v22" version="3.2.0" exclude="Build,Analyzers" />
26+
<dependency id="nhapi.model.v23" version="3.2.0" exclude="Build,Analyzers" />
27+
<dependency id="nhapi.model.v24" version="3.2.0" exclude="Build,Analyzers" />
28+
<dependency id="nhapi.model.v25" version="3.2.0" exclude="Build,Analyzers" />
29+
<dependency id="nhapi.model.v26" version="3.2.0" exclude="Build,Analyzers" />
30+
<dependency id="nhapi.model.v27" version="3.2.0" exclude="Build,Analyzers" />
31+
<dependency id="nhapi.model.v28" version="3.2.0" exclude="Build,Analyzers" />
32+
<dependency id="nhapi.model.v231" version="3.2.0" exclude="Build,Analyzers" />
33+
<dependency id="nhapi.model.v251" version="3.2.0" exclude="Build,Analyzers" />
34+
<dependency id="nhapi.model.v271" version="3.2.0" exclude="Build,Analyzers" />
35+
<dependency id="nhapi.model.v281" version="3.2.0" exclude="Build,Analyzers" />
36+
</group>
2037
<group targetFramework=".NETStandard2.0">
21-
<dependency id="System.Configuration.ConfigurationManager" version="5.0.0" />
38+
<dependency id="nhapi.base" version="3.2.0" exclude="Build,Analyzers" />
39+
<dependency id="nhapi.model.v21" version="3.2.0" exclude="Build,Analyzers" />
40+
<dependency id="nhapi.model.v22" version="3.2.0" exclude="Build,Analyzers" />
41+
<dependency id="nhapi.model.v23" version="3.2.0" exclude="Build,Analyzers" />
42+
<dependency id="nhapi.model.v24" version="3.2.0" exclude="Build,Analyzers" />
43+
<dependency id="nhapi.model.v25" version="3.2.0" exclude="Build,Analyzers" />
44+
<dependency id="nhapi.model.v26" version="3.2.0" exclude="Build,Analyzers" />
45+
<dependency id="nhapi.model.v27" version="3.2.0" exclude="Build,Analyzers" />
46+
<dependency id="nhapi.model.v28" version="3.2.0" exclude="Build,Analyzers" />
47+
<dependency id="nhapi.model.v231" version="3.2.0" exclude="Build,Analyzers" />
48+
<dependency id="nhapi.model.v251" version="3.2.0" exclude="Build,Analyzers" />
49+
<dependency id="nhapi.model.v271" version="3.2.0" exclude="Build,Analyzers" />
50+
<dependency id="nhapi.model.v281" version="3.2.0" exclude="Build,Analyzers" />
2251
</group>
23-
<group targetFramework=".NETFramework3.5" />
2452
</dependencies>
25-
<frameworkAssemblies>
26-
<frameworkAssembly assemblyName="System.Configuration" targetFramework=".NETFramework3.5" />
27-
</frameworkAssemblies>
2853
</metadata>
2954
<files>
30-
<file src="..\dist\netstandard2.0\*.*" target="lib\netstandard2.0" />
31-
<file src="..\dist\net35\*.*" target="lib\net35" />
55+
<file src="..\dist\netstandard2.0\_._" target="lib\netstandard2.0\" />
56+
<file src="..\dist\net35\_._" target="lib\net35\" />
3257
<file src="..\README.md" target="docs\" />
3358
</files>
3459
</package>

src/Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
1414
<SignAssembly>true</SignAssembly>
1515
<PublicKey>0024000004800000940000000602000000240000525341310004000001000100b938fa88814fb99f1d02dfce84c41f38eb1ca31f694b706248e6e21ceed1b1d150416c1375603c7a5dd6d3b2cdec97ccbbdd7a1d6fac61a1ad96ebf88e889ba113913c2f36890ea75108a1d8a23affc0c87357f07dec77c69a519215d0d4043759397b1a8fea1dc881b440ba4232ad4e24d7a8d90bb004549cf4f9dd2d6c13d8</PublicKey>
16+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
17+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1618
</PropertyGroup>
1719

1820
<ItemGroup>

src/Directory.Build.targets

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
77
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
88
<RepositoryType>git</RepositoryType>
9-
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
9+
<PackageTags>HL7;ER7;XML;parsing;healthcare;HAPI</PackageTags>
1010
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v$(Version)</PackageReleaseNotes>
1111
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
1212
</PropertyGroup>
@@ -24,6 +24,8 @@
2424

2525
<PropertyGroup Condition=" '$(IsPackable)' == 'true' And '$(IncludeCommonPackageInfo)' == 'true' And '$(Configuration)' == 'Release' ">
2626
<PublishRepositoryUrl>true</PublishRepositoryUrl>
27+
<IncludeSymbols>true</IncludeSymbols>
28+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2729
</PropertyGroup>
2830

2931
<!-- Build Time Tools (Includes commit sha in AssemblyInfo etc)-->

src/NHapi.Base/NHapi.Base.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.base</PackageId>
7-
<Version>3.1.1</Version>
7+
<Version>3.2.0</Version>
88
<PackageDescription>The core components for parsing/encoding HL7 messages. Contains the base classes and interfaces for datatypes, segments, and messages.</PackageDescription>
99
<Description>NHapi Common Library</Description>
1010
<NoWarn>1591</NoWarn>

src/NHapi.Base/Parser/ParserOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public ParserOptions()
131131
public bool NonGreedyMode { get; set; }
132132

133133
/// <summary>
134-
/// Gets or Sets flag which allows the Description attribute [LongName] to be added in encoded xml with counter position.
134+
/// Gets or Sets flag which allows the Description attribute 'LongName' to be added in encoded xml with counter position.
135135
/// </summary>
136136
/// <example>
137137
/// <code>

src/NHapi.Model.V21/NHapi.Model.V21.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v21</PackageId>
7-
<Version>3.1.0</Version>
7+
<Version>3.2.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.1 schema.</PackageDescription>
99
<Description>NHapi Model V.2.1</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

src/NHapi.Model.V22/NHapi.Model.V22.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v22</PackageId>
7-
<Version>3.1.0</Version>
7+
<Version>3.2.0</Version>
88
<PackageDescription>Contains the data types, segments, and messages that follow the HL7 2.2 schema.</PackageDescription>
99
<Description>NHapi Model V.2.2</Description>
1010
<IncludeCommonPackageInfo>true</IncludeCommonPackageInfo>

0 commit comments

Comments
 (0)