TJC.VersionExtensions
0.1.6
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TJC.VersionExtensions --version 0.1.6
NuGet\Install-Package TJC.VersionExtensions -Version 0.1.6
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="TJC.VersionExtensions" Version="0.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TJC.VersionExtensions --version 0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TJC.VersionExtensions, 0.1.6"
#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.
// Install TJC.VersionExtensions as a Cake Addin #addin nuget:?package=TJC.VersionExtensions&version=0.1.6 // Install TJC.VersionExtensions as a Cake Tool #tool nuget:?package=TJC.VersionExtensions&version=0.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Table of Contents
Increments
Version.Increment(VersionComponents)
- Returns a new Version with the specified component incremented by 1, and the following components reset to 0
Version.IncrementMajor()
- Returns a new Version with the major component incremented by 1, and the rest reset to 0
var version = new Version(1, 2, 3, 4);
var incrementedVersion = version.IncrementMajor();
// incrementedVersion == new Version(2, 0, 0, 0)
Version.IncrementMinor()
- Returns a new Version with the minor component incremented by 1, and the build & revision reset to 0
var version = new Version(1, 2, 3, 4);
var incrementedVersion = version.IncrementMinor();
// incrementedVersion == new Version(1, 3, 0, 0)
Version.IncrementBuild()
- Returns a new Version with the build component incremented by 1, and the revision reset to 0
var version = new Version(1, 2, 3, 4);
var incrementedVersion = version.IncrementBuild();
// incrementedVersion == new Version(1, 2, 4, 0)
Version.IncrementRevision()
- Returns a new Version with the revision component incremented by 1
var version = new Version(1, 2, 3, 4);
var incrementedVersion = version.IncrementRevision();
// incrementedVersion == new Version(1, 2, 3, 5)
Comparisons
Version.Equivalent(Version)
- Returns
true
if the components are equivalent (if undefined, they are considered equivalent to0
),false
otherwise
var version = new Version(1, 0, 0, 0);
var other = new Version(1);
var result = version.Equivalent(other);
// result == true
Version.IsZero()
- Returns
true
if the components are equivalent (if undefined, they are considered equivalent to0
),false
otherwise
var zero = new Version(0, 0, 0, 0);
var undefined = new Version();
var result1 = zero.IsZero();
var result2 = undefined.IsZero();
// result1 == true
// result2 == true
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- TJC.Singleton (>= 0.1.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.4.3 | 75 | 11/15/2024 |
0.4.2 | 70 | 11/10/2024 |
0.4.1 | 69 | 11/5/2024 |
0.4.0 | 68 | 11/5/2024 |
0.3.1 | 80 | 10/26/2024 |
0.3.0 | 83 | 10/20/2024 |
0.2.2 | 95 | 10/20/2024 |
0.2.1 | 80 | 10/16/2024 |
0.2.0 | 81 | 10/10/2024 |
0.1.7 | 93 | 9/29/2024 |
0.1.6 | 97 | 9/5/2024 |
0.1.5 | 83 | 9/5/2024 |
0.1.4 | 87 | 9/4/2024 |
0.1.3 | 87 | 9/3/2024 |
0.1.2 | 95 | 7/20/2024 |
0.1.1 | 116 | 7/20/2024 |
0.1.0 | 91 | 7/20/2024 |