Skip to content

Commit 81479d9

Browse files
committed
Remove unused project reference from nhapi.model.v231
1 parent 0318049 commit 81479d9

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ All notable changes to this project will be documented in this file.
77

88
## Previous Releases
99
###
10+
## [nhapi.model.v231 3.0.1] - 2021-07-02
11+
This release is for the NuGet package `nhapi.model.v231` only, there are no code changes, see below for change.
12+
13+
- Remove unused project reference.
14+
1015
## [3.0.0] - 2021-06-28
1116

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

build/default.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ properties {
2525
Task Default -depends Build
2626

2727
Task Clean {
28-
Remove-Item *.nupkg
28+
Remove-Item ..\dist\*.nupkg
2929
Remove-Item ..\dist\net35\*.* -ErrorAction Ignore
3030
Remove-Item ..\dist\netstandard2.0\*.* -ErrorAction Ignore
3131

32-
Get-ChildItem -inc bin -rec | Remove-Item -rec -force
33-
Get-ChildItem -inc obj -rec | Remove-Item -rec -force
32+
Get-ChildItem -path ..\ -inc bin -rec | Remove-Item -rec -force
33+
Get-ChildItem -path ..\ -inc obj -rec | Remove-Item -rec -force
3434
}
3535

3636
Task Build -depends Clean {
@@ -77,17 +77,17 @@ Task Package -depends Build {
7777
New-Item -ItemType directory -Force -Path ..\dist\netstandard2.0
7878

7979
foreach($project in $projects) {
80-
Copy-Item "..\src\$project\bin\Release\net35\*.dll" ..\dist\net35
81-
Copy-Item "..\src\$project\bin\Release\net35\*.xml" ..\dist\net35
80+
Copy-Item "..\src\$project\bin\$projectConfig\net35\*.dll" ..\dist\net35
81+
Copy-Item "..\src\$project\bin\$projectConfig\net35\*.xml" ..\dist\net35
8282

83-
Copy-Item "..\src\$project\bin\Release\netstandard2.0\*.dll" ..\dist\netstandard2.0
84-
Copy-Item "..\src\$project\bin\Release\netstandard2.0\*.xml" ..\dist\netstandard2.0
83+
Copy-Item "..\src\$project\bin\$projectConfig\netstandard2.0\*.dll" ..\dist\netstandard2.0
84+
Copy-Item "..\src\$project\bin\$projectConfig\netstandard2.0\*.xml" ..\dist\netstandard2.0
8585
}
8686

8787
Exec { .nuget\nuget pack .\nHapi.v3.nuspec -OutputDirectory ..\dist }
8888

8989
foreach($project in $projects) {
90-
Exec { dotnet pack "..\src\$project\$project.csproj" -c Release --no-build --no-restore -o "..\dist" }
90+
Exec { dotnet pack "..\src\$project\$project.csproj" -c $projectConfig --no-build --no-restore -o "..\dist" }
9191
}
9292
}
9393

src/NHapi.Model.V231/NHapi.Model.V231.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
55
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
66
<PackageId>nhapi.model.v231</PackageId>
7-
<PackageVersion>3.0.0</PackageVersion>
7+
<PackageVersion>3.0.1</PackageVersion>
88
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<Description>Contains the data types, segments, and messages that follow the HL7 2.3.1 schema.</Description>
1414
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
15-
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
15+
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.1-nhapi.model.v231</PackageReleaseNotes>
1616
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
1717
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
1818
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
@@ -37,7 +37,6 @@
3737

3838
<ItemGroup>
3939
<ProjectReference Include="..\NHapi.Base\NHapi.Base.csproj" />
40-
<ProjectReference Include="..\NHapi.Model.V24\NHapi.Model.V24.csproj" />
4140
</ItemGroup>
4241

4342
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">

0 commit comments

Comments
 (0)