Beispiel #1
0
        public static void Main(string[] args)
        {
            // Useful for debugging the tool after it starts.
            //Debugger.Launch();

            var toolConnection = args[0];

            // Open connection to Skyline.
            using (_toolClient = new SkylineToolClient(toolConnection, "Test Interactive Tool")) // Not L10N
            {
                _toolClient.DocumentChanged += OnDocumentChanged;
                _testService = new TestToolService(toolConnection + "-test");
                Console.WriteLine("Test service running");
                _testService.Run();
            }
        }