Skip to content

Commit 0fa0371

Browse files
committed
don't wrap the version number in quotes
1 parent aa546d3 commit 0fa0371

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NetcodePatcher.Cli/NetcodePatchCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private static void Handle(FileSystemInfo plugin, FileSystemInfo[] dependencies,
4444
var toolVersion = typeof(Program).Assembly
4545
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!
4646
.InformationalVersion;
47-
Log.Information("Initializing NetcodePatcher v{Version}", toolVersion);
47+
Log.Information("Initializing NetcodePatcher v{Version:l}", toolVersion);
4848

4949
Log.Debug("Provided 'plugins' input: {Plugins}", plugin);
5050
Log.Debug("Provided 'dependencies' input: {Dependencies}", dependencies);

NetcodePatcher.MSBuild/NetcodePatchTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public override bool Execute()
3232
var toolVersion = typeof(NetcodePatchTask).Assembly
3333
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!
3434
.InformationalVersion;
35-
Serilog.Log.Information("Initializing NetcodePatcher v{Version}", toolVersion);
35+
Serilog.Log.Information("Initializing NetcodePatcher v{Version:l}", toolVersion);
3636

3737
var noOverwrite = false;
3838
if (!string.IsNullOrEmpty(NoOverwrite))

0 commit comments

Comments
 (0)