├── .gitignore ├── LICENSE ├── README.md ├── nuget └── Topshelf.StartParameters.nuspec └── src ├── Topshelf.StartParameters.Dummy ├── Bootstrapper.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── Topshelf.StartParameters.Dummy.csproj ├── Topshelf.StartParameters.sln ├── Topshelf.StartParameters ├── SpHostServiceInstaller.cs ├── SpWindowsHostEnvironment.cs ├── SpWindowsHostEnvironmentBuilder.cs ├── StartParametersExtensions.cs └── Topshelf.StartParameters.csproj └── Topshelf.StartParamters.Test ├── Tests.cs ├── Topshelf.StartParamters.Test.csproj └── dummyPath.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/README.md -------------------------------------------------------------------------------- /nuget/Topshelf.StartParameters.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/nuget/Topshelf.StartParameters.nuspec -------------------------------------------------------------------------------- /src/Topshelf.StartParameters.Dummy/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters.Dummy/Bootstrapper.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters.Dummy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters.Dummy/Program.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters.Dummy/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters.Dummy/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Topshelf.StartParameters.Dummy/Topshelf.StartParameters.Dummy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters.Dummy/Topshelf.StartParameters.Dummy.csproj -------------------------------------------------------------------------------- /src/Topshelf.StartParameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters.sln -------------------------------------------------------------------------------- /src/Topshelf.StartParameters/SpHostServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters/SpHostServiceInstaller.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters/SpWindowsHostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters/SpWindowsHostEnvironment.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters/SpWindowsHostEnvironmentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters/SpWindowsHostEnvironmentBuilder.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters/StartParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters/StartParametersExtensions.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParameters/Topshelf.StartParameters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParameters/Topshelf.StartParameters.csproj -------------------------------------------------------------------------------- /src/Topshelf.StartParamters.Test/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParamters.Test/Tests.cs -------------------------------------------------------------------------------- /src/Topshelf.StartParamters.Test/Topshelf.StartParamters.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r1pper/Topshelf.StartParameters/HEAD/src/Topshelf.StartParamters.Test/Topshelf.StartParamters.Test.csproj -------------------------------------------------------------------------------- /src/Topshelf.StartParamters.Test/dummyPath.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------