Skip to content

Commit 72c954c

Browse files
author
PortaSFTPServer
committed
Add beta suffix to local dev version
Directory.Build.props now produces 1.0.0-beta for local dev builds. CI and NuGet release workflows pass explicit /p:Version= overrides and are unaffected. Release tags (vMAJOR.MINOR.PATCH.REVISION[-prerelease]) already support prerelease suffixes via the existing workflow regex.
1 parent e77e10e commit 72c954c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Directory.Build.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>1.0.0</VersionPrefix>
4-
<Version Condition="'$(Version)' == ''">$(VersionPrefix)</Version>
4+
<VersionSuffix>beta</VersionSuffix>
5+
<Version Condition="'$(Version)' == ''">$(VersionPrefix)-$(VersionSuffix)</Version>
56
<PackageVersion Condition="'$(PackageVersion)' == ''">$(Version)</PackageVersion>
67
<RepositoryUrl>https://github.com/PortaSFTPServer/ApacheMinaSSHD.NET</RepositoryUrl>
78
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)