From d85abfcaba049b6c836b4bbfb8cd3a10d9a4aaf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Wed, 27 Apr 2022 22:16:45 +0300 Subject: [PATCH] Minor fixes in document: Getting-Started-AspNetCore-Application.md --- docs/en/Getting-Started-AspNetCore-Application.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/en/Getting-Started-AspNetCore-Application.md b/docs/en/Getting-Started-AspNetCore-Application.md index ef14fd0c54..0ccd900b1f 100644 --- a/docs/en/Getting-Started-AspNetCore-Application.md +++ b/docs/en/Getting-Started-AspNetCore-Application.md @@ -95,9 +95,9 @@ That's all! Run the application, it will just work as expected. ## Using Autofac as the Dependency Injection Framework -While AspNet Core's Dependency Injection (DI) system is fine for basic requirements, [Autofac](https://autofac.org/) provides advanced features like Property Injection and Method Interception which are required by ABP to perform advanced application framework features. +While ASP.NET Core's Dependency Injection (DI) system is fine for basic requirements, [Autofac](https://autofac.org/) provides advanced features like Property Injection and Method Interception which are required by ABP to perform advanced application framework features. -Replacing AspNet Core's DI system by Autofac and integrating to ABP is pretty easy. +Replacing ASP.NET Core's DI system by Autofac and integrating to ABP is pretty easy. 1. Install [Volo.Abp.Autofac](https://www.nuget.org/packages/Volo.Abp.Autofac) package @@ -131,10 +131,8 @@ var app = builder.Build(); await app.InitializeApplicationAsync(); await app.RunAsync(); - ```` ## Source Code Get source code of the sample project created in this tutorial from [here](https://github.com/abpframework/abp-samples/tree/master/BasicAspNetCoreApplication). -