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