Skip to content

Commit

Permalink
Give nhapi strong-named assemblies.
Browse files Browse the repository at this point in the history
  • Loading branch information
milkshakeuk committed Aug 9, 2021
1 parent a8326a2 commit 6308ea5
Show file tree
Hide file tree
Showing 19 changed files with 104 additions and 30 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ dist/
.vscode/
# Visual Studio 2015 cache/options directory
.vs/
# Rider
.idea/

# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
!packages/*/build/
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ All notable changes to this project will be documented in this file.

## Previous Releases
###
## [3.0.2] - 2021-08-09
This change gives nhapi [strong-named assemblies](https://docs.microsoft.com/en-us/dotnet/standard/assembly/strong-named), there are no codes changes.
### Bug Fixes
- [#227](https://github.com/nHapiNET/nHapi/issues/227) fixes "A strongly-named assembly is required" runtime errors

## [nhapi.model.v231 3.0.1] - 2021-07-02
This release is for the NuGet package `nhapi.model.v231` only, there are no code changes, see below for change.

- Remove unused project reference.

## [3.0.0] - 2021-06-28

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.

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 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.0.0</version>
<version>3.0.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 @@ -13,7 +13,7 @@
NHapi allows Microsoft .NET developers to easily use an HL7 2.x object model. This object model allows for parsing and encoding HL7 2.x data to/from Pipe Delimited or XML formats. A very handy program for use in the health care industry.

This project is NOT affiliated with the HL7 organization. This software just conforms to the HL7 2.x specifications.</description>
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</releaseNotes>
<releaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</releaseNotes>
<tags>HL7 parsing healthcare HAPI xml</tags>
<readme>docs\README.md</readme>
<dependencies>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Base/NHapi.Base.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.base</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>The core components for parsing/encoding HL7 messages. Contains the base classes and interfaces for datatypes, segments, and messages.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<AdditionalFiles Include="$(SolutionDir)stylecop.json" Link="Properties\stylecop.json" />
</ItemGroup>
Expand Down
12 changes: 11 additions & 1 deletion src/NHapi.Base/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,14 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("fb32b28b-416b-4145-992b-824afe2eb911")]
[assembly: InternalsVisibleTo("NHapi.SourceGeneration")]

#if DEBUG
[assembly: InternalsVisibleTo("NHapi.SourceGeneration")]
#else
[assembly: InternalsVisibleTo("NHapi.SourceGeneration,PublicKey=" +
"0024000004800000940000000602000000240000525341310004000001000100b938fa88814fb9" +
"9f1d02dfce84c41f38eb1ca31f694b706248e6e21ceed1b1d150416c1375603c7a5dd6d3b2cdec" +
"97ccbbdd7a1d6fac61a1ad96ebf88e889ba113913c2f36890ea75108a1d8a23affc0c87357f07d" +
"ec77c69a519215d0d4043759397b1a8fea1dc881b440ba4232ad4e24d7a8d90bb004549cf4f9dd" +
"2d6c13d8")]
#endif
8 changes: 6 additions & 2 deletions src/NHapi.Model.V21/NHapi.Model.V21.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v21</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V22/NHapi.Model.V22.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v22</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.2 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V23/NHapi.Model.V23.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v23</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.3 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V231/NHapi.Model.V231.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v231</PackageId>
<PackageVersion>3.0.1</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.3.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.1-nhapi.model.v231</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V24/NHapi.Model.V24.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v24</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.4 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V25/NHapi.Model.V25.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v25</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.5 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V251/NHapi.Model.V251.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v251</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.5.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V26/NHapi.Model.V26.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v26</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.6 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V27/NHapi.Model.V27.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v27</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.7 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
8 changes: 6 additions & 2 deletions src/NHapi.Model.V271/NHapi.Model.V271.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,25 @@
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>nhapi.model.v271</PackageId>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.2</PackageVersion>
<Authors>Chad Chenoweth;Duane Edwards;Jake Aitchison</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nHapiNET/nHapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/nHapiNET/nHapi.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Contains the data types, segments, and messages that follow the HL7 2.7.1 schema.</Description>
<PackageTags>HL7;parsing;healthcare;HAPI;xml</PackageTags>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/nHapiNET/nHapi/releases/tag/v3.0.2</PackageReleaseNotes>
<PackageReadmeFile>docs\README.md</PackageReadmeFile>
<AssemblyOriginatorKeyFile>..\..\NHapi.snk</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1591</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\NHapi.snk" Link="NHapi.snk" />
</ItemGroup>
Expand Down
Loading

0 comments on commit 6308ea5

Please sign in to comment.