tgstation-server
6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
src
Tgstation.Server.Common
Extensions
VersionExtensions.cs
Go to the documentation of this file.
1
using
System;
2
3
namespace
Tgstation.Server.Common.Extensions
4
{
8
public
static
class
VersionExtensions
9
{
15
public
static
Version
Semver
(
this
Version version)
16
{
17
if
(version ==
null
)
18
throw
new
ArgumentNullException(nameof(version));
19
20
return
new
Version(
21
version.Major,
22
version.Minor,
23
version.Build == -1 ? 0 : version.Build);
24
}
25
}
26
}
Tgstation.Server.Common.Extensions.VersionExtensions
Extensions for the Version class.
Definition
VersionExtensions.cs:9
Tgstation.Server.Common.Extensions.VersionExtensions.Semver
static Version Semver(this Version version)
Converts a given version into one with only Version.Major, Version.Minor, and Version....
Definition
VersionExtensions.cs:15
Tgstation.Server.Common.Extensions
Definition
ValueTaskExtensions.cs:7
Generated by
1.9.8