-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Serving legacy ASP.NET Websites #561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There is no support for ASP.NET 4.x projects (e.g. MVC 5.x and earlier, Web API 2.x and earlier, Web Forms) on DNX. Is that what you're asking for? |
Yes... i'm trying to get away without migrating to VS2015... looks like this wont happen A bit confusing... ASP.NET 5 not supporting ASP.NET MVC 5 :) Thanks! |
Yeah the version numbers are a bit confusing, sorry about that! Fortunately there's lots of choice these days for editors: VS2015 (Windows only, fully featured), or Visual Studio Code (Windows, Mac, Linux), or OmniSharp (lots of platforms, lots of editors) all serve as terrific experiences for working on ASP.NET 5 applications. |
…tures` package and namespace - #590, also related to #561 - move feature interfaces from `Microsoft.AspNetCore.Http` package - move required classes from `Microsoft.AspNetCore.Http.Abstractions` package - move `ISession` and `WebSocketAcceptContext` to `Microsoft.AspNetCore.Http` namespace (#590) nit: remove transient dependencies listed in `Microsoft.AspNetCore.Http.Abstractions`'s `project.json`
… cookies - #561 - new `SetCookieHeaderValue.AppendToStringBuilder()` method; avoids per-call `StringBuilder` allocation - `ResponseCookies` uses `ObjectPool<StringBuilder>` that `ResponseCookiesFeature` provides - `ResponseCookies` works fine if no `ObjectPoolProvider` is available - `IHttpContextFactory` instance is a singleton instantiated from CI - make `HttpContextFactory` `ObjectPoolProvider` and `ResponseCookiesFeature`-aware - apply same pattern to sample `PooledHttpContextFactory` - pool is not currently configurable; defaults are fine for response cookies - if we need (policy) configuration, would add an `IOptions<HttpContextFactorySettings>` nit: Add some doc comments
Is it possible to run websites that currently work on IIS 7.5 or mono/xsp4 on dnx/kestrel.
From what i understand it could be as easy as having the right
{"commands":{ ? }}
in Project.json.I want to keep my existing workflow (using Visual Studio 2013 Community) for now but want to test the websites with different servers/databases (docker makes that easy...).
Can someone please put me on the right track?
Thanks!
The text was updated successfully, but these errors were encountered: