Skip to content

Instantly share code, notes, and snippets.

@vmandic
Created October 13, 2018 17:49
Show Gist options
  • Save vmandic/412027d82c94be6a0cc7a24ed8e06c8f to your computer and use it in GitHub Desktop.
Save vmandic/412027d82c94be6a0cc7a24ed8e06c8f to your computer and use it in GitHub Desktop.
meds-processor, part 1 of 6, snippet 3
using AngleSharp;
using Microsoft.Extensions.DependencyInjection;
namespace MedsProcessor.Scraper
{
public static class ServiceCollectionExtensions
{
public static IServiceCollection AddAngleSharp(this IServiceCollection services) =>
services.AddSingleton(BrowsingContext.New(
AngleSharp.Configuration.Default.WithDefaultLoader()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment