close
The Wayback Machine - https://web.archive.org/web/20201215015819/https://github.com/wangkanai/Webmaster
Skip to content

ASP.NET Core Search Engine Optimization for Webmaster lets you improve the art, craft, and science of driving web traffic to enabling you with easy and efficiency native tool build in the asp.net core library.

main
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
doc
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

ASP.NET Core Webmaster (Alpha Development)

ASP.NET Core Search Engine Optimization for Webmaster lets you improve the art, craft, and science of driving web traffic to enabling you with easy and efficiency native tool build in the asp.net core library.

Please give some love by clicking on the star! This help movtivate me to continue on developing the project.

Build status GitHub Open Collective Patreon

NuGet Badge NuGet Badge MyGet Badge

Build history

Installation

Installation of Wangkanai Webmaster

PM> install-package Wangkanai.Webmaster

Implementation of the library into your web application is done by configuring the startup.cs by adding the Webmaster service in the ConfigureServices method.

public void ConfigureServices(IServiceCollection services)
{
    services.AddWebmaster();

    services.AddControllersWithViews();
}

Adding the Webmaster middleware to the pipeline. The Webmaster middleware is enabled in the Configure method of Startup.cs file.

public void Configure(IApplicationBuilder app)
{
    app.UseWebmaster();

    app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());
}

Directory Structure

  • src - The code of this project lives here
  • test - The unit test of this project lives here
  • sample - The sample web app of this project lives here

Contributing

All contribution are welcome, please contact the author.

About

ASP.NET Core Search Engine Optimization for Webmaster lets you improve the art, craft, and science of driving web traffic to enabling you with easy and efficiency native tool build in the asp.net core library.

Topics

Resources

License

You can’t perform that action at this time.