This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to deal with latest breaking changes from aspnet
- Loading branch information
1 parent
a062780
commit 0a28805
Showing
35 changed files
with
660 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"server": "Microsoft.AspNet.Server.Kestrel", | ||
"server.urls": "http://localhost:5200" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"webroot": "wwwroot", | ||
"version": "1.0.0-*", | ||
"exclude": [ | ||
"wwwroot" | ||
], | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"commands": { | ||
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5200", | ||
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5200" | ||
}, | ||
"version": "1.0.0-*", | ||
"dependencies": { | ||
"Glimpse.Agent.Dnx": "", | ||
"Microsoft.AspNet.Hosting": "1.0.0-*", | ||
"Microsoft.AspNet.Diagnostics": "1.0.0-*", | ||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*", | ||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*" | ||
}, | ||
"frameworks": { | ||
"dnx451": { } | ||
}, | ||
"exclude": "wwwroot/**/*.*", | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
"commands": { | ||
"web": "Glimpse.Agent.Dnx.Sample" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"server": "Microsoft.AspNet.Server.Kestrel", | ||
"server.urls": "http://localhost:5100" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
sample/Glimpse.AgentServer.Dnx.Mvc.Sample/wwwroot/_references.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
/// <autosync enabled="true" /> | ||
/// <reference path="../gulpfile.js" /> | ||
/// <reference path="js/site.js" /> | ||
/// <reference path="lib/bootstrap/dist/js/bootstrap.js" /> | ||
/// <reference path="lib/bootstrap-touch-carousel/dist/js/bootstrap-touch-carousel.js" /> | ||
/// <reference path="lib/hammer.js/hammer.js" /> | ||
/// <reference path="lib/jquery/dist/jquery.js" /> | ||
/// <reference path="lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
sample/Glimpse.AgentServer.Dnx.Mvc.Simple.Sample/hosting.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"server": "Microsoft.AspNet.Server.Kestrel", | ||
"server.urls": "http://localhost:5000" | ||
} |
18 changes: 9 additions & 9 deletions
18
sample/Glimpse.AgentServer.Dnx.Mvc.Simple.Sample/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"commands": { | ||
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5000", | ||
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5000" | ||
}, | ||
"version": "1.0.0-*", | ||
"dependencies": { | ||
"Glimpse.Agent.Dnx": "", | ||
"Glimpse.Agent.Dnx.Mvc": "", | ||
"Glimpse.Server.Dnx": "", | ||
"Microsoft.AspNet.Hosting": "1.0.0-*", | ||
"Microsoft.AspNet.Mvc": "6.0.0-*", | ||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*", | ||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*" | ||
}, | ||
"exclude": [ | ||
"wwwroot" | ||
], | ||
"frameworks": { | ||
"dnx451": { }, | ||
"dnxcore50": { } | ||
}, | ||
"exclude": "wwwroot/**/*.*", | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"version": "1.0.0-*", | ||
"webroot": "wwwroot" | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
"commands": { | ||
"web": "Glimpse.AgentServer.Dnx.Mvc.Simple.Sample" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"server": "Microsoft.AspNet.Server.Kestrel", | ||
"server.urls": "http://localhost:5100" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"webroot": "wwwroot", | ||
"version": "1.0.0-*", | ||
"exclude": [ | ||
"wwwroot" | ||
], | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"commands": { | ||
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5100", | ||
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5100" | ||
}, | ||
"dependencies": { | ||
"Glimpse.Agent.Dnx": "", | ||
"Glimpse.Server.Dnx": "", | ||
"Microsoft.AspNet.Diagnostics": "1.0.0-*", | ||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*", | ||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*" | ||
}, | ||
"frameworks" : { | ||
"dnx451": { }, | ||
"dnxcore50": { } | ||
} | ||
"version": "1.0.0-*", | ||
"dependencies": { | ||
"Glimpse.Agent.Dnx": "", | ||
"Glimpse.Server.Dnx": "", | ||
"Microsoft.AspNet.Hosting": "1.0.0-*", | ||
"Microsoft.AspNet.Diagnostics": "1.0.0-*", | ||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*", | ||
"Microsoft.AspNet.Server.WebListener": "1.0.0-*" | ||
}, | ||
"frameworks" : { | ||
"dnx451": { }, | ||
"dnxcore50": { } | ||
}, | ||
"exclude": "wwwroot/**/*.*", | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
"commands": { | ||
"web": "Glimpse.AgentServer.Dnx.Sample" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"server": "Microsoft.AspNet.Server.Kestrel", | ||
"server.urls": "http://localhost:5210" | ||
} |
Oops, something went wrong.
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A month ago we had a conversation about these changes, that there would probably be a new release in one or two weeks. It looks like that hasn't succeeded. Any idea when there will be a working Glimpse for ASP.NET 5.0 on Nuget?
Thanks in advance.
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the delay. This got put on the post Jan 1st list as the people working on the build system where trying to react to new cli intergration chnages and it didn't make sense to set us up on the old build system only to have it changed 2 weeks later. So hopefully, assuming that work got finished over the break, it shouldn't be that far away. // @victorhurdugaci
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. Thanks, we'll just wait paitently :)
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Working on it. I think I'll have something before the EOD.
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Victor, no luck that day? :)
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, sorry for the late reply. I changed the build that day so it should be on the feed. Btw, we're pushing to myget/aspnetvnext, not nuget because all the dependencies are there.
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry if I don't fully understand how to install it in ASP.NET 5, but I guess things are not clear / documented.
http://getglimpse.com/Docs/Installing
I guess the steps to take for < ASP.NET 5 and ASP.NET 5 are different.
And for ASP.NET 5 I think it should be exactly just the 'Core'? (I think I saw this in a ASP.NET Community Standup)
Install-Package Glimpse -Pre
I added aspnetvnext as a source and installed "Glimpse.Agent.Dnx"
Now this package is missing, could that be the problem in his breaking changes issue?
"Microsoft.Extensions.Options.ConfigurationExtensions"
It would be nice if this part can be added to the Documentation > Installation
Thanks in advance!
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried the manual way, but the builds fail, and offcourse no ouput to the builds/local folder.
Everybody else seems to have no problems? I can't imagine that...
And now even the whole platform has been renamed, which is good to clarify everything.
Please, reply. I'm out of options. :)
0a28805
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I now also tried it with the dev branch with the build.cmd. It will run for a while and does a lot, and eventually fails with the following message:
Unable to locate Dependency Microsoft.Net.Http.Server >= 1.0.0-rc2-16188