Skip to content

Commit

Permalink
Quote Assembly Name in IKVM Importer
Browse files Browse the repository at this point in the history
  • Loading branch information
AliveDevil committed Dec 2, 2024
1 parent 9470193 commit 525c76c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public async Task<int> ExecuteAsync(IkvmImporterOptions options, CancellationTok
w.WriteLine($"-out \"{options.Output}\"");

if (options.Assembly is not null)
w.WriteLine($"-assembly {options.Assembly}");
w.WriteLine($"-assembly \"{options.Assembly}\"");

if (options.Version is not null)
w.WriteLine($"-version {options.Version}");
Expand Down

0 comments on commit 525c76c

Please sign in to comment.