Reacting to new Hosting API
This commit is contained in:
parent
cade3de890
commit
4f577e7217
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"projects": ["src", "C:\\Github\\Options\\src"]
|
||||
"projects": ["src"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ using System.IO;
|
|||
using IdentitySample.Models;
|
||||
using Microsoft.AspNet.Builder;
|
||||
using Microsoft.AspNet.DataProtection;
|
||||
using Microsoft.AspNet.Hosting;
|
||||
using Microsoft.AspNet.Identity;
|
||||
using Microsoft.AspNet.Identity.EntityFramework;
|
||||
using Microsoft.Data.Entity;
|
||||
|
|
@ -100,5 +101,14 @@ namespace IdentitySamples
|
|||
SampleData.InitializeIdentityDatabaseAsync(app.ApplicationServices).Wait();
|
||||
}
|
||||
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var application = new WebApplicationBuilder()
|
||||
.UseConfiguration(WebApplicationConfiguration.GetDefault(args))
|
||||
.UseStartup<Startup>()
|
||||
.Build();
|
||||
|
||||
application.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"server": "Microsoft.AspNet.Server.Kestrel",
|
||||
"server.urls": "http://localhost:41532/"
|
||||
}
|
||||
|
|
@ -6,7 +6,6 @@
|
|||
"version": "1.0.0-*",
|
||||
"dependencies": {
|
||||
"Microsoft.AspNet.Mvc": "6.0.0-*",
|
||||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
|
||||
"Microsoft.AspNet.DataProtection.Extensions": "1.0.0-*",
|
||||
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
|
||||
"Microsoft.AspNet.Identity": "3.0.0-*",
|
||||
|
|
@ -17,6 +16,7 @@
|
|||
"Microsoft.AspNet.Authentication.Twitter": "1.0.0-*",
|
||||
"Microsoft.AspNet.Authorization": "1.0.0-*",
|
||||
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
|
||||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
|
||||
"EntityFramework.Commands": "7.0.0-*",
|
||||
"EntityFramework.MicrosoftSqlServer": "7.0.0-*",
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
|
||||
|
|
@ -24,10 +24,11 @@
|
|||
"Microsoft.Extensions.OptionsModel": "1.0.0-*",
|
||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
|
||||
},
|
||||
"compilationOptions": {
|
||||
"emitEntryPoint": true
|
||||
},
|
||||
"commands": {
|
||||
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:41532",
|
||||
"run": "run server.urls=http://localhost:41532",
|
||||
"ef": "EntityFramework.Commands"
|
||||
"web": "IdentitySample.Mvc"
|
||||
},
|
||||
"webroot": ".",
|
||||
"frameworks": {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ using System.Threading.Tasks;
|
|||
using System.Xml;
|
||||
using System.Xml.Linq;
|
||||
using Microsoft.AspNet.Builder;
|
||||
using Microsoft.AspNet.Hosting;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Http.Authentication;
|
||||
using Microsoft.AspNet.Http.Features.Authentication;
|
||||
|
|
@ -29,7 +30,9 @@ namespace Microsoft.AspNet.Identity.InMemory
|
|||
[Fact]
|
||||
public void UseIdentityThrowsWithoutAddIdentity()
|
||||
{
|
||||
Assert.Throws<InvalidOperationException>(() => TestServer.Create(app => app.UseIdentity()));
|
||||
var builder = new WebApplicationBuilder()
|
||||
.Configure(app => app.UseIdentity());
|
||||
Assert.Throws<InvalidOperationException>(() => new TestServer(builder));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
|
@ -179,7 +182,8 @@ namespace Microsoft.AspNet.Identity.InMemory
|
|||
|
||||
private static TestServer CreateServer(Action<IServiceCollection> configureServices = null, Func<HttpContext, Task> testpath = null, Uri baseAddress = null)
|
||||
{
|
||||
var server = TestServer.Create(app =>
|
||||
var builder = new WebApplicationBuilder()
|
||||
.Configure(app =>
|
||||
{
|
||||
app.UseIdentity();
|
||||
app.Use(async (context, next) =>
|
||||
|
|
@ -249,8 +253,8 @@ namespace Microsoft.AspNet.Identity.InMemory
|
|||
await next();
|
||||
}
|
||||
});
|
||||
},
|
||||
services =>
|
||||
})
|
||||
.ConfigureServices(services =>
|
||||
{
|
||||
services.AddIdentity<TestUser, TestRole>();
|
||||
services.AddSingleton<IUserStore<TestUser>, InMemoryUserStore<TestUser>>();
|
||||
|
|
@ -260,6 +264,7 @@ namespace Microsoft.AspNet.Identity.InMemory
|
|||
configureServices(services);
|
||||
}
|
||||
});
|
||||
var server = new TestServer(builder);
|
||||
server.BaseAddress = baseAddress;
|
||||
return server;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue