From 525c76cf02f85edb8714a91cbc365af1446303d8 Mon Sep 17 00:00:00 2001 From: AliveDevil Date: Mon, 2 Dec 2024 10:55:58 +0100 Subject: [PATCH] Quote Assembly Name in IKVM Importer --- src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs b/src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs index 34c657453..6308afb34 100644 --- a/src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs +++ b/src/IKVM.Tools.Runner/Importer/IkvmImporterLauncher.cs @@ -70,7 +70,7 @@ public async Task 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}");