Skip to content
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

The Kestrel package/namespace has been renamed to Microsoft.AspNet.Server.Kestrel #53

Open
halter73 opened this issue Aug 11, 2015 · 0 comments

Comments

@halter73
Copy link
Member

This means all references to Kestrel should now be changed to Microsoft.AspNet.Server.Kestrel. I'm going to try to make these changes myself in all the affected projects I can find.

Example changes:

project.json

"dependencies": {
    "Kestrel": "1.0.0-*",
...
"commands": {
    "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5000"

becomes

"dependencies": {
    "Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
...
"commands": {
    "kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5000"

MyApp.ini

Server = Kestrel
Server.Urls = http://localhost:5000/

becomes

Server = Microsoft.AspNet.Server.Kestrel
Server.Urls = http://localhost:5000/

Startup.cs

using Kestrel;

becomes

    using Microsoft.AspNet.Server.Kestrel;

etc...

For questions, discussions or concerns, use this thread.

@victorhurdugaci victorhurdugaci added this to the 1.0.0-beta7 milestone Aug 11, 2015
@aspnet aspnet locked and limited conversation to collaborators Aug 11, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants