-
Notifications
You must be signed in to change notification settings - Fork 835
Prepare repo to build 2.2.1 #493
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
Conversation
* Update dependencies to 2.2.0 rtm * Update branding to 2.2.1 * Update package baselines to 2.2.0 * Add a restore source for 2.2.0 RTM
<PropertyGroup Label="RestoreSources"> | ||
<RestoreSources>$(DotNetRestoreSources)</RestoreSources> | ||
|
||
<!-- This feed contains the 2.2.0 RTM runtime. This can be removed after it is released to nuget.org. --> |
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.
Should we add a post-release activity to clean up things like this?
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 don't think this is necessary. The dotnet-core blob and myget feeds contain the 2.2.0 packages
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.
Yeah, I'll open a bug on aspnetcore-internal to track this.
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.
The dotnet-core blob and myget feeds contain the 2.2.0 packages
Cool, i'll remove this feed now. Didn't see this comment before I merged.
{ | ||
var url = $"{source}/{id}/{version}"; | ||
var url = _feedv3.HasValue() | ||
? $"{source}/{id.ToLowerInvariant()}/{version}/{id.ToLowerInvariant()}.{version}.nupkg" |
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'm sure this will bite us elsewhere too. (nuget casing issues)
* Added execution time duration into HealthReportEntry and TotalDuration on HealthReport * review PR feedback from @rynowak. * added the same duration into HealthReportEntry and log when the health check throw
Changes:
FYI @mmitche