tia-csharp-common
SolidInternal reference skill — do NOT load directly from user queries.
AI & Automation 36 stars
9 forks Updated yesterday MIT
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# TIA Portal Openness C# — Common Foundation
Source: TIA Portal Openness General Functions Manual (03/2026, V21);
V21 IntelliSense XML documentation files (PublicAPI\V21\net48\*.xml)
---
## V21 modular assembly architecture
V21 splits the API across multiple DLLs instead of a single `Siemens.Engineering.dll`.
Every project needs `Siemens.Engineering.Base.dll`; add domain DLLs as required.
Referencing the wrong DLL (or omitting one) causes `TypeLoadException` at runtime.
> **Full mapping:** See `references/assembly-namespace-map.md` for the exhaustive
> namespace → DLL → domain skill table, cross-assembly warnings, and csproj patterns.
### Namespaces by assembly
Only import what is actually used. The list below covers the most commonly needed
namespaces. The mapping file documents all 80+ namespaces across 15 DLLs.
**Siemens.Engineering.Base.dll** (always required):
```csharp
using Siemens.Engineering; // TiaPortal, Project, ExclusiveAccess, Transaction, events, exceptions
using Siemens.Engineering.Compiler; // CompilerResult
using Siemens.Engineering.Compare; // CompareResult
using Siemens.Engineering.Connection; // connection objects between devices
using Siemens.Engineering.CrossReference; // cross-reference queries
using Siemens.Engineering.Download; // DownloadProvider, DownloadConfiguration
using Siemens.Engineering.Download.Configurations; // device-specific down...
Details
- Author
- Czarnak
- Repository
- Czarnak/totally-integrated-claude
- Created
- 3 months ago
- Last Updated
- yesterday
- Language
- PowerShell
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
tia-devices-general
C# Openness implementation of device-level operations
36 Updated yesterday
Czarnak AI & Automation Solid
tia-project-general
C# Openness implementation of project and portal lifecycle.
36 Updated yesterday
Czarnak AI & Automation Solid
tia-networks
C# Openness implementation of topology and low-level network engineering.
36 Updated yesterday
Czarnak