From bb28646670faee3816a096838271162d63dba941 Mon Sep 17 00:00:00 2001 From: Kim Santiago <31145923+kisantia@users.noreply.github.com> Date: Mon, 22 Nov 2021 08:13:36 -1000 Subject: [PATCH] Update one more variable name for sdk style projects (#17710) --- extensions/sql-database-projects/src/tools/buildHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/sql-database-projects/src/tools/buildHelper.ts b/extensions/sql-database-projects/src/tools/buildHelper.ts index 2741399ec5..f4992b732b 100644 --- a/extensions/sql-database-projects/src/tools/buildHelper.ts +++ b/extensions/sql-database-projects/src/tools/buildHelper.ts @@ -80,10 +80,10 @@ export class BuildHelper { return this.extensionBuildDir; } - public constructBuildArguments(projectPath: string, buildDirPath: string, isNetCoreSdkStyleProject: boolean): string { + public constructBuildArguments(projectPath: string, buildDirPath: string, isSdkStyleProject: boolean): string { projectPath = utils.getQuotedPath(projectPath); buildDirPath = utils.getQuotedPath(buildDirPath); - if (isNetCoreSdkStyleProject) { + if (isSdkStyleProject) { return ` build ${projectPath} /p:NetCoreBuild=true`; } else { return ` build ${projectPath} /p:NetCoreBuild=true /p:NETCoreTargetsPath=${buildDirPath}`;