├── .gitignore ├── LICENSE ├── MicroService4Net.Example.FromNuget ├── App.config ├── ExampleController.cs ├── MicroService4Net.Example.FromNuget.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceInternalClasses.cs └── packages.config ├── MicroService4Net.Example ├── Controllers │ └── ExampleController.cs ├── MicroService4Net.Example.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceInternalClasses.cs ├── app.config ├── app.manifest └── packages.config ├── MicroService4Net.sln └── MicroService4Net ├── AssemblyInfo.cs ├── MicroService.cs ├── MicroService4Net.csproj ├── Network └── SelfHostServer.cs ├── RegistryManipulator.cs ├── ServiceInternals ├── InternalService.cs └── ProjectInstaller.cs ├── WindowsServiceManager.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/LICENSE -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/App.config -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/ExampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/ExampleController.cs -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/MicroService4Net.Example.FromNuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/MicroService4Net.Example.FromNuget.csproj -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/Program.cs -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/ServiceInternalClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/ServiceInternalClasses.cs -------------------------------------------------------------------------------- /MicroService4Net.Example.FromNuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example.FromNuget/packages.config -------------------------------------------------------------------------------- /MicroService4Net.Example/Controllers/ExampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/Controllers/ExampleController.cs -------------------------------------------------------------------------------- /MicroService4Net.Example/MicroService4Net.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/MicroService4Net.Example.csproj -------------------------------------------------------------------------------- /MicroService4Net.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/Program.cs -------------------------------------------------------------------------------- /MicroService4Net.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MicroService4Net.Example/ServiceInternalClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/ServiceInternalClasses.cs -------------------------------------------------------------------------------- /MicroService4Net.Example/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/app.config -------------------------------------------------------------------------------- /MicroService4Net.Example/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/app.manifest -------------------------------------------------------------------------------- /MicroService4Net.Example/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.Example/packages.config -------------------------------------------------------------------------------- /MicroService4Net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net.sln -------------------------------------------------------------------------------- /MicroService4Net/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/AssemblyInfo.cs -------------------------------------------------------------------------------- /MicroService4Net/MicroService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/MicroService.cs -------------------------------------------------------------------------------- /MicroService4Net/MicroService4Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/MicroService4Net.csproj -------------------------------------------------------------------------------- /MicroService4Net/Network/SelfHostServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/Network/SelfHostServer.cs -------------------------------------------------------------------------------- /MicroService4Net/RegistryManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/RegistryManipulator.cs -------------------------------------------------------------------------------- /MicroService4Net/ServiceInternals/InternalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/ServiceInternals/InternalService.cs -------------------------------------------------------------------------------- /MicroService4Net/ServiceInternals/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/ServiceInternals/ProjectInstaller.cs -------------------------------------------------------------------------------- /MicroService4Net/WindowsServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/WindowsServiceManager.cs -------------------------------------------------------------------------------- /MicroService4Net/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodeCleaner/MicroService4Net/HEAD/MicroService4Net/packages.config --------------------------------------------------------------------------------