summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Toolkit.CoreInterfaces
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-11-07 12:17:53 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-11-07 12:17:53 -0500
commitc0738296273304e71183ddc537aaf9ffc6d3da46 (patch)
tree1e9b51356200337757a0f459df341f6c6432dbe9 /src/StardewModdingAPI.Toolkit.CoreInterfaces
parent0b03b4f16a446e4b139efd33f6378598ae66efee (diff)
downloadSMAPI-c0738296273304e71183ddc537aaf9ffc6d3da46.tar.gz
SMAPI-c0738296273304e71183ddc537aaf9ffc6d3da46.tar.bz2
SMAPI-c0738296273304e71183ddc537aaf9ffc6d3da46.zip
deprecate version build field
Diffstat (limited to 'src/StardewModdingAPI.Toolkit.CoreInterfaces')
-rw-r--r--src/StardewModdingAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/StardewModdingAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs b/src/StardewModdingAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs
index 961ef777..6631b01d 100644
--- a/src/StardewModdingAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs
+++ b/src/StardewModdingAPI.Toolkit.CoreInterfaces/ISemanticVersion.cs
@@ -18,8 +18,12 @@ namespace StardewModdingAPI
int PatchVersion { get; }
/// <summary>An optional build tag.</summary>
+ [Obsolete("Use " + nameof(ISemanticVersion.PrereleaseTag) + " instead")]
string Build { get; }
+ /// <summary>An optional prerelease tag.</summary>
+ string PrereleaseTag { get; }
+
/*********
** Accessors