TJC.VersionExtensions 0.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package TJC.VersionExtensions --version 0.1.2                
NuGet\Install-Package TJC.VersionExtensions -Version 0.1.2                
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.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TJC.VersionExtensions --version 0.1.2                
#r "nuget: TJC.VersionExtensions, 0.1.2"                
#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.2

// Install TJC.VersionExtensions as a Cake Tool
#tool nuget:?package=TJC.VersionExtensions&version=0.1.2                

NuGet Version and Downloads count

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 to 0), 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 to 0), 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 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

    • No dependencies.

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 77 11/15/2024
0.4.2 72 11/10/2024
0.4.1 71 11/5/2024
0.4.0 70 11/5/2024
0.3.1 82 10/26/2024
0.3.0 85 10/20/2024
0.2.2 97 10/20/2024
0.2.1 82 10/16/2024
0.2.0 83 10/10/2024
0.1.7 95 9/29/2024
0.1.6 99 9/5/2024
0.1.5 85 9/5/2024
0.1.4 89 9/4/2024
0.1.3 89 9/3/2024
0.1.2 97 7/20/2024
0.1.1 118 7/20/2024
0.1.0 93 7/20/2024