jfk-solutions.TiaFileFormat
2026.9.11.1
dotnet add package jfk-solutions.TiaFileFormat --version 2026.9.11.1
NuGet\Install-Package jfk-solutions.TiaFileFormat -Version 2026.9.11.1
<PackageReference Include="jfk-solutions.TiaFileFormat" Version="2026.9.11.1" />
<PackageVersion Include="jfk-solutions.TiaFileFormat" Version="2026.9.11.1" />
<PackageReference Include="jfk-solutions.TiaFileFormat" />
paket add jfk-solutions.TiaFileFormat --version 2026.9.11.1
#r "nuget: jfk-solutions.TiaFileFormat, 2026.9.11.1"
#:package jfk-solutions.TiaFileFormat@2026.9.11.1
#addin nuget:?package=jfk-solutions.TiaFileFormat&version=2026.9.11.1
#tool nuget:?package=jfk-solutions.TiaFileFormat&version=2026.9.11.1
Info
TiaFileFormat a Library to access all Tia Portal project Files from Version V10.5 - V20
Package
https://www.nuget.org/packages/jfk-solutions.TiaFileFormat/
Homepage
https://github.com/jfk-solutions/TiaFileFormat
Documentation
- AutomationML export and cross references: TiaFileFormat vs. TIA Portal Openness
- TIA file format storage overview
Project loading
The default loading mode reads project data sequentially and works with project archives, standalone database streams, and unpacked projects without an index:
using var provider = TiaFileProvider.CreateFromSingleFile(projectPath);
var project = TiaProject.Load(provider);
Unpacked projects with a supported System/PEData.idx can load database object
payloads on demand instead:
var project = TiaProject.Load(provider, useIndex: true);
To ignore an existing index and force the original sequential behavior:
var project = TiaProject.Load(provider, useIndex: false);
The same useIndex parameter is available on TiaDatabaseFile.Load.
Indexed loading also defers business-object headers and object allocation. Use
the type-aware block lookup to preserve that behavior during exports:
foreach (var storageObject in CodeBlockConverter.FindConvertibleObjects(
project.Database, prioritizeLargeObjects: true))
{
// Convert matching PLC block objects in a balanced order for parallel export.
}
Omit prioritizeLargeObjects or set it to false when the original database order
is required.
StorageObjectCount, MaterializedStorageObjectCount, IndexedHeaderReadCount,
IndexedPayloadReadCount, IndexedPayloadBytesRead, and IndexedHashReadCount
show how many indexed objects and payloads were actually touched. Accessing the
legacy StorageObjectDictionary, StorageObjects, or AllStorageObjects
properties still materializes every object to preserve existing behavior.
Explicitly enabling indexed loading uses a supported index from an unpacked project.
If the index is missing or belongs to an older project format, the loader ignores it
automatically and uses the sequential path. A present but malformed index still causes
loading to fail. Archives remain available through the default or explicitly disabled
mode.
Offline block call paths
BlockCallPathCatalogBuilder builds call sites, instance-DB associations, and
complete calling paths directly from an offline TIA project:
using TiaFileFormat.Wrappers.CodeBlocks.CallPaths;
var catalog = BlockCallPathCatalogBuilder.Build(project);
foreach (var path in catalog.CallingPaths)
{
Console.WriteLine(path.DisplayName);
}
If the blocks were converted already, avoid loading them again:
var catalog = BlockCallPathCatalogBuilder.BuildFromBlocks(blocks);
The protocol-neutral BuildFromCatalogData entry point is available to online
adapters and other block sources that already provide resolved call sites.
Licensing
Visit http://jfk-solutions.de for more information.
How To Release
- Build release Build
- Run IntelliLock and Protect Assemblies
- Run nuget\CreateNuget.ps1
- Upload Nuget
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Bcl.Memory (>= 10.0.10)
- Microsoft.Data.Sqlite (>= 10.0.8)
- Nullable (>= 1.3.1)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- System.Text.Json (>= 10.0.1)
- zlib.net-mutliplatform (>= 1.0.8)
-
net10.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Data.Sqlite (>= 10.0.8)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- zlib.net-mutliplatform (>= 1.0.8)
-
net6.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Data.Sqlite (>= 10.0.8)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- zlib.net-mutliplatform (>= 1.0.8)
-
net7.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Data.Sqlite (>= 10.0.8)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- zlib.net-mutliplatform (>= 1.0.8)
-
net8.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Data.Sqlite (>= 10.0.8)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- zlib.net-mutliplatform (>= 1.0.8)
-
net9.0
- BaseHmiTypes (>= 2026.8.5.1)
- BouncyCastle.Cryptography (>= 2.6.2)
- Microsoft.Data.Sqlite (>= 10.0.8)
- SQLitePCLRaw.bundle_e_sqlite3 (>= 3.0.5)
- zlib.net-mutliplatform (>= 1.0.8)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on jfk-solutions.TiaFileFormat:
| Package | Downloads |
|---|---|
|
jfk-solutions.TiaFileFormat.S7CommPlus
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.9.11.1 | 25 | 9/11/2026 |
| 2026.9.4.1 | 82 | 9/4/2026 |
| 2026.8.31 | 46 | 9/1/2026 |
| 2026.8.27.3 | 51 | 8/27/2026 |
| 2026.8.27.2 | 62 | 8/27/2026 |
| 2026.8.25.2 | 68 | 8/25/2026 |
| 2026.8.25.1 | 41 | 8/25/2026 |
| 2026.8.5.1 | 186 | 8/5/2026 |
| 2026.5.20.1 | 1,216 | 5/20/2026 |
| 2026.4.13.1 | 171 | 4/13/2026 |
| 2026.3.13.1 | 658 | 3/13/2026 |
| 2026.2.23.1 | 92 | 2/23/2026 |
| 2026.1.12.1 | 87 | 1/12/2026 |
| 2026.1.8.1 | 370 | 1/8/2026 |
| 2025.12.26.3 | 91 | 12/26/2025 |
| 2025.12.26.2 | 75 | 12/26/2025 |
| 2025.12.26.1 | 91 | 12/26/2025 |
| 2025.12.19.1 | 100 | 12/19/2025 |