![]() |
VOOZH | about |
dotnet add package SiLA2.Core --version 10.2.4
NuGet\Install-Package SiLA2.Core -Version 10.2.4
<PackageReference Include="SiLA2.Core" Version="10.2.4" />
<PackageVersion Include="SiLA2.Core" Version="10.2.4" />Directory.Packages.props
<PackageReference Include="SiLA2.Core" />Project file
paket add SiLA2.Core --version 10.2.4
#r "nuget: SiLA2.Core, 10.2.4"
#:package SiLA2.Core@10.2.4
#addin nuget:?package=SiLA2.Core&version=10.2.4Install as a Cake Addin
#tool nuget:?package=SiLA2.Core&version=10.2.4Install as a Cake Tool
| SiLA Homepage | https://sila-standard.com |
| Chat group | Join the group on Slack |
| Maintainer | Christoph Pohl (@Chamundi) |
| Vulnerability Policy | https://sila-standard.com/vulnerability_policy |
There´s also a Web Application SiLA2.UniversalClient.Net to control your running SiLA2.Servers in your local network.
If you want to see all the Modules and Components you should start SiLA2.Temperature.Server.App and afterwards SiLA2.Temperature.Server.App.Webfrontend. Running the Server the first time, you´ll have to add an exception to your browser once due to the self-signed certificate which was created by the Server if there´s none.
| Target Framework | Supported Platforms |
|---|---|
| .NET 10.0+ | Windows, Linux, macOS (full feature support) |
| .NET Standard 2.0 | .NET Framework 4.6.1+, .NET Core 2.0+, Mono 5.4+, Xamarin |
The following core NuGet packages multi-target both net10.0 and netstandard2.0 for broader compatibility:
This allows SiLA2 client applications to be built targeting .NET Framework 4.6.1+ or other .NET Standard 2.0 compatible platforms.
git clone --recurse-submodules https://gitlab.com/SiLA2/sila_csharp.gitgit submodule initgit submodule updateThe SiLA2.Core NuGet package automatically provides $(SiLA2XsltPath) and $(SiLA2ProtoPath) via MSBuild props:
<Target Name="ProtoPreparation" BeforeTargets="PrepareForBuild">
<Error Condition="'$(SiLA2XsltPath)' == ''" Text="SiLA2XsltPath is not set. Ensure SiLA2.Core NuGet package v10.2.3+ is referenced." />
<Message Text="Copying Base Protos..." Importance="high" />
<Copy SourceFiles="$(SiLA2ProtoPath)SiLAFramework.proto" DestinationFolder="Protos/" />
<Message Text="Started XmlTransformation TemperatureController-v1_0.sila.xml -> TemperatureController.proto" Importance="high" />
<XslTransformation XslInputPath="$(SiLA2XsltPath)fdl2proto.xsl" XmlInputPaths="$(MSBuildProjectDirectory)/Features/TemperatureController-v1_0.sila.xml" OutputPaths="Protos/TemperatureController.proto" />
<Message Text="Finished XmlTransformation" Importance="high" />
</Target>
<Target Name="ProtoGeneration" DependsOnTargets="ProtoPreparation" AfterTargets="ProtoPreparation">
<Message Text="Compiling Protos..." Importance="high" />
<ItemGroup>
<Protobuf Include="Protos\TemperatureController.proto" ProtoRoot="Protos\" GrpcServices="Both" OutputDir="Services\" />
<Protobuf Update="Protos\SiLAFramework.proto" ProtoRoot="Protos\" CompileOutputs="false" />
</ItemGroup>
<Message Text="Finished Compiling Protos..." Importance="high" />
</Target>
<details> <summary><b>Legacy Support (SiLA2.Core < 10.2.3)</b></summary>
For older versions of SiLA2.Core that don't include the MSBuild props, add this fallback target to download the required files:
<Target Name="DownloadContentFiles" BeforeTargets="ProtoPreparation" Condition="'$(SiLA2XsltPath)' == ''">
<DownloadFile SourceUrl="https://gitlab.com/SiLA2/sila_base/-/raw/master/xslt/fdl2proto.xsl" DestinationFolder="$(MSBuildProjectDirectory)/Features" DestinationFileName="fdl2proto.xsl" />
<DownloadFile SourceUrl="https://gitlab.com/SiLA2/sila_base/-/raw/master/xslt/fdl2proto-messages.xsl" DestinationFolder="$(MSBuildProjectDirectory)/Features" DestinationFileName="fdl2proto-messages.xsl" />
<DownloadFile SourceUrl="https://gitlab.com/SiLA2/sila_base/-/raw/master/xslt/fdl2proto-service.xsl" DestinationFolder="$(MSBuildProjectDirectory)/Features" DestinationFileName="fdl2proto-service.xsl" />
<DownloadFile SourceUrl="https://gitlab.com/SiLA2/sila_base/-/raw/master/xslt/fdl-validation.xsl" DestinationFolder="$(MSBuildProjectDirectory)/Features" DestinationFileName="fdl-validation.xsl" />
<DownloadFile SourceUrl="https://gitlab.com/SiLA2/sila_base/-/raw/master/protobuf/SiLAFramework.proto" DestinationFolder="$(MSBuildProjectDirectory)/Protos" DestinationFileName="SiLAFramework.proto" />
</Target>
<Target Name="ProtoPreparation" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<_XsltPath Condition="'$(SiLA2XsltPath)' != ''">$(SiLA2XsltPath)</_XsltPath>
<_XsltPath Condition="'$(SiLA2XsltPath)' == ''">$(MSBuildProjectDirectory)/Features/</_XsltPath>
<_ProtoPath Condition="'$(SiLA2ProtoPath)' != ''">$(SiLA2ProtoPath)</_ProtoPath>
<_ProtoPath Condition="'$(SiLA2ProtoPath)' == ''">$(MSBuildProjectDirectory)/Protos/</_ProtoPath>
</PropertyGroup>
<Message Text="Copying Base Protos..." Importance="high" />
<Copy SourceFiles="$(_ProtoPath)SiLAFramework.proto" DestinationFolder="Protos/" Condition="'$(SiLA2ProtoPath)' != ''" />
<XslTransformation XslInputPath="$(_XsltPath)fdl2proto.xsl" XmlInputPaths="$(MSBuildProjectDirectory)/Features/TemperatureController-v1_0.sila.xml" OutputPaths="Protos/TemperatureController.proto" />
</Target>
<Target Name="ProtoGeneration" DependsOnTargets="ProtoPreparation" AfterTargets="ProtoPreparation">
<ItemGroup>
<Protobuf Include="Protos\TemperatureController.proto" ProtoRoot="Protos\" GrpcServices="Both" OutputDir="Services\" />
<Protobuf Update="Protos\SiLAFramework.proto" ProtoRoot="Protos\" CompileOutputs="false" />
</ItemGroup>
</Target>
</details>
Visit the SiLA2 C# Wiki
Visit https://gitlab.com/SiLA2/sila_csharp/-/issues
It´s Open Source (License >> MIT)...feel free to use or contribute...
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on SiLA2.Core:
| Package | Downloads |
|---|---|
|
SiLA2.Client
SiLA2.Client Basic Package |
|
|
SiLA2.Communication
Dynamic Protobuf Generation for SiLA2 Properties and Commands. |
|
|
SiLA2.Frontend.Razor
Web Frontend Extension for SiLA2.Server Package |
|
|
SiLA2.AspNetCore
AspNetCore Utilities |
|
|
Inheco.SiLA2.Incubator.Server.Features
SiLA2 Server Driver including control library of INHECO Single Plate Incubator devices. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.2.4 | 1,417 | 3/13/2026 |
| 10.2.3 | 406 | 3/7/2026 |
| 10.2.2 | 850 | 2/12/2026 |
| 10.2.1 | 471 | 1/25/2026 |
| 10.2.0 | 635 | 12/23/2025 |
| 10.1.0 | 597 | 11/29/2025 |
| 10.0.0 | 618 | 11/11/2025 |
| 9.0.4 | 990 | 6/25/2025 |
| 9.0.3 | 508 | 6/21/2025 |
| 9.0.2 | 1,187 | 1/6/2025 |
| 9.0.1 | 574 | 11/17/2024 |
| 9.0.0 | 479 | 11/13/2024 |
| 8.1.2 | 897 | 10/20/2024 |
| 8.1.1 | 1,435 | 8/31/2024 |
| 8.1.0 | 1,675 | 2/11/2024 |
| 8.0.0 | 1,131 | 11/15/2023 |
| 7.5.4 | 2,611 | 10/27/2023 |
| 7.5.3 | 1,136 | 7/19/2023 |
| 7.5.2 | 1,135 | 7/3/2023 |
| 7.5.1 | 735 | 6/2/2023 |