mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35: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;
|
||||
}
|
||||
|
||||
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}`;
|
||||
|
||||
Reference in New Issue
Block a user