Download ScriptDom separately when building legacy sql projects (#23201)

* update sql projects build code to retrieve script dom nuget separately from dacfx nuget

* update readme

* cleanup shared code

* update scriptdom nuget version

* refactor
This commit is contained in:
Kim Santiago
2023-05-26 16:51:42 -07:00
committed by GitHub
parent 5560b52df1
commit 82f5ef7ea3
3 changed files with 110 additions and 63 deletions

View File

@@ -674,7 +674,7 @@ export const downloading = localize('downloading', "Downloading");
//#endregion
//#region buildHelper
export const downloadingDacFxDlls = localize('downloadingDacFxDlls', "Downloading Microsoft.Build.Sql nuget to get build DLLs");
export function downloadingNuget(nuget: string) { return localize('downloadingNuget', "Downloading {0} nuget to get build DLLs ", nuget); }
export function downloadingFromTo(from: string, to: string) { return localize('downloadingFromTo', "Downloading from {0} to {1}", from, to); }
export function extractingDacFxDlls(location: string) { return localize('extractingDacFxDlls', "Extracting DacFx build DLLs to {0}", location); }
export function errorDownloading(url: string, error: string) { return localize('errorDownloading', "Error downloading {0}. Error: {1}", url, error); }