-
Notifications
You must be signed in to change notification settings - Fork 21
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
Dev/billhie/get browser link building #110
base: main
Are you sure you want to change the base?
Dev/billhie/get browser link building #110
Conversation
BillHiebert
commented
Jun 23, 2021
- Updated nuget pkg feeds
- Now targets netcoreapp3.1 and references the AspNetCore.App framework
- Replaced obsolete interfaces with updated ones
- Added StartupHook.cs and StartupHosting.cs to initialize browserlink
- Fixed some tests that were failing due to behavior change.
|
||
public Task CompleteAsync() | ||
{ | ||
return _wrapped.CompleteAsync(); |
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.
It used to be possible for _wrapped to be null, if app.UseStaticFiles() wasn't included. We should check all references for null to be on the safe side, so we don't cause runtime errors in working applications.
@@ -1,15 +1,16 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks> | |||
<!--<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>--> |
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.
nit: I would just remove this instead of commenting it out.