-
Notifications
You must be signed in to change notification settings - Fork 906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vBump ScriptDom version for sql projects #25300
Conversation
Pull Request Test Coverage Report for Build 7806964752Warning: This coverage report may be inaccurate.We've detected an issue with your CI configuration that might affect the accuracy of this pull request's coverage report.
💛 - Coveralls |
@@ -83,7 +83,7 @@ export class BuildHelper { | |||
public async ensureScriptDomDllPresence(outputChannel: vscode.OutputChannel): Promise<boolean> { | |||
const scriptdomNugetPkgName = 'Microsoft.SqlServer.TransactSql.ScriptDom'; | |||
const scriptDomDll = 'Microsoft.SqlServer.TransactSql.ScriptDom.dll'; | |||
const scriptDomNugetVersion = '161.8817.2'; // TODO: make this a configurable setting, like the Microsoft.Build.Sql version | |||
const scriptDomNugetVersion = '161.8910.0'; // TODO: make this a configurable setting, like the Microsoft.Build.Sql version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the default microsoftBuildSqlDefaultVersion
above on line 59 should probably also be updated to the latest, 0.1.14-preview
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and also in the SqlProjects nuget, if that'll be updated anytime soon, since that's what's used when creating new SDK-style projects in ADS and vscode.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, the ScriptDom and Build.Sql can be bumped independently if no dependency exists during the version releases right!
"SqlProjects nuget" means in the STS or in ADS?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup they can be bumped independently.
The code for the SqlProjects repo is in ADO, and then the projects nuget is specified in STS here: https://github.com/microsoft/sqltoolsservice/blob/main/Packages.props#L32
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @kisantia , seems the SqlProjects Nuget version is also needed version update. Will open a PR on STS. Thanks
Updated from 161.8817.2 to 161.8910.0 version