Vion.Contracts 0.2.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Vion.Contracts --version 0.2.0
                    
NuGet\Install-Package Vion.Contracts -Version 0.2.0
                    
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="Vion.Contracts" Version="0.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Vion.Contracts" Version="0.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Vion.Contracts" />
                    
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 Vion.Contracts --version 0.2.0
                    
#r "nuget: Vion.Contracts, 0.2.0"
                    
#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 Vion.Contracts@0.2.0
                    
#: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=Vion.Contracts&version=0.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Vion.Contracts&version=0.2.0
                    
Install as a Cake Tool

Vion.Contracts

Shared contracts — MQTT topics, payloads, FlatBuffers schemas, and introspection models — used by the Vion Dale SDK and the Vion Dale runtime.

This package exists as its own repository because it is consumed by both public and private code, and has a release cadence independent of either.

Install

dotnet add package Vion.Contracts

Targets netstandard2.1.

Source-available

This repository is source-available. Issues and pull requests are not accepted from outside the vion-iot organization. For questions or to report a problem, see SUPPORT.md.

Releases

Versions are driven by git tags. There is no version number in any .csproj.

Trigger Published version Destination
Push to main 0.0.0-ci.{run_number} Private Azure DevOps feed only — for internal integration testing, never depend on from shipped code
Push tag v0.2.0 0.2.0 Private feed + nuget.org
Push tag v0.3.0-preview.1 0.3.0-preview.1 Private feed + nuget.org (treated as pre-release)

Cutting a release

Prerequisites:

  • main is green on the commit you want to release.
  • You have gh installed and authenticated (gh auth status).
# Stable release:
gh release create v0.2.0 --target main --generate-notes \
  --title "v0.2.0" --notes "Short release summary."

# Pre-release (add --prerelease for the UI badge; NuGet detects pre-release
# automatically from the SemVer suffix):
gh release create v0.2.0-preview.1 --target main --prerelease --generate-notes \
  --title "v0.2.0-preview.1" --notes "What this preview validates."

Creating the release pushes the tag, which triggers publish.yml:

  1. Builds and packs with Version taken from the tag (strips the v prefix).
  2. Pushes .nupkg + .snupkg to the private Azure DevOps feed.
  3. Publishes to nuget.org using Trusted Publishing (short-lived OIDC token — no API key stored).

Verify the result under the VION-IoT profile on nuget.org.

Version immutability

Once a version is published to nuget.org, the version ID is permanent. You can unlist a version (which hides it from search and dotnet add package), but the ID stays burned — you cannot re-upload the same version, even after yanking. Pick the next number for any subsequent change, even a tiny fix.

Required configuration

One-time setup per repo; flag this if you fork or rotate credentials:

  • GitHub secret AZURE_DEVOPS_PAT — PAT with Packaging: Read & write on the Azure DevOps feed.
  • GitHub secret NUGET_USERindividual nuget.org username that is a member of the org owning the Trusted Publishing policy. Not the org name. (Docs use contoso-bot as the example — this matters; setting it to the org name produces No matching trust policy owned by user 'X' was found.)
  • Trusted Publishing policy on nuget.org: Package Owner VION-IoT (the org), Repository Owner VION-IoT, Repository vion-contracts, Workflow File publish.yml. See NuGet's Trusted Publishing docs for the UI walkthrough.

License

Apache 2.0 — see LICENSE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Vion.Contracts:

Package Downloads
Vion.Dale.Sdk

Dale SDK for developing logic blocks

Vion.ServiceProvider.Sdk

SDK for building service providers that integrate with the Vion IoT platform. Handles MQTT connection, registration flow, setup schema exchange, message handler registration, and health reporting.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.10.1 302 5/15/2026
0.10.0 80 5/13/2026
0.9.0 67 5/13/2026
0.8.1 487 5/13/2026
0.8.0 74 5/13/2026
0.7.1 533 5/12/2026
0.7.0 511 5/11/2026
0.6.0 96 5/11/2026
0.5.0 902 5/11/2026
0.4.2 104 4/23/2026
0.4.1 101 4/23/2026
0.4.0 577 4/21/2026
0.3.0 494 4/17/2026
0.2.0 142 4/16/2026
0.2.0-preview.3 51 4/16/2026