mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Update one more variable name for sdk style projects (#17710)
This commit is contained in:
@@ -80,10 +80,10 @@ export class BuildHelper {
|
|||||||
return this.extensionBuildDir;
|
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);
|
projectPath = utils.getQuotedPath(projectPath);
|
||||||
buildDirPath = utils.getQuotedPath(buildDirPath);
|
buildDirPath = utils.getQuotedPath(buildDirPath);
|
||||||
if (isNetCoreSdkStyleProject) {
|
if (isSdkStyleProject) {
|
||||||
return ` build ${projectPath} /p:NetCoreBuild=true`;
|
return ` build ${projectPath} /p:NetCoreBuild=true`;
|
||||||
} else {
|
} else {
|
||||||
return ` build ${projectPath} /p:NetCoreBuild=true /p:NETCoreTargetsPath=${buildDirPath}`;
|
return ` build ${projectPath} /p:NetCoreBuild=true /p:NETCoreTargetsPath=${buildDirPath}`;
|
||||||
|
|||||||
Reference in New Issue
Block a user