mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 09:35:41 -05:00
Remove sql project build dependency on STS (#20447)
* download Microsoft.Build.Sql sdk and extract * cleanup extracted folder and nuget * add constants * cleanup * remove package-lock.json * making outputChannel required and some cleanup * only download if the files aren't already there * Add todo * add try catches * addressing comments
This commit is contained in:
@@ -615,3 +615,14 @@ export enum PublishTargetType {
|
||||
}
|
||||
|
||||
export const CollapseProjectNodesKey = 'collapseProjectNodes';
|
||||
|
||||
// httpClient
|
||||
export const downloadError = localize('downloadError', "Download error");
|
||||
export const downloadProgress = localize('downloadProgress', "Download progress");
|
||||
export const downloading = localize('downloading', "Downloading");
|
||||
|
||||
// buildHelper
|
||||
export const downloadingDacFxDlls = localize('downloadingDacFxDlls', "Downloading Microsoft.Build.Sql nuget to get build DLLs");
|
||||
export const extractingDacFxDlls = localize('extractingDacFxDlls', "Extracting DacFx build DLLs");
|
||||
export function errorDownloading(url: string, error: string) { return localize('errorDownloading', "Error downloading {0}. Error: {1}", url, error); }
|
||||
export function errorExtracting(path: string, error: string) { return localize('errorExtracting', "Error extracting files from {0}. Error: {1}", path, error); }
|
||||
|
||||
Reference in New Issue
Block a user