├── .gitattributes ├── .gitignore ├── IHostedServiceSample.sln └── IHostedServiceSample ├── Controllers └── ValuesController.cs ├── DataRefreshService.cs ├── HostedService.cs ├── IHostedServiceSample.csproj ├── Program.cs ├── Properties └── launchSettings.json ├── RandomStringProvider.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/.gitignore -------------------------------------------------------------------------------- /IHostedServiceSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample.sln -------------------------------------------------------------------------------- /IHostedServiceSample/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /IHostedServiceSample/DataRefreshService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/DataRefreshService.cs -------------------------------------------------------------------------------- /IHostedServiceSample/HostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/HostedService.cs -------------------------------------------------------------------------------- /IHostedServiceSample/IHostedServiceSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/IHostedServiceSample.csproj -------------------------------------------------------------------------------- /IHostedServiceSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/Program.cs -------------------------------------------------------------------------------- /IHostedServiceSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /IHostedServiceSample/RandomStringProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/RandomStringProvider.cs -------------------------------------------------------------------------------- /IHostedServiceSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/Startup.cs -------------------------------------------------------------------------------- /IHostedServiceSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/appsettings.Development.json -------------------------------------------------------------------------------- /IHostedServiceSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevejgordon/IHostedServiceSample/HEAD/IHostedServiceSample/appsettings.json --------------------------------------------------------------------------------