Adding and updating NuGet packages via command line – dotnet CLI Just like we can add, remove and update NuGet packages via UI in Visual Studio or Visual Studio Code we can accomplish the same using the dotnet CLI. Adding package For example, to add ASP.NET Core CORS package we run the following: dotnet […]
Continue readingLogging in ASP.NET Core 1 Logging has been a built-in feature since the first release of ASP.NET Core. Good thing about logging is that ASP.NET Core configures it to log internal events from the platform. You can also easily connect it with most of the popular logging tools (NLog, log4net, Serilog, etc..). Logging API has […]
Continue readingFew days ago at Build conference we got some good news: .NET Core 2.0 Preview 1 and ASP.NET Core 2 Preview1 were announced. We will take a look at some new exciting features that are coming to ASP.NET Core world. Lets see what goodies ASP.NET Core 2 brings for us developers! First things first. If […]
Continue reading