- , EXE Service Fabric. EXE, ; "" Service Fabric, Fabric.
Visual Studio, , , ( ).
, , , : 2.0.135 SDK, ServiceRuntime:
try
{
ServiceRuntime.RegisterServiceAsync("RunSetManagerServiceType",
context => new RunSetManagerService(context)).GetAwaiter().GetResult();
ServiceEventSource.Current.ServiceTypeRegistered(Process.GetCurrentProcess().Id, typeof(Stateless1).Name);
Thread.Sleep(Timeout.Infinite);
}
catch (Exception e)
{
ServiceEventSource.Current.ServiceHostInitializationFailed(e.ToString());
throw;
}
source
share