From ab677ac1a9b1ddb7e0d3f278be9879cdc96b51ea Mon Sep 17 00:00:00 2001 From: Adrian Nasui Date: Sun, 19 Apr 2020 14:06:55 +0300 Subject: [PATCH] Minor Updates to Readme.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7657c1e..7771655 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,19 @@ [![NuGet](https://img.shields.io/nuget/v/NetCore2Blockly.svg)](https://www.nuget.org/packages/NetCore2Blockly) # What it does -It generate Blockly blocks for each of your controller actions. +NETCoreBlockly generates [Blockly](https://developers.google.com/blockly) blocks for each of your controller actions. Demo at https://netcoreblockly.herokuapp.com/blockly.html -# How to install in a .NET Core 3.1 WebAPI / MVC +# How to install NETCoreBlockly in a .NET Core 3.1 WebAPI / MVC application ## Step 1: -Install https://www.nuget.org/packages/NetCore2Blockly/ , Install-Package NetCore2Blockly +Install https://www.nuget.org/packages/NetCore2Blockly/ by running the following command in the Package Manager Console: +> Install-Package NetCore2Blockly ## Step 2: -Modify Startup.cs , add +Modify Startup.cs by adding ```csharp public void ConfigureServices(IServiceCollection services) { @@ -41,4 +42,4 @@ and put all contents in a wwwroot in the root of your site ## Step 4: Run the application and browse to /blockly.html -That's all! \ No newline at end of file +That's all!