In this article, I will explain about how to make ASP.NET 5 empty application.To accelerate the learning process for ASP.NET 5 (aka ASP.NET vNext), this post will cover:
☑ Creating the project
☑ Examining the project
☑ Modifying the project
☑ Running the project
The goal of these topics is not only to show “how-to”, but to answer the “what is that…” and “why is that” as well. It is written as if you are following along in Visual Studio 2015 (tutorial style), yet with enough supplemental detail to simply read (article style). Although not an exhaustive dive into each area, it should provide enough context to quickly get started with ASP.NET 5.
ASP.NET 5 Hosting Tutorial – Creating the project
To create a new ASP.NET 5 application, it is necessary to think in terms of projects, not web sites. The Web Site… option as seen below is still supported in Visual Studio 2015 to support legacy site development. The specific “ASP.NET vNext” features require the Project… option. With this in mind, in Visual Studio 2015 select from the top menu bar: File –> New –> Project
After selecting Project…, a new project dialogue box appears. On the left side of the box, select the Web option under the language of preference (Visual C# used below). From there, selectASP.NET Web Application and choose the solution/project name and file location. This post will use ASPNET5 as the solution name, and ASPNET5Blank as the project name.
Another dialogue box will appear to fine tune the type of web project desired. Choose the ASP.NET 5 Empty template as seen below. Although you may see other options, notice each is disabled.
ASP.NET 5 Hosting Tutorial – Examining the project
Once the project has loaded in Visual Studio, Solution Explorer will reveal the following:
The project corresponds to the following file/folder structure:
The following is a brief explanation of the projects file/folder contents:
[supsystic-tables id=’12’]
The first four items above are there for the benefit of the developer using Visual Studio. The latter three are needed for development.
Let’s take a look at the initial contents of the project.json file:
{ "webroot": "wwwroot", "version": "1.0.0-*", "exclude": [ "wwwroot" ], "packExclude": [ "node_modules", "bower_components", "**.kproj", "**.user", "**.vspscc" ], "dependencies": { "Microsoft.AspNet.Server.IIS": "1.0.0-beta2" }, "frameworks" : { "aspnet50" : { }, "aspnetcore50" : { } } }
As can be seen above, the file contains name/value pairs (see schema at GitHub). This new approach to managing web configurations (notice no web.config) enables simplified dependency management. Instead of adding assembly references, you now add NuGet packages as dependencies. How is this better? Instead of hard-coupling a reference to an assembly, you can now simply add the dependency by just typing it into the file above.
The contents of the Startup.cs file are as follows:
using System; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; namespace EmptySite { public class Startup { public void Configure(IApplicationBuilder app) { // In empty template, no code is here... } } }
The Configure method of the Startup class is automatically called at runtime. TheIApplicationBuilder instance (with parameter name app highlighted above) provides methods to configure the app and to access the HTTP request. However, when I attempt to access this method in my project, I do not see it:
The only methods displayed are just named Use. In the next topic, the project will be modified to enable the use of other methods off of the IApplicationBuilder instance passed in.
ASP.NET 5 Hosting Tutorial – Modifying the Project
In Visual Studio, open the project.json file. We are going to add a dependency to theMicrosoft.AspNet.Diagnostics package which is needed to get access to the UseWelcomePagemethod. Under dependencies, the name of the package is provided paired with the version. It must be typed accurately.
In the above screen capture, I started adding the Microsoft.AspNet.Diagnostics package. When ready to add the corresponding value for version, IntelliSense came to the rescue again!
After saving the project.json file, the output window in Visual Studio reveals what happened:
The Microsoft.AspNet.Diagnostics package was installed along with its dependencies. Did this modify the project.json file to show the two new packages? No. And that is good news. Why? There is no need to clutter the file with hierarchies of dependencies. When a new package is referenced, the dependencies (and their dependencies) are automatically added. When removed, all dependencies are removed too!
Returning to the Startup.cs file, when I now attempt to access the UseWelcomePage method, it exists!
The Configure method is now updated to look as follows:
public void Configure(IApplicationBuilder app) { app.UseWelcomePage(); } What will this do? Let’s find out!
ASP.NET 5 Hosting Tutorial – Running the Project
By default, the project will be deployed to IIS Express for testing. The classic Debug menu options still work here:
When selecting either Start Debugging [F5] or Start Without Debugging [Ctrl+F5], the app will run showing the welcome screen as seen here:
HostForLIFE.eu ASP.NET 5 Hosting
HostForLIFE.eu revolutionized hosting with Plesk Control Panel, a Web-based interface that provides customers with 24×7 access to their server and site configuration tools. Plesk completes requests in seconds. It is included free with each hosting account. Renowned for its comprehensive functionality – beyond other hosting control panels – and ease of use, Plesk Control Panel is available only to HostForLIFE’s customers. They offer a highly redundant, carrier-class architecture, designed around the needs of shared hosting customers.