Skip to content

Commit

Permalink
Improve nhapi metapackage nuspec - add target frameworks.
Browse files Browse the repository at this point in the history
Prep 3.2.1 metapackage release.
  • Loading branch information
milkshakeuk committed Jan 24, 2023
1 parent 23ce133 commit b2f0c7f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 17 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All notable changes to this project will be documented in this file.

## [3.X.X] - TBC

## Previous Releases

## [3.2.1] - 2023-01-24

This release is purely superficial, it does not fix or add anything.

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

See [3.2.0](#320---2023-01-20) release for latest changes.

By @milkshakeuk

## [3.2.0] - 2023-01-20

Various new `ParserOptions` have been added, see the [wiki](https://github.com/nHapiNET/nHapi/wiki/Parser-Options) for more information.
Expand Down Expand Up @@ -38,8 +50,6 @@ There is no difference in behaviour when using this metapackage vs the previous

- [#288](https://github.com/nHapiNET/nHapi/pull/288) Update Github Actions to use OS matrix. By @milkshakeuk

## Previous Releases

## [3.1.1] - 2022-02-19

### Enhancements
Expand Down
47 changes: 32 additions & 15 deletions build/nHapi.v3.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>nhapi</id>
<version>3.2.0</version>
<version>3.2.1</version>
<authors>Chad Chenoweth,Duane Edwards,Jake Aitchison</authors>
<license type="expression">MPL-2.0</license>
<projectUrl>https://github.com/nHapiNET/nHapi</projectUrl>
Expand All @@ -14,24 +14,41 @@ NHapi allows Microsoft .NET developers to easily use an HL7 2.x object model. Th
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.

This nuget package is just a metapackage for conveniance.</description>
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.0</releaseNotes>
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.1</releaseNotes>
<tags>HL7 ER7 XML parsing healthcare HAPI</tags>
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" commit=""/>
<readme>docs\README.md</readme>
<dependencies>
<dependency id="nhapi.base" version="3.2.0" />
<dependency id="nhapi.model.v21" version="3.2.0" />
<dependency id="nhapi.model.v22" version="3.2.0" />
<dependency id="nhapi.model.v23" version="3.2.0" />
<dependency id="nhapi.model.v24" version="3.2.0" />
<dependency id="nhapi.model.v25" version="3.2.0" />
<dependency id="nhapi.model.v26" version="3.2.0" />
<dependency id="nhapi.model.v27" version="3.2.0" />
<dependency id="nhapi.model.v28" version="3.2.0" />
<dependency id="nhapi.model.v231" version="3.2.0" />
<dependency id="nhapi.model.v251" version="3.2.0" />
<dependency id="nhapi.model.v271" version="3.2.0" />
<dependency id="nhapi.model.v281" version="3.2.0" />
<group targetFramework=".NETFramework3.5">
<dependency id="nhapi.base" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v21" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v22" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v23" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v24" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v25" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v26" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v27" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v28" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v231" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v251" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v271" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v281" version="3.2.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="nhapi.base" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v21" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v22" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v23" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v24" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v25" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v26" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v27" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v28" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v231" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v251" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v271" version="3.2.0" exclude="Build,Analyzers" />
<dependency id="nhapi.model.v281" version="3.2.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit b2f0c7f

Please sign in to comment.