Skip to content

Commit 126f0cc

Browse files
committed
Improve nhapi metapackage nuspec - add target frameworks.
Prep 3.2.2 metapackage release.
1 parent b2f0c7f commit 126f0cc

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.
88

99
## Previous Releases
1010

11-
## [3.2.1] - 2023-01-24
11+
## [3.2.2] - 2023-01-24
1212

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

build/.nuget/NuGet.exe

-327 KB
Binary file not shown.

build/default.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ Task Package -depends Build {
8787

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

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+
9095
Exec { .nuget\nuget pack $nuspec -OutputDirectory ..\dist }
9196

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

build/nHapi.v3.nuspec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.2.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>
@@ -14,7 +14,7 @@ NHapi allows Microsoft .NET developers to easily use an HL7 2.x object model. Th
1414
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.
1515

1616
This nuget package is just a metapackage for conveniance.</description>
17-
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.1</releaseNotes>
17+
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.2.2</releaseNotes>
1818
<tags>HL7 ER7 XML parsing healthcare HAPI</tags>
1919
<repository type="git" url="https://github.com/nHapiNET/nHapi.git" commit=""/>
2020
<readme>docs\README.md</readme>
@@ -52,6 +52,8 @@ This nuget package is just a metapackage for conveniance.</description>
5252
</dependencies>
5353
</metadata>
5454
<files>
55+
<file src="..\dist\netstandard2.0\_._" target="lib\netstandard2.0\" />
56+
<file src="..\dist\net35\_._" target="lib\net35\" />
5557
<file src="..\README.md" target="docs\" />
5658
</files>
5759
</package>

0 commit comments

Comments
 (0)