Load connection from publish profile (#11263)

* initial changes for reading connection from profile

* connection string can now be read from publish.xml

* fix build errors and update test

* move publish profile tests to their own file

* cleanup

* update message

* fix string

* remove apiWrapper
This commit is contained in:
Kim Santiago
2020-07-15 17:03:25 -07:00
committed by GitHub
parent aae013d498
commit 0a1c2583cc
13 changed files with 247 additions and 69 deletions

View File

@@ -15,9 +15,3 @@ export interface IGenerateScriptSettings {
connectionUri: string;
sqlCmdVariables?: Record<string, string>;
}
// only reading db name and SQLCMD vars from profile for now
export interface PublishProfile {
databaseName: string;
sqlCmdVariables: Record<string, string>;
}