Skip to content

Commit 0318049

Browse files
committed
Preparation for V3 release
- update PackageId's and include RepositoryType in csproj - update changelog and readme - update authors in csproj and nuspec
1 parent 01a9318 commit 0318049

File tree

16 files changed

+96
-74
lines changed

16 files changed

+96
-74
lines changed

CHANGELOG.md

Lines changed: 35 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,57 @@ All notable changes to this project will be documented in this file.
33

44
## Upcoming Release
55
###
6-
## [3.0.0.0] - TBC
7-
Will include everything from the `3.0.0-preview.X` releases.
6+
## [3.X.X.X] - TBC
87

98
## Previous Releases
109
###
10+
## [3.0.0] - 2021-06-28
1111

12-
## [3.0.0-preview.3] - 2021-06-02
13-
On top of the previous preview release this release includes the following changes:
14-
15-
### Bug Fixes
16-
* [#185](https://github.com/nHapiNET/nHapi/pull/185) `Escape.cs` Improvements - hapi implementation port. (fixes for [#103](https://github.com/nHapiNET/nHapi/issues/103))
17-
* [#192](https://github.com/nHapiNET/nHapi/pull/192), [#202](https://github.com/nHapiNET/nHapi/pull/202) Update HL7 v. 2.3 IN1 and IN2 repeat flags for some fields. (fixes [#191](https://github.com/nHapiNET/nHapi/issues/191))
18-
* [#200](https://github.com/nHapiNET/nHapi/pull/200) PipeParser Enhancements - Fix issues related to unexpected segments. (fixes [#51](https://github.com/nHapiNET/nHapi/issues/51), [#55](https://github.com/nHapiNET/nHapi/issues/55), [#56](https://github.com/nHapiNET/nHapi/issues/56), [#72](https://github.com/nHapiNET/nHapi/issues/72), [#101](https://github.com/nHapiNET/nHapi/issues/101))
19-
* [#197](https://github.com/nHapiNET/nHapi/pull/197) Fixes Exceptions and permanent Hang when parsing bad input, Adds bad input tests. (fixes [#196](https://github.com/nHapiNET/nHapi/issues/196), [#198](https://github.com/nHapiNET/nHapi/issues/198))
20-
* [#205](https://github.com/nHapiNET/nHapi/pull/205) Added additional bad inputs and enhanced error handling. (fixes [#203](https://github.com/nHapiNET/nHapi/issues/203))
21-
* [#217](https://github.com/nHapiNET/nHapi/pull/217) Add changes to fix bad input from fuzzing. (fixes [#210](https://github.com/nHapiNET/nHapi/issues/210))
22-
23-
### Other
24-
* [#135](https://github.com/nHapiNET/nHapi/pull/135), [#137](https://github.com/nHapiNET/nHapi/pull/137) Fix XML Build warnings. (fixes [#128](https://github.com/nHapiNET/nHapi/issues/128))
25-
* [#140](https://github.com/nHapiNET/nHapi/pull/140) Add license for nHapi. (fixes [#119](https://github.com/nHapiNET/nHapi/issues/119))
26-
* [#143](https://github.com/nHapiNET/nHapi/pull/143) Add StyleCopAnalyzers to main projects. (fixes [#138](https://github.com/nHapiNET/nHapi/issues/138))
27-
* [#141](https://github.com/nHapiNET/nHapi/pull/141) Create basic GitHub Actions for pull requests. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
28-
* [#142](https://github.com/nHapiNET/nHapi/pull/142) Add code coverage to the CI/CD, plus build status workflow for master. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
29-
* [#145](https://github.com/nHapiNET/nHapi/pull/145) Code Climate Coverage. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
30-
* [#147](https://github.com/nHapiNET/nHapi/pull/147), [#148](https://github.com/nHapiNET/nHapi/pull/148) Enable dependabot support to the repository
31-
* [#201](https://github.com/nHapiNET/nHapi/pull/201) Normalize all the line endings.
32-
* [#204](https://github.com/nHapiNET/nHapi/pull/204) Create Default GitHub Code Scanning Workflow
12+
Along with the changes below you can now be more selective about how you install nHapi, please read the [Getting Started](https://github.com/nHapiNET/nHapi/wiki/Getting-Started#nhapi-version-300) page of the wiki for more information.
3313

3414
### Breaking Changes
3515
Default escape sequence for carriage return has changed from `\X000d\` to `\X0D\` which brings it inline with other libraries and [InterSystems ensemble](https://docs.intersystems.com/latest/csp/docbook/Doc.View.cls?KEY=EHL72_escape_sequences).
3616

37-
However if you rely on the old escape sequence of `\X0D\` for carriage returns you can now configure this, see [#185](https://github.com/nHapiNET/nHapi/pull/185) for options.
17+
However if you rely on the old escape sequence of `\X000d\` for carriage returns you can now configure this, see [#185](https://github.com/nHapiNET/nHapi/pull/185) or the [wiki](https://github.com/nHapiNET/nHapi/wiki/Configuration-Options) for configuration options.
3818

3919
The latest `PipeParser` implementation from hapi has been ported over to nHapi, there aren't any breaking changes that I am aware of, only benefits, however if you relied on the specific behaviour of the old `PipeParser.cs` then you can use `LegacyPipeParser.cs` instead, which is the old implementation.
40-
## [3.0.0-preview.2] - 2021-01-30
41-
On top of the previous preview release this release includes the following changes:
20+
4221
### Bug Fixes
43-
* [#118](https://github.com/nHapiNET/nHapi/pull/118) Add LongDateTimeFormatWithFactionOfSecond format for date parsing (fixes [#104](https://github.com/nHapiNET/nHapi/issues/104))
44-
* [#134](https://github.com/nHapiNET/nHapi/pull/134) Fix spelling mistake
45-
* [#136](https://github.com/nHapiNET/nHapi/pull/136) Various Issue fixes (fixes for [#45](https://github.com/nHapiNET/nHapi/issues/45), [#62](https://github.com/nHapiNET/nHapi/issues/62), [#81](https://github.com/nHapiNET/nHapi/issues/81), [#84](https://github.com/nHapiNET/nHapi/issues/84), [#85](https://github.com/nHapiNET/nHapi/issues/85), [#86](https://github.com/nHapiNET/nHapi/issues/86), [#109](https://github.com/nHapiNET/nHapi/issues/109), [#133](https://github.com/nHapiNET/nHapi/issues/133))
22+
- [#118](https://github.com/nHapiNET/nHapi/pull/118) Add LongDateTimeFormatWithFactionOfSecond format for date parsing (fixes [#104](https://github.com/nHapiNET/nHapi/issues/104))
23+
- [#134](https://github.com/nHapiNET/nHapi/pull/134) Fix spelling mistake
24+
- [#136](https://github.com/nHapiNET/nHapi/pull/136) Various Issue fixes (fixes for [#45](https://github.com/nHapiNET/nHapi/issues/45), [#62](https://github.com/nHapiNET/nHapi/issues/62), [#81](https://github.com/nHapiNET/nHapi/issues/81), [#84](https://github.com/nHapiNET/nHapi/issues/84), [#85](https://github.com/nHapiNET/nHapi/issues/85), [#86](https://github.com/nHapiNET/nHapi/issues/86), [#109](https://github.com/nHapiNET/nHapi/issues/109), [#133](https://github.com/nHapiNET/nHapi/issues/133))
25+
- [#185](https://github.com/nHapiNET/nHapi/pull/185) `Escape.cs` Improvements - hapi implementation port. (fixes for [#103](https://github.com/nHapiNET/nHapi/issues/103))
26+
- [#192](https://github.com/nHapiNET/nHapi/pull/192), [#202](https://github.com/nHapiNET/nHapi/pull/202) Update HL7 v. 2.3 IN1 and IN2 repeat flags for some fields. (fixes [#191](https://github.com/nHapiNET/nHapi/issues/191))
27+
- [#200](https://github.com/nHapiNET/nHapi/pull/200) PipeParser Enhancements - Fix issues related to unexpected segments. (fixes [#51](https://github.com/nHapiNET/nHapi/issues/51), [#55](https://github.com/nHapiNET/nHapi/issues/55), [#56](https://github.com/nHapiNET/nHapi/issues/56), [#72](https://github.com/nHapiNET/nHapi/issues/72), [#101](https://github.com/nHapiNET/nHapi/issues/101))
28+
- [#197](https://github.com/nHapiNET/nHapi/pull/197) Fixes Exceptions and permanent Hang when parsing bad input, Adds bad input tests. (fixes [#196](https://github.com/nHapiNET/nHapi/issues/196), [#198](https://github.com/nHapiNET/nHapi/issues/198))
29+
- [#205](https://github.com/nHapiNET/nHapi/pull/205) Added additional bad inputs and enhanced error handling. (fixes [#203](https://github.com/nHapiNET/nHapi/issues/203))
30+
- [#217](https://github.com/nHapiNET/nHapi/pull/217) Add changes to fix bad input from fuzzing. (fixes [#210](https://github.com/nHapiNET/nHapi/issues/210))
4631

4732
### Enhancements
48-
* [#75](https://github.com/nHapiNET/nHapi/pull/75) Add support for removing fields by index or by item/type
33+
- [#75](https://github.com/nHapiNET/nHapi/pull/75) Add support for removing fields by index or by item/type
34+
- [#112](https://github.com/nHapiNET/nHapi/pull/112) Adds support for netstandard2.0. (fixes [#61](https://github.com/nHapiNET/nHapi/issues/61))
4935

5036
### Other
51-
* [#117](https://github.com/nHapiNET/nHapi/pull/117) Add .vs into .gitignore file to ignore Visual Studio files
52-
* [#129](https://github.com/nHapiNET/nHapi/pull/129) restructure project to a more modern project structure
53-
* [#130](https://github.com/nHapiNET/nHapi/pull/130) Decouple NHapi source code generation from NHapi.Base
54-
* [#135](https://github.com/nHapiNET/nHapi/pull/135) NHapi.Base > Formatted XML License Comments
37+
- [#117](https://github.com/nHapiNET/nHapi/pull/117) Add .vs into .gitignore file to ignore Visual Studio files
38+
- [#129](https://github.com/nHapiNET/nHapi/pull/129) restructure project to a more modern project structure
39+
- [#130](https://github.com/nHapiNET/nHapi/pull/130) Decouple NHapi source code generation from NHapi.Base
40+
- [#135](https://github.com/nHapiNET/nHapi/pull/135) NHapi.Base > Formatted XML License Comments
41+
- [#135](https://github.com/nHapiNET/nHapi/pull/135), [#137](https://github.com/nHapiNET/nHapi/pull/137) Fix XML Build warnings. (fixes [#128](https://github.com/nHapiNET/nHapi/issues/128))
42+
- [#140](https://github.com/nHapiNET/nHapi/pull/140) Add license for nHapi. (fixes [#119](https://github.com/nHapiNET/nHapi/issues/119))
43+
- [#143](https://github.com/nHapiNET/nHapi/pull/143) Add StyleCopAnalyzers to main projects. (fixes [#138](https://github.com/nHapiNET/nHapi/issues/138))
44+
- [#141](https://github.com/nHapiNET/nHapi/pull/141) Create basic GitHub Actions for pull requests. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
45+
- [#142](https://github.com/nHapiNET/nHapi/pull/142) Add code coverage to the CI/CD, plus build status workflow for master. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
46+
- [#145](https://github.com/nHapiNET/nHapi/pull/145) Code Climate Coverage. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
47+
- [#147](https://github.com/nHapiNET/nHapi/pull/147), [#148](https://github.com/nHapiNET/nHapi/pull/148) Enable dependabot support to the repository
48+
- [#201](https://github.com/nHapiNET/nHapi/pull/201) Normalize all the line endings.
49+
- [#204](https://github.com/nHapiNET/nHapi/pull/204) Create Default GitHub Code Scanning Workflow
50+
51+
## [3.0.0-preview.3] - 2021-06-02
52+
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.3
53+
## [3.0.0-preview.2] - 2021-01-30
54+
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.2
5555
## [3.0.0-preview.1] - 2020-11-02
56-
### Enhancements (Submitted by haydenhall and milkshakeuk)
57-
* [#112](https://github.com/nHapiNET/nHapi/pull/112) Adds support for netstandard2.0. (fixes [#61](https://github.com/nHapiNET/nHapi/issues/61))
56+
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.1
5857

5958
## [2.5.0.6] - 2016-09-13
6059
### Fixes

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,32 @@ This project is **NOT** affiliated with the HL7 organization. This software just
1919

2020
## Requirements
2121

22-
NHapi currently targets .NET Framework 3.5 and netstandard2.0.
22+
NHapi currently targets .NET Framework 3.5 and netstandard2.0 which aims to provide support for projects which target .NET Framework 3.5 and above as well as .NET Core 2.0 and above.
2323

2424
## Getting Started
2525

2626
The easiest way to get started using nHapi is to use the [NuGet package 'nHapi'](https://www.nuget.org/packages/nHapi/):
2727

28+
### Package Manager Console
2829
Using the package manager console within visual studio, simply run the following command:
2930

31+
```shell
32+
PM > Install-Package nhapi
3033
```
31-
PM > Install-Package nHapi
32-
```
33-
Or Using the .NET Cli
34-
```
35-
dotnet add package nHapi
34+
35+
### .NET CLI
36+
From your console of choice assuming you have dotnet core installed.
37+
```shell
38+
> dotnet add package nhapi
3639
```
40+
For more options please read the [Getting Started](https://github.com/nHapiNET/nHapi/wiki/Getting-Started) page of the wiki.
41+
42+
## Change Log
43+
### nHapi 3.0.0 Announcement
44+
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.
45+
Please read the change log below for full details of and how they might affect you prior to upgrading.
3746

38-
## [Change Log](https://github.com/nHapiNET/nHapi/blob/master/CHANGELOG.md)
47+
[Full Change Log](https://github.com/nHapiNET/nHapi/blob/master/CHANGELOG.md).
3948

4049
## Related Projects
4150

@@ -44,5 +53,6 @@ If you use nHapi you may find the following projects useful:
4453
- [NHapiTools](https://github.com/dib0/NHapiTools) - Many useful extension methods, helper methods for listening on MLLP/TCP, generating ACK messages, custom segments, validation rules, too many features to list here.
4554
- [HL7Fuse](https://github.com/dib0/HL7Fuse) - HL7 Message Hub / Integration Engine
4655
- [HL7-dotnetcore](https://github.com/Efferent-Health/HL7-dotnetcore) - Lightweight library for building and parsing HL7 2.x messages, for .Net Standard and .Net Core. It is not tied to any particular version of HL7 nor validates against one.
56+
- [Reimers IHE Communication](https://github.com/jjrdk/reimers.ihe) - Provides support for both client side and server side HL7 transaction management.
4757

4858
Should you know of any other projects that use or improve nHapi please let me know or send a pull request with a link to the project and I'll be happy to add it to the list.

build/nHapi.v3.nuspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
4-
<id>nHapi</id>
4+
<id>nhapi</id>
55
<version>3.0.0</version>
6-
<authors>Chad Chenoweth, Duane Edwards</authors>
6+
<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" />
9+
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" />
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>NHapi is a port of the original project HAPI.
1212

@@ -27,8 +27,8 @@ This project is NOT affiliated with the HL7 organization. This software just con
2727
</frameworkAssemblies>
2828
</metadata>
2929
<files>
30-
<file src="..\dist\netstandard2.0\*.*" exclude="*V22_ZSegments.*" target="lib\netstandard2.0" />
31-
<file src="..\dist\net35\*.*" exclude="*V22_ZSegments.*" target="lib\net35" />
30+
<file src="..\dist\netstandard2.0\*.*" target="lib\netstandard2.0" />
31+
<file src="..\dist\net35\*.*" target="lib\net35" />
3232
<file src="..\README.md" target="docs\" />
3333
</files>
3434
</package>

src/NHapi.Base/NHapi.Base.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Base</PackageId>
6+
<PackageId>nhapi.base</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>The core components for parsing/encoding HL7 messages. Contains the base classes and interfaces for datatypes, segments, and messages.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Model.V21</PackageId>
6+
<PackageId>nhapi.model.v21</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>Contains the data types, segments, and messages that follow the HL7 2.1 schema.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Model.V22</PackageId>
6+
<PackageId>nhapi.model.v22</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>Contains the data types, segments, and messages that follow the HL7 2.2 schema.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

src/NHapi.Model.V23/NHapi.Model.V23.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Model.V23</PackageId>
6+
<PackageId>nhapi.model.v23</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>Contains the data types, segments, and messages that follow the HL7 2.3 schema.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

src/NHapi.Model.V231/NHapi.Model.V231.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Model.V231</PackageId>
6+
<PackageId>nhapi.model.v231</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>Contains the data types, segments, and messages that follow the HL7 2.3.1 schema.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

src/NHapi.Model.V24/NHapi.Model.V24.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
6-
<PackageId>nHapi.Model.V24</PackageId>
6+
<PackageId>nhapi.model.v24</PackageId>
77
<PackageVersion>3.0.0</PackageVersion>
8-
<Authors>Chad Chenoweth;Duane Edwards</Authors>
8+
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
12+
<RepositoryType>git</RepositoryType>
1213
<Description>Contains the data types, segments, and messages that follow the HL7 2.4 schema.</Description>
1314
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
1415
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

0 commit comments

Comments
 (0)