-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use standalone language server (#263)
* Use standalone language server * fix * work * suites work * suites work * work * work * Test format range * lint * work * format range suites * cleanup * work * Work on Mac * schema validation tests * fix suites * fixes * fix tree tests * Fix colorization suites * Fix more tests * work on functional tests * fix launch.json * Working on expressions functional tests * Expression suites * Expression suites * lint * Change diagnostics source * Fix lang server path * Fix suites * arrow functions * Simplify output of colorization tests * fix colorization results * orphaned files * Fix #250, strings vs expressions boundary cases * Fix suite * Fix suite * fix suite * Increase timeout again work * fix * Update ui * lint * Fix path check * PR fix * Disable lang server tests for now * Lang conf file must be copied to dist (#276) * Lang conf file must be copied to dist * PR fix * Acquire .dotnet core and search further in file for schema * Fix build, suites * Improve language server error handling (#282) * Always validate file if langid=ARM (#285) * Always validate file if langid=ARM * refactor * Show warnings about --wait-for-debugger and custom lang serve path (#286) * Clarify licensing for public repo, update version/readme/changelog for 0.7.0 (#283) * Remove EULA (handled by LICENSE.md) * Clarify licensing in README.md * Bump version, update changelog/readme * Additional changes * grammar * Acquire language server binaries during build (#289) * Acquire language server binaries during build * Update to get threading fix * PR fix * comment * Fixes * IMprove message * Improve message
- Loading branch information
1 parent
36779c4
commit 8165079
Showing
127 changed files
with
6,092 additions
and
1,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,7 @@ tsd.json | |
tslint.json | ||
typings/** | ||
webpack.config* | ||
*.vsix | ||
*.zip | ||
pkgs | ||
tools |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="WebTools" value="https://devdiv.pkgs.visualstudio.com/_packaging/WebTools/nuget/v3/index.json" /> | ||
</packageSources> | ||
<packageSourceCredentials> | ||
<WebTools> | ||
<add key="Username" value="$LANGSERVER_NUGET_USERNAME" /> | ||
<add key="ClearTextPassword" value="$LANGSERVER_NUGET_PASSWORD" /> | ||
</WebTools> | ||
</packageSourceCredentials> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright © Microsoft Corporation | ||
# All rights reserved. | ||
# | ||
# Licensed under the MIT License. See LICENSE-CODE in the project root for details. | ||
# | ||
# Exit codes: | ||
# 0 - Success | ||
# 4 - Distribution not supported by script | ||
# | ||
|
||
set H+ | ||
|
||
#openSUSE - Has to be first since apt-get is available but package names different | ||
if type zypper > /dev/null 2>&1; then | ||
echo "SUSE" | ||
exit 0 | ||
|
||
# Debian / Ubuntu | ||
elif type apt-get > /dev/null 2>&1; then | ||
echo "Debian" | ||
exit 0 | ||
|
||
#RHL/Fedora/CentOS | ||
elif type yum > /dev/null 2>&1; then | ||
echo "RedHat" | ||
exit 0 | ||
|
||
#ArchLinux | ||
elif type pacman > /dev/null 2>&1; then | ||
echo "ArchLinux" | ||
exit 0 | ||
|
||
#Solus | ||
elif type eopkg > /dev/null 2>&1; then | ||
echo "Solus" | ||
exit 0 | ||
|
||
#Alpine Linux | ||
elif type apk > /dev/null 2>&1; then | ||
echo "Alpine" | ||
exit 0 | ||
|
||
# Distro not supported | ||
else | ||
echo "UNKNOWN" | ||
exit 4 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@ECHO OFF | ||
PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0dotnet-install.ps1' %*; exit $LASTEXITCODE" |
Oops, something went wrong.