Go to file
David Fowler e88ad84a72 Create a scoped service provider for the call to Configure (#1106)
* Create a scoped service provider for the call to Configure
- This allows scoped dependencies to be injected into the Configure method.
It means you can resolve the DbContext or any other scoped service without
the hassle of the CreateScope boiler plate. As a side effect, it also makes
Startup.Configure a bit more testable.
2017-06-19 14:14:20 -07:00
build Fixed version of netstandard.library 2017-06-15 05:31:02 -07:00
samples/SampleStartups
shared/Microsoft.AspNetCore.Certificates.Configuration.Sources Change Certificates.Configuration to a Sources package 2017-06-02 12:21:43 -07:00
src Create a scoped service provider for the call to Configure (#1106) 2017-06-19 14:14:20 -07:00
test Create a scoped service provider for the call to Configure (#1106) 2017-06-19 14:14:20 -07:00
.gitattributes
.gitignore
.travis.yml Enable Travis and AppVeyor on "rel" branches (#1102) 2017-06-12 16:28:32 -07:00
CONTRIBUTING.md
Hosting.sln Change Certificates.Configuration to a Sources package 2017-06-02 12:21:43 -07:00
LICENSE.txt
NuGet.config Updating versions to preview3 2017-06-01 10:47:00 -07:00
NuGetPackageVerifier.json Change Certificates.Configuration to a Sources package 2017-06-02 12:21:43 -07:00
README.md
appveyor.yml Enable Travis and AppVeyor on "rel" branches (#1102) 2017-06-12 16:28:32 -07:00
build.cmd
build.ps1 Updating build scripts to point to 2.0.0-preview2 KoreBuild 2017-05-31 19:53:19 -07:00
build.sh Updating build scripts to point to 2.0.0-preview2 KoreBuild 2017-05-31 19:53:19 -07:00
version.props Updating versions to preview3 2017-06-01 10:47:00 -07:00

README.md

Hosting

AppVeyor: AppVeyor

Travis: Travis

The Hosting repo contains code required to host an ASP.NET Core application, it is the entry point used when self-hosting an application.

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the Home repo.