fhir-ig-share-dotnet
1.0.4
dotnet add package fhir-ig-share-dotnet --version 1.0.4
NuGet\Install-Package fhir-ig-share-dotnet -Version 1.0.4
<PackageReference Include="fhir-ig-share-dotnet" Version="1.0.4" />
<PackageVersion Include="fhir-ig-share-dotnet" Version="1.0.4" />
<PackageReference Include="fhir-ig-share-dotnet" />
paket add fhir-ig-share-dotnet --version 1.0.4
#r "nuget: fhir-ig-share-dotnet, 1.0.4"
#:package fhir-ig-share-dotnet@1.0.4
#addin nuget:?package=fhir-ig-share-dotnet&version=1.0.4
#tool nuget:?package=fhir-ig-share-dotnet&version=1.0.4
fhir-ig-share-dotnet
A .NET Library for FHIR IGs
This library contains .net extensions and value sets for FHIR IGs. This library is based on .NET FHIR classes (https://github.com/FirelyTeam/firely-net-sdk).
Sources are available in https://github.com/HISB-Libraries/fhir-ig-dotnet/tree/main/GaTech.Chai.Share
Example:
public static Extension AddOrUpdateExtension(this List<Extension> extensions, Extension extension, bool allowDuplicateUrl = false)
{
var ext = extensions.Find(e => e.Url == extension.Url);
if (ext == null || allowDuplicateUrl == true)
{
extensions.Add(extension);
ext = extension;
}
else
ext.Value = extension.Value;
return ext;
}
This .net extension for FHIR extensions can be used as follows.
this.diagnosticReport.Extension.AddOrUpdateExtension(ext, true);
where ext is a new FHIR Extension.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Hl7.Fhir.R4 (>= 5.9.1)
- Hl7.Fhir.Specification.R4 (>= 5.9.1)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on fhir-ig-share-dotnet:
| Package | Downloads |
|---|---|
|
fhir-ig-mdi-dotnet
.NET Library for HL7 FHIR® Implementation Guide: Vital Records Medicolegal Death Investigation (MDI), 2.0.0-ci-build STU 2 |
|
|
fhir-ig-uscore-dotnet
.NET Library for US Core FHIR IG v5.0.1 - not all resource(s) are implemented. Only refereced ones from CBS and MDI are implemented |
|
|
fhir-ig-uspublichealth-dotnet
.NET Library for US Public Health FHIR IG v2.0.0 - not all resource(s) are implmented. Only reference(s) referred from CBS |
|
|
fhir-ig-odh-dotnet
.NET Library for FHIR ODH IG v1.1.0 - only Odh Usual Work implemeted |
|
|
fhir-ig-vrcl-dotnet
.NET Library for HL7 FHIR® Implementation Guide: Vital Records Common Library (VRCL), 2.0.0-trial-use |
GitHub repositories
This package is not used by any popular GitHub repositories.