ASP.NET Core runs on conventions. It expects Startup.cs file for starting up the ASP.NET Core application and wwwroot
folder for the application’s static contents. But what if you want to change the name of Startup.cs
and wwwroot
to your choice? Well, that can be done. In this short post, we will see how to change Startup.cs and wwwroot folder name in ASP.NET Core.
Read More
Tag: Code samples
How to read Project.json file in ASP.NET Core 1.0
One of my colleague asked me how to read version number from Project.json file. He needed the version number for error logging. So I gave him the solution and thought of sharing with you. So in this quick post, find sample code to read Project.json file in ASP.NET Core 1.0. Read More