Skip to content

Commit

Permalink
Version bump, 1.0.0-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Zingabopp committed Aug 20, 2021
1 parent 81ea2b5 commit 503c819
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BeatSyncConsole/BeatSyncConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.9.4</Version>
<Version>1.0.0</Version>
<DefineConstants>BETA</DefineConstants>
<PathMap>$(SolutionDir)BeatSyncConsole=.\</PathMap>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/Zingabopp/BeatSync</RepositoryUrl>
Expand Down
4 changes: 4 additions & 0 deletions BeatSyncConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,11 @@ static async Task Main(string[] args)
.WithParsed(RunOptions)
.WithNotParsed(HandleParseErrors);
ConsoleLogWriter? consoleLogger = SetupLogging();
var ver = Assembly.GetExecutingAssembly().GetName();
string version = Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "0.0.0.0";
#if BETA
version = version + "-Beta";
#endif
Logger.log.Info($"Starting BeatSyncConsole v{version} |{VersionInfo.Description}");
foreach (var msg in ArgErrorMsgs)
{
Expand Down

0 comments on commit 503c819

Please sign in to comment.