コード例 #1
0
        public static IServiceCollection AddBlogSite(this IServiceCollection serviceCollection, Action <BlogSiteOptions> config = null)
        {
            var options = new BlogSiteOptions(serviceCollection);

            config?.Invoke(options);

            if (options.ContentProvider == null)
            {
                // TODO: Set default content provider
            }

            serviceCollection.Add(new ServiceDescriptor(typeof(IContentProvider), options.ContentProvider, ServiceLifetime.Singleton));
            serviceCollection.AddSingleton <PageParser>();
            serviceCollection.AddSingleton <FrontMatterParser>();
            serviceCollection.AddSingleton <ContentManager>();
            serviceCollection.AddSingleton <ConfigurationParser>();
            serviceCollection.AddSingleton <IConfigurationManager, ConfigurationManager>();
            serviceCollection.AddSingleton <Site>();

            return(serviceCollection);
        }
コード例 #2
0
 public static BlogSiteOptions AddGitHubProvider(this BlogSiteOptions options)
 {
     options.ServiceCollection.AddSingleton <IGitHubClient, GitHubClient>();
     options.ContentProvider = typeof(GitHubContentProvider);
     return(options);
 }