Update one more variable name for sdk style projects (#17710)

This commit is contained in:
Kim Santiago
2021-11-22 08:13:36 -10:00
committed by GitHub
parent 9dcdfaea7a
commit bb28646670

View File

@@ -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}`;