Skip to content

Commit

Permalink
Preparation for V3 release
Browse files Browse the repository at this point in the history
- update PackageId's and include RepositoryType in csproj
- update changelog and readme
- update authors in csproj and nuspec
milkshakeuk committed Jun 28, 2021
1 parent 01a9318 commit 0318049
Showing 16 changed files with 96 additions and 74 deletions.
71 changes: 35 additions & 36 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,58 +3,57 @@ All notable changes to this project will be documented in this file.

## Upcoming Release
###
## [3.0.0.0] - TBC
Will include everything from the `3.0.0-preview.X` releases.
## [3.X.X.X] - TBC

## Previous Releases
###
## [3.0.0] - 2021-06-28

## [3.0.0-preview.3] - 2021-06-02
On top of the previous preview release this release includes the following changes:

### Bug Fixes
* [#185](https://github.com/nHapiNET/nHapi/pull/185) `Escape.cs` Improvements - hapi implementation port. (fixes for [#103](https://github.com/nHapiNET/nHapi/issues/103))
* [#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))
* [#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))
* [#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))
* [#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))
* [#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))

### Other
* [#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))
* [#140](https://github.com/nHapiNET/nHapi/pull/140) Add license for nHapi. (fixes [#119](https://github.com/nHapiNET/nHapi/issues/119))
* [#143](https://github.com/nHapiNET/nHapi/pull/143) Add StyleCopAnalyzers to main projects. (fixes [#138](https://github.com/nHapiNET/nHapi/issues/138))
* [#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))
* [#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))
* [#145](https://github.com/nHapiNET/nHapi/pull/145) Code Climate Coverage. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
* [#147](https://github.com/nHapiNET/nHapi/pull/147), [#148](https://github.com/nHapiNET/nHapi/pull/148) Enable dependabot support to the repository
* [#201](https://github.com/nHapiNET/nHapi/pull/201) Normalize all the line endings.
* [#204](https://github.com/nHapiNET/nHapi/pull/204) Create Default GitHub Code Scanning Workflow
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.

### Breaking Changes
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).

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

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.
## [3.0.0-preview.2] - 2021-01-30
On top of the previous preview release this release includes the following changes:

### Bug Fixes
* [#118](https://github.com/nHapiNET/nHapi/pull/118) Add LongDateTimeFormatWithFactionOfSecond format for date parsing (fixes [#104](https://github.com/nHapiNET/nHapi/issues/104))
* [#134](https://github.com/nHapiNET/nHapi/pull/134) Fix spelling mistake
* [#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))
- [#118](https://github.com/nHapiNET/nHapi/pull/118) Add LongDateTimeFormatWithFactionOfSecond format for date parsing (fixes [#104](https://github.com/nHapiNET/nHapi/issues/104))
- [#134](https://github.com/nHapiNET/nHapi/pull/134) Fix spelling mistake
- [#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))
- [#185](https://github.com/nHapiNET/nHapi/pull/185) `Escape.cs` Improvements - hapi implementation port. (fixes for [#103](https://github.com/nHapiNET/nHapi/issues/103))
- [#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))
- [#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))
- [#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))
- [#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))
- [#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))

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

### Other
* [#117](https://github.com/nHapiNET/nHapi/pull/117) Add .vs into .gitignore file to ignore Visual Studio files
* [#129](https://github.com/nHapiNET/nHapi/pull/129) restructure project to a more modern project structure
* [#130](https://github.com/nHapiNET/nHapi/pull/130) Decouple NHapi source code generation from NHapi.Base
* [#135](https://github.com/nHapiNET/nHapi/pull/135) NHapi.Base > Formatted XML License Comments
- [#117](https://github.com/nHapiNET/nHapi/pull/117) Add .vs into .gitignore file to ignore Visual Studio files
- [#129](https://github.com/nHapiNET/nHapi/pull/129) restructure project to a more modern project structure
- [#130](https://github.com/nHapiNET/nHapi/pull/130) Decouple NHapi source code generation from NHapi.Base
- [#135](https://github.com/nHapiNET/nHapi/pull/135) NHapi.Base > Formatted XML License Comments
- [#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))
- [#140](https://github.com/nHapiNET/nHapi/pull/140) Add license for nHapi. (fixes [#119](https://github.com/nHapiNET/nHapi/issues/119))
- [#143](https://github.com/nHapiNET/nHapi/pull/143) Add StyleCopAnalyzers to main projects. (fixes [#138](https://github.com/nHapiNET/nHapi/issues/138))
- [#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))
- [#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))
- [#145](https://github.com/nHapiNET/nHapi/pull/145) Code Climate Coverage. (partially addresses [#124](https://github.com/nHapiNET/nHapi/issues/124))
- [#147](https://github.com/nHapiNET/nHapi/pull/147), [#148](https://github.com/nHapiNET/nHapi/pull/148) Enable dependabot support to the repository
- [#201](https://github.com/nHapiNET/nHapi/pull/201) Normalize all the line endings.
- [#204](https://github.com/nHapiNET/nHapi/pull/204) Create Default GitHub Code Scanning Workflow

## [3.0.0-preview.3] - 2021-06-02
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.3
## [3.0.0-preview.2] - 2021-01-30
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.2
## [3.0.0-preview.1] - 2020-11-02
### Enhancements (Submitted by haydenhall and milkshakeuk)
* [#112](https://github.com/nHapiNET/nHapi/pull/112) Adds support for netstandard2.0. (fixes [#61](https://github.com/nHapiNET/nHapi/issues/61))
https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0-preview.1

## [2.5.0.6] - 2016-09-13
### Fixes
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -19,23 +19,32 @@ This project is **NOT** affiliated with the HL7 organization. This software just

## Requirements

NHapi currently targets .NET Framework 3.5 and netstandard2.0.
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.

## Getting Started

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

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

```shell
PM > Install-Package nhapi
```
PM > Install-Package nHapi
```
Or Using the .NET Cli
```
dotnet add package nHapi

### .NET CLI
From your console of choice assuming you have dotnet core installed.
```shell
> dotnet add package nhapi
```
For more options please read the [Getting Started](https://github.com/nHapiNET/nHapi/wiki/Getting-Started) page of the wiki.

## Change Log
### nHapi 3.0.0 Announcement
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.
Please read the change log below for full details of and how they might affect you prior to upgrading.

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

## Related Projects

@@ -44,5 +53,6 @@ If you use nHapi you may find the following projects useful:
- [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.
- [HL7Fuse](https://github.com/dib0/HL7Fuse) - HL7 Message Hub / Integration Engine
- [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.
- [Reimers IHE Communication](https://github.com/jjrdk/reimers.ihe) - Provides support for both client side and server side HL7 transaction management.

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.
10 changes: 5 additions & 5 deletions build/nHapi.v3.nuspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>nHapi</id>
<id>nhapi</id>
<version>3.0.0</version>
<authors>Chad Chenoweth, Duane Edwards</authors>
<authors>Chad Chenoweth,Duane Edwards,Jake Aitchison</authors>
<license type="expression">MPL-2.0</license>
<projectUrl>https://github.com/nHapiNET/nHapi</projectUrl>
<repository type="git" url="https://github.com/nHapiNET/nHapi" />
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NHapi is a port of the original project HAPI.

@@ -27,8 +27,8 @@ This project is NOT affiliated with the HL7 organization. This software just con
</frameworkAssemblies>
</metadata>
<files>
<file src="..\dist\netstandard2.0\*.*" exclude="*V22_ZSegments.*" target="lib\netstandard2.0" />
<file src="..\dist\net35\*.*" exclude="*V22_ZSegments.*" target="lib\net35" />
<file src="..\dist\netstandard2.0\*.*" target="lib\netstandard2.0" />
<file src="..\dist\net35\*.*" target="lib\net35" />
<file src="..\README.md" target="docs\" />
</files>
</package>
5 changes: 3 additions & 2 deletions src/NHapi.Base/NHapi.Base.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Base</PackageId>
<PackageId>nhapi.base</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>The core components for parsing/encoding HL7 messages. Contains the base classes and interfaces for datatypes, segments, and messages.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V21/NHapi.Model.V21.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V21</PackageId>
<PackageId>nhapi.model.v21</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V22/NHapi.Model.V22.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V22</PackageId>
<PackageId>nhapi.model.v22</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.2 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V23/NHapi.Model.V23.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V23</PackageId>
<PackageId>nhapi.model.v23</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.3 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V231/NHapi.Model.V231.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V231</PackageId>
<PackageId>nhapi.model.v231</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.3.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V24/NHapi.Model.V24.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V24</PackageId>
<PackageId>nhapi.model.v24</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.4 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V25/NHapi.Model.V25.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V25</PackageId>
<PackageId>nhapi.model.v25</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.5 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V251/NHapi.Model.V251.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V251</PackageId>
<PackageId>nhapi.model.v251</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.5.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V26/NHapi.Model.V26.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V26</PackageId>
<PackageId>nhapi.model.v26</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.6 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V27/NHapi.Model.V27.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V27</PackageId>
<PackageId>nhapi.model.v27</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.7 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V271/NHapi.Model.V271.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V271</PackageId>
<PackageId>nhapi.model.v271</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.7.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V28/NHapi.Model.V28.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V28</PackageId>
<PackageId>nhapi.model.v28</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.8 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
5 changes: 3 additions & 2 deletions src/NHapi.Model.V281/NHapi.Model.V281.csproj
Original file line number Diff line number Diff line change
@@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nHapi.Model.V281</PackageId>
<PackageId>nhapi.model.v281</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards</Authors>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.8.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>

0 comments on commit 0318049

Please sign in to comment.