mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
21 lines
662 B
C#
21 lines
662 B
C#
using System;
|
|
using Microsoft.PowerShell.EditorServices.Protocol.Server;
|
|
using Microsoft.PowerShell.EditorServices.Session;
|
|
|
|
namespace Microsoft.SqlTools.ServiceHost
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var hostDetails = new HostDetails("name", "profileId", new Version(1,0));
|
|
var profilePaths = new ProfilePaths("hostProfileId", "baseAllUsersPath", "baseCurrentUserPath");
|
|
var languageServer = new LanguageServer(hostDetails, profilePaths);
|
|
|
|
languageServer.Start().Wait();
|
|
|
|
languageServer.WaitForExit();
|
|
}
|
|
}
|
|
}
|