Convert .net DA server to windows service

What’s the simplest way to turn a .NET windows DA server from stand-alone to run as a service? Should I just use the service template and move the majority of code into a shared project so I can still have both, or is there a way to make one exe run as either, as I can with the Delphi equivalent?

If your server uses the standard ROSDK startup classes, it should already be a “combo” server that can run standalone and as service. See https://docs.remotingsdk.com/Servers/Concepts/ApplicationServerClassNet/.

1 Like

Thank you kindly. I thought that something like that should be possible, as usual, you guys rock. :grinning:

1 Like