John Luo
c8003c0305
Remove addition of default address to IServerAddressesFeature when none is specified
2017-03-02 15:12:52 -08:00
Ben Adams
d5ec0859e5
Disabled logging fast-path ( #937 )
2017-02-17 08:43:25 -08:00
Ben Adams
2697ad9a37
Faster RequestServices ( #941 )
...
* Faster RequestServices
2017-02-14 08:37:38 -08:00
Ben Adams
1b01da7a05
Check hostingLog enabled ( #933 )
2017-02-08 10:48:19 -08:00
David Fowler
2c5dc9a75c
CR feedback
...
- Added license to file
- Removed extra space
2016-12-13 21:30:08 -08:00
David Fowler
c6346cbde5
Review feedback for IApplicationLifetimeEvents
...
- Renamed the type to IHostedService and added Start and Stop.
- Split up the IHostedService execution and IApplicationLifetime to avoid
circular references
- Trigger IHostedService.Start after starting the server
- Trigger IHostedService.Stop before disposing the service provider
#895 #894
2016-12-13 21:22:33 -08:00
Kiran Challa
4abb48e1aa
Added EventSource to Hosting
2016-11-30 14:22:46 -08:00
David Fowler
42594afd42
Introducing IApplicationLifetimeEvents ( #875 )
...
- Introduce a new DI friendly API for handling lifetime events. IApplicationLifetime isn't
isn't replaceable so we introduce a new DI friendly API that can be implemented to handle
lifetime events of an ASP.NET application. It should also make it possible to write up extension
on IWebHostBuilder to wire up to external systems that need to register the state of the application (like systemd).
- Run all handlers even if one throws
- Let both sets of event handlers run before throwing (IApplicationLifetimeEvents and IApplicationLifetime cancellation token callbacks).
2016-11-29 03:38:07 -08:00
Pavel Krymets
2bddba8f90
Handle SIGTERMs for graceful shutdown ( #876 )
2016-11-02 09:29:44 -07:00
Pavel Krymets
a29ceeb9e8
Deterministically dispose instances created by WebHostBuilder ( #868 )
2016-10-31 11:59:57 -07:00
Kiran Challa
9c44d493ca
Revert "Revert "Remove existing implementation of StartupExceptionPage and use the one in Common""
...
This reverts commit 3f6b558cf3 .
2016-08-29 12:40:13 -07:00
Kiran Challa
3f6b558cf3
Revert "Remove existing implementation of StartupExceptionPage and use the one in Common"
...
This reverts commit 83e0d4798e .
2016-08-25 17:21:29 -07:00
Kiran Challa
83e0d4798e
Remove existing implementation of StartupExceptionPage and use the one in Common
...
[Fixes #831 ] Fix startup exception page to handle flattened exceptions
2016-08-25 16:27:30 -07:00
David Fowler
0a7cf6b5a0
Added support for Startup.ConfigureContainer
...
- Startup.ConfigureContainer allows users to configure a 3rd party DI
container in a first class way in the Startup class. 3rd party containers
plug in via IServiceProviderFactory<TContainerBuilder> configured in
IWebHostBuilder.ConfigureServices.
- Added tests
2016-08-17 10:44:27 -07:00
Ajay Bhargav Baaskaran
184a25792a
[ Fixes #819 ] Display LoaderExceptions in ReflectionTypeLoadException
2016-07-25 12:19:32 -07:00
John Luo
b955ec7743
Update shutdown logic for hosted applications
...
- Guarantee the ordering of ApplicationLifetime events
- Guarantee that the callbacks of each event is completed before the next event is triggered
2016-07-21 11:14:51 -07:00
Cesar Blum Silveira
0f79bff98b
Prevent NullReferenceException when disposing Context.Scope ( #782 ).
2016-06-09 15:58:31 -07:00
David Fowler
92553ae77c
Removed dead code
2016-05-28 16:34:38 -07:00
John Luo
7f4e3645f2
Update ConfigureServicesBuilder exception message #502
2016-05-23 16:11:18 -07:00
David Fowler
e7b8c3f90a
Support ASPNETCORE_URLS to set server urls
...
- Read both urls and server.urls in WebHost
- UseUrls now sets urls instead of server.urls
2016-05-22 01:37:28 -07:00
David Fowler
c5e8120e39
Remove UseServer(string) overload
...
- Removed the overload that takes a string because it's broken
#731
2016-05-20 21:55:26 -07:00
Chris R
4cad0a2f01
Merge branch 'release' into dev
2016-05-03 09:05:55 -07:00
Chris R
e6bddd4131
Prepopulate the environment rather than fall back to it.
2016-05-03 08:55:56 -07:00
BrennanConroy
d5b1df13cf
Merge branch 'release' into dev
2016-04-28 10:06:13 -07:00
BrennanConroy
289b3f58d0
Prefer uppercase ASPNETCORE_ENVIRONMENT
2016-04-28 10:01:43 -07:00
John Luo
9479f0910a
Merge branch 'release' into dev
2016-04-27 14:04:41 -07:00
John Luo
e505ecbc21
#700 #727 Add environment variables by default and remove UseDefaultHostingConfiguration
2016-04-27 11:40:22 -07:00
Pranav K
abe6dd5692
Merge branch 'release' into dev
2016-04-26 10:18:15 -07:00
Pranav K
3853d988c2
Remove references to IRuntimeEnvironment \ IApplicationEnvironment
2016-04-25 14:25:19 -07:00
David Fowler
933a2f5a1d
Don't dispose the server anymore, the container does it
2016-04-18 22:47:28 -07:00
David Fowler
8f5f8d28d0
This change introduces a new service `IStartup` that can be registered in the hosting container to override any startup logic. `UseStartup` overloads have been changed to detect `IStartup` and directly put it in the container, or to wrapping it with a `ConventionBasedStartup` implementation to preserve the existing behavior.
...
- Remove IStartupLoader and add `IStartup` instead that matches the signature hosting cares about
- Moved `UseStartup` to extension methods
- Move existing logic into `ConventionBasedStartup` class
2016-04-18 21:33:03 -07:00
Ryan Brandenburg
6fd469e748
Make contentRootPath error give failed path
2016-04-18 09:48:48 -07:00
Chris R
5e425b24ec
Merge branch 'release' into dev
2016-04-15 16:02:49 -07:00
Chris R
26e6036187
#698 Remove IServerFactory
2016-04-15 16:01:17 -07:00
Ryan Brandenburg
6a57ec1fa9
Make contentRootPath error give failed path
2016-04-15 14:47:22 -07:00
David Fowler
b6a3fee088
Allocate the IServiceScopeFactory once and reuse it across requests
...
- Since we resolve the IServiceProvider from the application container, it's should be safe to reuse it across requests without the extra lookup everytime.
2016-04-01 20:32:59 -07:00
BrennanConroy
8c69989a5f
React to logging changes
2016-04-01 12:02:09 -07:00
David Fowler
1182a5a9ca
Remove IServerLoader and add the IServerFactory to the DI container
...
- This change removes the indirection and between the IServerLoader and
the IServerFactory. We now add the IServerFactory directly to the DI
container and resolve it from there.
- Moved logic that resolves IServerFactory from an assembly to a static
helper
2016-03-30 13:39:27 -07:00
David Fowler
a0de7564e2
Small tweaks to hosting
...
- Added some framework assemblies to stop VS from complaining
- Call AddSingleton instead of TryAddSigleton since we're always first.
- Remove the null check since these abstractions are never null now.
- Moved comments
2016-03-29 03:03:40 -07:00
John Luo
312192b447
WebHostBuilder extensions rename and documentation. #636 #648
2016-03-22 16:27:28 -07:00
Doug Bunting
bb3809d3dc
React to HttpAbstractions change: No features in `.Internal` namespace
...
- see issue aspnet/HttpAbstractions#561 and pull aspnet/HttpAbstractions#589
2016-03-21 09:06:37 -07:00
David Fowler
0852883133
Merge pull request #664 from cwe1ss/cweiss/InconsistentFilenames
...
File names not matching class names
2016-03-20 12:25:26 -07:00
David Fowler
2836c20093
Merge pull request #663 from cwe1ss/cweiss/AbstractionsDocs
...
Consistency fixes for XML docs
2016-03-20 12:24:15 -07:00
Christian Weiss
cc0fc6ac06
File names not matching class names
2016-03-20 12:06:46 +01:00
Christian Weiss
312db4b424
Consistency fixes for XML docs
2016-03-20 11:38:46 +01:00
John Luo
ac7741fe81
Configure IStartupFilters in FIFO order #653
2016-03-17 15:51:32 -07:00
John Luo
32740d67a7
Use NullFileProvider from FileSystem
2016-03-16 14:27:45 -07:00
John Luo
5ac589317f
Additional fiels in HostingEnvironment and Renames
...
- Added ApplicationName, ContentRootPath and ContentRootFileProvider
- Removed Configuration
- Removed MapPath
2016-03-14 16:21:56 -07:00
Chris R
a31f840675
Rename environment variables to ASPNETCORE_. Remove the legacy ENV abbreviation.
2016-03-11 10:42:47 -08:00
John Luo
c6f6066b03
Elevate application starup errors to be logged as critical #612
2016-03-04 14:55:58 -08:00