Skip to content

Commit fab647f

Browse files
Merge pull request #1 from Next-Fast/master
Remove dev suffix from build version
2 parents d9272b5 + 738bc78 commit fab647f

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

build-plugin.cake

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ else if (buildId != 0)
2323
{
2424
msbuildSettings.VersionSuffix = "ci." + buildId;
2525
buildVersion += "_ci." + buildId;
26-
}
27-
else
28-
{
29-
buildVersion += "_dev";
3026
}
3127

3228
//////////////////////////////////////////////////////////////////////

build.cake

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ else if (buildId != 0)
2323
{
2424
msbuildSettings.VersionSuffix = "ci." + buildId;
2525
buildVersion += "_ci." + buildId;
26-
}
27-
else
28-
{
29-
buildVersion += "_dev";
3026
}
3127

3228
//////////////////////////////////////////////////////////////////////

src/Impostor.Server/Commands/CommandManager.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public async Task HandleCommandAsync(string commandString)
6868
await singleCommand.InvokeAsync(eventArg);
6969
}
7070
}
71-
72-
internal async ValueTask<bool> HandleDefaultCommandAsync(string command, string[] args)
71+
72+
private async ValueTask<bool> HandleDefaultCommandAsync(string command, string[] args)
7373
{
7474
return false;
7575
}

0 commit comments

Comments
 (0)