Ignixa.Extensions.FirelySdk5 0.5.2

dotnet add package Ignixa.Extensions.FirelySdk5 --version 0.5.2
                    
NuGet\Install-Package Ignixa.Extensions.FirelySdk5 -Version 0.5.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ignixa.Extensions.FirelySdk5" Version="0.5.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ignixa.Extensions.FirelySdk5" Version="0.5.2" />
                    
Directory.Packages.props
<PackageReference Include="Ignixa.Extensions.FirelySdk5" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ignixa.Extensions.FirelySdk5 --version 0.5.2
                    
#r "nuget: Ignixa.Extensions.FirelySdk5, 0.5.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ignixa.Extensions.FirelySdk5@0.5.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ignixa.Extensions.FirelySdk5&version=0.5.2
                    
Install as a Cake Addin
#tool nuget:?package=Ignixa.Extensions.FirelySdk5&version=0.5.2
                    
Install as a Cake Tool

Ignixa.Extensions.FirelySdk5

Firely SDK 5.x interoperability shims for bidirectional conversion between Ignixa types and Firely SDK types.

Overview

This package provides legacy support for users still on Firely SDK 5.x (5.10.3). It contains the same adapters as Ignixa.Extensions.FirelySdk6, but targets Firely SDK 5.x package versions.

If you're using Firely SDK 6.0+, use Ignixa.Extensions.FirelySdk6 instead.

Version Compatibility

Package Firely SDK Version Target Framework
Ignixa.Extensions.FirelySdk5 5.10.3 net9.0
Ignixa.Extensions.FirelySdk6 6.0.0 net9.0

Why Two Packages?

Firely SDK 6.0 introduced breaking changes in internal architecture, but the core interfaces (ITypedElement, ISourceNode, IElementDefinitionSummary) remained stable. This allows us to:

  • Share 100% of source code between SDK 5.x and 6.x versions (via file linking)
  • Zero code duplication - fixes apply to both versions automatically
  • Drop-in replacement - same namespace (Ignixa.Extensions.FirelySdk)

Installation

dotnet add package Ignixa.Extensions.FirelySdk5

Usage

All usage examples from Ignixa.Extensions.FirelySdk6 apply identically:

Ignixa → Firely SDK

using Ignixa.Extensions.FirelySdk;

// Convert Ignixa IElement to Firely ITypedElement
IElement ignixaElement = ...;
ITypedElement firelyElement = ignixaElement.ToTypedElement();

// Use with Firely SDK tools (FhirPath, Validator, etc.)
var navigator = firelyElement.ToFhirPathNavigator();
var result = navigator.Scalar("Patient.name.family");

Firely SDK → Ignixa

using Ignixa.Extensions.FirelySdk;

// Convert Firely ITypedElement to Ignixa IElement
ITypedElement firelyElement = ...;
IElement ignixaElement = firelyElement.ToIgnixaElement();

// Convert Firely ISourceNode to Ignixa IElement (schema-aware)
ISourceNode sourceNode = FhirJsonNode.Parse(json);
IElement element = sourceNode.ToElement(schema);

Breaking Changes from SDK 5.x → 6.x

The Firely SDK 6.0 release introduced these breaking changes:

  • Framework support: Minimum target changed from netstandard2.0 to netstandard2.1
  • Internal architecture: POCO parsers refactored, FhirPath engine moved to IScopedNode
  • Removed interfaces: IDeepCopyable, IBaseElementNavigator

None of these affect the adapter code, which only uses stable interfaces.

Migration Path

When you're ready to upgrade to Firely SDK 6.x:

  1. Update your project's Firely SDK package references to 6.0.0+
  2. Replace Ignixa.Extensions.FirelySdk5 with Ignixa.Extensions.FirelySdk6
  3. No code changes required (same namespace and API)
- <PackageReference Include="Hl7.Fhir.Base" Version="5.10.3" />
+ <PackageReference Include="Hl7.Fhir.Base" Version="6.0.0" />

- <PackageReference Include="Ignixa.Extensions.FirelySdk5" Version="x.y.z" />
+ <PackageReference Include="Ignixa.Extensions.FirelySdk6" Version="x.y.z" />

License

MIT License - See LICENSE for details.

Product 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.2 0 6/16/2026
0.5.0 38 6/15/2026
0.0.163 710 2/11/2026
0.0.160 153 2/9/2026
0.0.155 180 1/24/2026
0.0.151 148 1/21/2026
0.0.150 119 1/20/2026
0.0.149 124 1/19/2026
0.0.148 128 1/18/2026
0.0.142 154 1/12/2026
0.0.137 212 1/9/2026
0.0.127 218 12/29/2025
0.0.109 379 12/18/2025
0.0.101 345 12/16/2025
0.0.96 495 12/10/2025
0.0.87 485 12/8/2025
0.0.70 412 12/7/2025
0.0.68 235 12/7/2025
0.0.62 239 12/6/2025
0.0.59 192 12/5/2025
Loading failed