예제 #1
0
        static void Main()
        {
            var starter = new HostStarter("RS", new RsHostFactory());

            starter.SetParametersFromCommandLine(Environment.CommandLine);
            starter.Description = Properties.Resources.AppDescription;
            starter.Start();
        }
예제 #2
0
        static void Main(string[] args)
        {
            var starter = new HostStarter("SI", new IntegrationServiceHostFactory());

            starter.SetParametersFromCommandLine(Environment.CommandLine);
            starter.Description = Properties.Resources.AppDescription;
            starter.Start();
        }