Handle IBuilder rename to IApplicationBuilder.

This commit is contained in:
Chris Ross 2014-09-10 14:47:02 -07:00
parent 0c3cf30d2c
commit 56987a66c6
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ namespace MusicStore.Spa
{
public class Startup
{
public void Configure(IBuilder app)
public void Configure(IApplicationBuilder app)
{
var configuration = new Configuration()
.AddJsonFile("Config.json")

View File

@ -24,7 +24,7 @@ namespace MusicStore
{
public class StartupSocialTesting
{
public void Configure(IBuilder app)
public void Configure(IApplicationBuilder app)
{
Console.WriteLine("Social Testing mode...");
//Below code demonstrates usage of multiple configuration sources. For instance a setting say 'setting1' is found in both the registered sources,

View File

@ -20,7 +20,7 @@ namespace MusicStore
{
public class Startup
{
public void Configure(IBuilder app)
public void Configure(IApplicationBuilder app)
{
//Below code demonstrates usage of multiple configuration sources. For instance a setting say 'setting1' is found in both the registered sources,
//then the later source will win. By this way a Local config can be overridden by a different setting while deployed remotely.

View File

@ -30,7 +30,7 @@ namespace MusicStore
/// </summary>
public class StartupNtlmAuthentication
{
public void Configure(IBuilder app)
public void Configure(IApplicationBuilder app)
{
//Set up NTLM authentication for WebListener like below.
//For IIS and IISExpress: Use inetmgr to setup NTLM authentication on the application vDir or modify the applicationHost.config to enable NTLM.