Skip to content

Instantly share code, notes, and snippets.

@zbynourcz
zbynourcz / FooEnvironmentBuilder.cs
Last active January 24, 2019 02:17
Topshelf custom environment builder
class FooEnvironmentBuilder : EnvironmentBuilder
{
readonly HostConfigurator _configurator;
WindowsHostEnvironment _windowHostEnvironment;
public FooEnvironmentBuilder(HostConfigurator configurator)
{
_configurator = configurator;
_windowHostEnvironment = new WindowsHostEnvironment(_configurator);
}