File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.
8
8
9
9
## Previous Releases
10
10
11
- ## [ 3.2.1 ] - 2023-01-24
11
+ ## [ 3.2.2 ] - 2023-01-24
12
12
13
13
This release is purely superficial, it does not fix or add anything.
14
14
Original file line number Diff line number Diff line change @@ -87,6 +87,11 @@ Task Package -depends Build {
87
87
88
88
(Get-Content $nuspec ).Replace(' commit=""' , ' commit="' + $commit + ' "' ) | Set-Content $nuspec
89
89
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
+
90
95
Exec { .nuget\nuget pack $nuspec - OutputDirectory ..\dist }
91
96
92
97
(Get-Content $nuspec ).Replace(' commit="' + $commit + ' "' , ' commit=""' ) | Set-Content $nuspec
Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" utf-8" ?>
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd" >
3
3
<metadata >
4
4
<id >nhapi</id >
5
- <version >3.2.1 </version >
5
+ <version >3.2.2 </version >
6
6
<authors >Chad Chenoweth,Duane Edwards,Jake Aitchison</authors >
7
7
<license type =" expression" >MPL-2.0</license >
8
8
<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
14
14
This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.
15
15
16
16
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 >
18
18
<tags >HL7 ER7 XML parsing healthcare HAPI</tags >
19
19
<repository type =" git" url =" https://github.com/nHapiNET/nHapi.git" commit =" " />
20
20
<readme >docs\README.md</readme >
@@ -52,6 +52,8 @@ This nuget package is just a metapackage for conveniance.</description>
52
52
</dependencies >
53
53
</metadata >
54
54
<files >
55
+ <file src =" ..\dist\netstandard2.0\_._" target =" lib\netstandard2.0\" />
56
+ <file src =" ..\dist\net35\_._" target =" lib\net35\" />
55
57
<file src =" ..\README.md" target =" docs\" />
56
58
</files >
57
59
</package >
You can’t perform that action at this time.
0 commit comments