Pavel Krymets
2ed9ae8586
Rename Microsoft.Dnx.Compilation.Abstractions to Microsoft.Extensions.Compilation.Abstractions
2015-11-02 15:24:06 -08:00
SteveSandersonMS
37eb4efff0
Remove 'express' and 'body-parser' NPM dependencies from HttpNodeInstance
2015-11-02 14:52:45 -08:00
Ben Adams
3c2e2b9d98
#426 Less alloc/wrapping/boxing for Query, Forms, Cookies
2015-11-02 14:47:46 -08:00
Cesar Blum Silveira
4862a62a2f
Merge branch 'release' into dev
2015-11-02 14:42:35 -08:00
Cesar Blum Silveira
74d89b2e32
Strong name everything.
2015-11-02 14:40:58 -08:00
Cesar Blum Silveira
af0d2e5888
Merge branch 'release' into dev
2015-11-02 13:38:08 -08:00
SteveSandersonMS
de991b9858
Switch to using DI to acquire Node instances. Bump versions to alpha2.
2015-11-02 13:35:14 -08:00
Cesar Blum Silveira
c78ad32b1e
Merge branch 'release' into dev
2015-11-02 12:23:20 -08:00
SteveSandersonMS
301657a207
Enable inline source maps
2015-11-02 11:32:32 -08:00
SteveSandersonMS
60d77e7b92
Add ES2015 runtime transpilation sample
2015-11-02 11:15:34 -08:00
SteveSandersonMS
f693bd60e3
Initial state
2015-11-02 10:30:36 -08:00
ASP.NET Push Bot
98355aa2af
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
...
Source: aspnet/dnvm@74cbefa79c
2015-11-02 09:59:52 -08:00
Doug Bunting
037196d5c7
Restore `null` and `string.Empty` handling from `EncoderExtensions`
...
- prior test encoders were never invoked for `null` or empty `string`s e.g.
``` c#
public static void HtmlEncode(this IHtmlEncoder htmlEncoder, string value, TextWriter output)
{
...
if (!String.IsNullOrEmpty(value))
{
htmlEncoder.HtmlEncode(value, 0, value.Length, output);
}
}
```
- add missing `null` checks and handle `string.Empty` in `TextWriter output, string value, ...` overloads
- better match for the underlying `TextEncoder` behaviour
- `EncoderExtensions` provided an API like `TextEncoder.Encode(TextWriter output, string value)`
- that method calls `Encode(TextWriter output, string value, int startIndex, int characterCount)`
2015-11-02 09:40:42 -08:00
Eilon Lipton
0e1fa2e09d
Create LICENSE.txt
2015-11-01 17:26:35 -08:00
Eilon Lipton
d77a8aa7a2
Create CONTRIBUTING.md
2015-11-01 17:26:21 -08:00
Eilon Lipton
ec4482b20d
Create README.md
2015-11-01 17:25:55 -08:00
Ben Adams
ea6f6b10dc
Don't capture connection on closure
2015-11-01 13:27:17 +00:00
Chris R
a6a17f296d
React to ServerFactory changes.
2015-10-31 07:35:42 -07:00
Ben Adams
dd7c4b374d
Fix LibuvCopier DNXCore compile error
2015-10-31 01:53:24 +00:00
John Luo
5f91ce2f2b
Reacting to Hosting changes
2015-10-30 16:51:16 -07:00
John Luo
facf3ad0da
Missed update for test when reacting to hosting changes
2015-10-30 16:18:50 -07:00
Cesar Blum Silveira
e934f5e4ed
Strong name everything.
2015-10-30 15:36:55 -07:00
John Luo
b466c3b7d7
Reacting to Hosting changes
2015-10-30 14:19:55 -07:00
John Luo
3933a1904e
Refactoring IServerFactory #395
2015-10-30 13:00:07 -07:00
Cesar Blum Silveira
8a06966024
Strong name Microsoft.AspNet.JsonPatch.
2015-10-30 12:57:49 -07:00
David Fowler
c80946260a
Change the namespace of RequestDelegate
...
- change it to Microsoft.AspNet.Http
2015-10-30 12:25:21 -07:00
Chris R
99aa148342
Remove un-used namespace.
2015-10-30 10:56:00 -07:00
Pavel Krymets
af2c32f612
React to xunit change. Fix build error
2015-10-30 10:52:59 -07:00
Chris R
21373740c7
React to WebEncoders change.
2015-10-30 10:39:39 -07:00
Chris R
7b9e3adcf3
Remove deleted WebEncoders.Core package from NuGetPackageVerifier
2015-10-30 10:23:47 -07:00
Chris R
be4fb46281
#391 Migrate to System.Text.Encoding.Web
2015-10-30 10:13:02 -07:00
N. Taylor Mullen
978e2bb474
React to aspnet/Razor#196 .
...
- `TagHelper`s now auto-fill enums. Updated files to reflect new auto-filling enum changes.
2015-10-29 16:24:56 -07:00
ASP.NET Push Bot
a4314d1b30
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
...
Source: aspnet/dnvm@879aa15baf
2015-10-29 15:49:37 -07:00
Pranav K
f177f0c760
Add ForbidAsync overload for automatic authentication scheme.
2015-10-29 14:55:39 -07:00
Stephen Halter
4ad38625c7
Get the current runtime path via PlatformServices.Default
...
- This fixes an issue whith ApplicationDeployer on Mono.
Instead of giving the dnx path, Process.GetCurrentProcess().MainModule.FileName
would give the path to the Mono executable.
2015-10-29 14:50:51 -07:00
Stephen Halter
777f523135
Update System.Net.Sockets dependency in test project to 4.1.0
...
- This only affects the test project
- The Socket.*Async extension methods are available for net46 but not net451
so we ifdef.
2015-10-29 14:31:44 -07:00
Stephen Halter
fe654598f6
Merge branch 'release' into dev
2015-10-29 14:30:02 -07:00
Stephen Halter
85202b0174
Merge branch 'benaadams/read-to-null-buffer' into release
2015-10-29 12:24:40 -07:00
Stephen Halter
1722150ee9
Do nothing in KestrelThread.Stop if libuv fails to load
...
This prevents DllNotFoundExceptions from being masked by NullReferenceExceptions
2015-10-29 12:21:25 -07:00
Victor Hurdugaci
0b14bc135b
Show type load exception on the startup error page
2015-10-29 11:43:31 -07:00
Troy Dai
e9a6061023
Make Frame implements IHttpConnectionFeature
...
Provide RemoteIPAddress as well as RemotePort
2015-10-29 10:08:35 -07:00
Chris R
54451cb6fa
Merge branch 'release' into dev
2015-10-29 08:24:24 -07:00
Chris R
995f0ca92f
#452 Rename Microsoft.AspNet.Hosting.json to hosting.json.
2015-10-29 08:21:30 -07:00
Kiran Challa
f3384d97cb
Merge branch 'release' into dev
2015-10-28 15:55:12 -07:00
Kiran Challa
2bb2f95532
Log messages from HostingEngine are sometimes null #454
2015-10-28 15:51:36 -07:00
Ben Adams
bdadc8a3da
Move comment into loop, remove noop
2015-10-28 22:44:35 +00:00
ASP.NET Push Bot
9adc66547d
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
...
Source: aspnet/dnvm@ed0017b7e2
2015-10-28 12:59:08 -07:00
Pranav K
d8697fe985
Merge branch 'release' into dev
2015-10-28 12:52:31 -07:00
Pranav K
a335257339
Merge branch 'release' into dev
2015-10-28 12:52:22 -07:00
Pranav K
f2f2b98605
Merge branch 'release' into dev
2015-10-28 12:51:26 -07:00