From 429be03d07cac32e107cb81b22b5a9bc269a38f3 Mon Sep 17 00:00:00 2001 From: charlie-runreal Date: Mon, 2 Jun 2025 11:16:29 -0500 Subject: [PATCH] fix: removed msbuild specific target string --- src/lib/project.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib/project.ts b/src/lib/project.ts index c75f5f2..a959924 100644 --- a/src/lib/project.ts +++ b/src/lib/project.ts @@ -143,14 +143,11 @@ export class Project { }) { const projectTarget = await this.getProjectTarget(target) - const targetFullString = - `\-Target="${projectTarget} ${platform} ${configuration} ${this.projectFileVars.projectArgument}\"` - await this.compileTarget({ target: projectTarget, configuration: configuration, platform: platform, - extraArgs: [targetFullString, ...extraArgs], + extraArgs: extraArgs, dryRun: dryRun, clean: clean, nouht: nouht,