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.2 metapackage release.
  • Loading branch information
milkshakeuk committed Jan 24, 2023
1 parent b2f0c7f commit 126f0cc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.

## Previous Releases

## [3.2.1] - 2023-01-24
## [3.2.2] - 2023-01-24

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

Expand Down
Binary file modified build/.nuget/NuGet.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions build/default.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ Task Package -depends Build {

(Get-Content $nuspec).Replace('commit=""', 'commit="' + $commit + '"') | Set-Content $nuspec

New-Item -ItemType directory -Force -Path ..\dist\net35
New-Item -ItemType directory -Force -Path ..\dist\netstandard2.0
New-Item -ItemType file -Path ..\dist\net35 -Name _._
New-Item -ItemType file -Path ..\dist\netstandard2.0 -Name _._

Exec { .nuget\nuget pack $nuspec -OutputDirectory ..\dist }

(Get-Content $nuspec).Replace('commit="' + $commit + '"', 'commit=""') | Set-Content $nuspec
Expand Down
8 changes: 5 additions & 3 deletions build/nHapi.v3.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>nhapi</id>
<version>3.2.1</version>
<version>3.2.2</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,7 +14,7 @@ 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.1</releaseNotes>
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.2</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>
Expand Down Expand Up @@ -52,6 +52,8 @@ This nuget package is just a metapackage for conveniance.</description>
</dependencies>
</metadata>
<files>
<file src="..\dist\netstandard2.0\_._" target="lib\netstandard2.0\" />
<file src="..\dist\net35\_._" target="lib\net35\" />
<file src="..\README.md" target="docs\" />
</files>
</package>

0 comments on commit 126f0cc

Please sign in to comment.