![]() |
VOOZH | about |
dotnet add package Gapotchenko.FX.Versioning.Semantic --version 2026.7.2
NuGet\Install-Package Gapotchenko.FX.Versioning.Semantic -Version 2026.7.2
<PackageReference Include="Gapotchenko.FX.Versioning.Semantic" Version="2026.7.2" />
<PackageVersion Include="Gapotchenko.FX.Versioning.Semantic" Version="2026.7.2" />Directory.Packages.props
<PackageReference Include="Gapotchenko.FX.Versioning.Semantic" />Project file
paket add Gapotchenko.FX.Versioning.Semantic --version 2026.7.2
#r "nuget: Gapotchenko.FX.Versioning.Semantic, 2026.7.2"
#:package Gapotchenko.FX.Versioning.Semantic@2026.7.2
#addin nuget:?package=Gapotchenko.FX.Versioning.Semantic&version=2026.7.2Install as a Cake Addin
#tool nuget:?package=Gapotchenko.FX.Versioning.Semantic&version=2026.7.2Install as a Cake Tool
The module provides semantic versioning functionality that follows the Semantic Versioning 2.0.0 specification.
SemanticVersionSemanticVersion record from Gapotchenko.FX.Versioning.Semantic module represents a semantic version with support for major, minor, patch, prerelease, and build metadata components.
You can create a SemanticVersion in several ways:
using Gapotchenko.FX.Versioning;
// Using constructor with major, minor, and patch
var version1 = new SemanticVersion(1, 2, 3);
// With prerelease and build metadata
var version2 = new SemanticVersion(1, 2, 3, "alpha.1", "20240101");
// From a version string
var version3 = new SemanticVersion("1.2.3-alpha.1+20240101");
// Using Parse method
var version4 = SemanticVersion.Parse("2.0.0-beta.2");
The Parse method converts a string representation of a semantic version to a SemanticVersion object:
using Gapotchenko.FX.Versioning;
var version = SemanticVersion.Parse("1.2.3-alpha.1+20240101");
Console.WriteLine($"Major: {version.Major}, Minor: {version.Minor}, Patch: {version.Patch}");
Console.WriteLine($"Prerelease: {version.Prerelease}, Build: {version.Build}");
For scenarios where the input might be invalid, use TryParse:
if (SemanticVersion.TryParse("1.2.3", out var version))
Console.WriteLine($"Parsed version: {version}");
else
Console.WriteLine("Invalid version string");
A SemanticVersion exposes the following properties:
Major: The major version numberMinor: The minor version numberPatch: The patch version numberPrerelease: The prerelease identifier (e.g., "alpha.1", "beta.2", "rc.1")Build: The build metadata (e.g., "20240101", "abc123")using Gapotchenko.FX.Versioning;
var version = new SemanticVersion(1, 2, 3, "alpha.1", "20240101");
Console.WriteLine(version.Major); // 1
Console.WriteLine(version.Minor); // 2
Console.WriteLine(version.Patch); // 3
Console.WriteLine(version.Prerelease); // "alpha.1"
Console.WriteLine(version.Build); // "20240101"
SemanticVersion implements IComparable<SemanticVersion> and supports standard comparison operators:
using Gapotchenko.FX.Versioning;
var v1 = new SemanticVersion(1, 2, 3);
var v2 = new SemanticVersion(1, 2, 4);
var v3 = new SemanticVersion(1, 2, 3, "alpha.1");
Console.WriteLine(v1 < v2); // True
Console.WriteLine(v1 > v3); // True (release version is greater than prerelease)
Console.WriteLine(v1 == v2); // False
Prerelease versions are considered less than release versions:
var release = new SemanticVersion(1, 0, 0);
var prerelease = new SemanticVersion(1, 0, 0, "alpha.1");
Console.WriteLine(release > prerelease); // True
System.VersionSemanticVersion can be implicitly converted to System.Version:
using Gapotchenko.FX.Versioning;
using System;
var semanticVersion = new SemanticVersion(1, 2, 3, "alpha.1", "20240101");
Version version = semanticVersion; // Implicit conversion
Console.WriteLine(version); // "1.2.3"
Note that the conversion is lossy because System.Version does not support prerelease or build metadata.
System.VersionYou can create a SemanticVersion from a System.Version:
using Gapotchenko.FX.Versioning;
using System;
var version = new Version(1, 2, 3);
var semanticVersion = new SemanticVersion(version);
Console.WriteLine(semanticVersion); // "1.2.3"
SemanticVersion supports deconstruction for easy extraction of version components:
using Gapotchenko.FX.Versioning;
var version = new SemanticVersion(1, 2, 3);
// Deconstruct to major and minor
var (major, minor) = version;
// Deconstruct to major, minor, and patch
var (major2, minor2, patch) = version;
SemanticVersion provides a ToString() method that returns the standard semantic version string format:
using Gapotchenko.FX.Versioning;
var version = new SemanticVersion(1, 2, 3, "alpha.1", "20240101");
Console.WriteLine(version.ToString()); // "1.2.3-alpha.1+20240101"
SemanticVersion includes a TypeConverter that enables seamless integration with various .NET components:
using Gapotchenko.FX.Versioning;
using System.ComponentModel;
var converter = TypeDescriptor.GetConverter(typeof(SemanticVersion));
var version = (SemanticVersion)converter.ConvertFrom("1.2.3");
Let's continue with a look at some other modules provided by Gapotchenko.FX:
Or look at the full list of modules.
| 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 is compatible. 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 is compatible. 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 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. 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. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.7.2 | 102 | 5/16/2026 |
| 2026.6.2 | 129 | 3/29/2026 |
| 2026.5.3 | 118 | 2/24/2026 |
| 2026.4.2 | 128 | 2/4/2026 |
| 2026.3.5 | 120 | 1/29/2026 |
| 2026.2.2 | 130 | 1/25/2026 |
| 2026.1.5 | 129 | 1/13/2026 |
| 2025.1.45 | 206 | 12/25/2025 |
| 2025.1.27-beta | 219 | 10/9/2025 |
| 2025.1.26-beta | 275 | 8/30/2025 |
| 2025.1.25-beta | 604 | 7/22/2025 |
| 2025.1.24-beta | 222 | 7/16/2025 |
| 2025.1.23-beta | 174 | 7/12/2025 |