Skip to content

Instantly share code, notes, and snippets.

@vmandic
Created October 18, 2018 19:03
Show Gist options
  • Save vmandic/f62d6847a46ee8933cf79c280991b70a to your computer and use it in GitHub Desktop.
Save vmandic/f62d6847a46ee8933cf79c280991b70a to your computer and use it in GitHub Desktop.
meds-processor, p2, s4
public void ConfigureServices(IServiceCollection services)
{
// we need the http client factory:
services.AddHttpClient();
services.AddAngleSharp();
services.AddSingleton(
s => new AppPathsInfo(s.GetService<IHostingEnvironment>().ContentRootPath));
services.AddSingleton<HzzoHtmlScraper>();
// we need our downloader:
services.AddSingleton<HzzoExcelDownloader>();
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment