mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Merge master to dev (#4) * Misc. clean-ups related to removing unneeded PowerShell Language Service code. * Remove unneeded files and clean up remaining code. * Enable file change tracking with Workspace and EditorSession. * Setup standard src, test folder structure. Add unit test project. * Actually stage the deletes. Update .gitignore * Integrate SqlParser into the onchange diagnostics to provide error messages. * Add tests for the language service diagnostics * Initial implementation for autocomplete. * Switch to using sys.tables for autocomplete Move some code into a better class * Delete unused csproj file. * Add nuget.config to pickup SQL Parser nuget package
16 lines
362 B
XML
16 lines
362 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration >
|
|
|
|
<config>
|
|
<add key="DefaultPushSource" value="http://SQLISNuget/DS-SSMS/api/v2/package" />
|
|
</config>
|
|
|
|
<packageSources>
|
|
|
|
<!-- Add the SSMS repo for private requirements -->
|
|
<add key="SQLDS - SSMS" value="http://SQLISNuget/DS-SSMS/nuget/" />
|
|
|
|
</packageSources>
|
|
|
|
</configuration>
|