You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please see below for a list of known issues in the 2.2.0 Preview 3 release.
Some external CSS styles are failing to load for new Razor and MVC projects:
When running a newly created MVC or Razor Pages project, some styles do not render.
This is caused by an integrity check failure for some of the referenced stylesheets. To fix the issue add a crossorigin="anonymous" attribute to the bootstrap.min.css referencing <link ...> tag in the _Layout.cshtml file, as follows:
URL generation for conventional routes with default values is invalid
In an MVC project using Endpoint Routing, URL generation using IUrlHelper can generate a URL incorrectly when the route template includes default values.
This can result in the following URL being generated /?id=17 - this will work with most uses of MVC but the result of /Home/Index/17 is intended.
NullReferenceException thrown when using IHttpClientFactory
Crashes can occur due to a bug in how cleanup timers are incorrectly started when using IHttpClientFactory. This can be worked around by setting HttpClientFactoryOptions.HandlerLifetime to an extremely long value or Timeout.InfiniteTimespan.
Known issues in ASP.NET / Entity Framework Core 2.2 Preview 3
To see all issues closed in the 2.2.0 Preview 3 milestone, see the results of this query.
Official announcement blog post: https://blogs.msdn.microsoft.com/webdev/2018/10/17/asp-net-core-2-2-0-preview3-now-available/
Please see below for a list of known issues in the 2.2.0 Preview 3 release.
Some external CSS styles are failing to load for new Razor and MVC projects:
When running a newly created MVC or Razor Pages project, some styles do not render.
This is caused by an integrity check failure for some of the referenced stylesheets. To fix the issue add a
crossorigin="anonymous"
attribute to thebootstrap.min.css
referencing<link ...>
tag in the_Layout.cshtml
file, as follows:URL generation for conventional routes with default values is invalid
In an MVC project using Endpoint Routing, URL generation using
IUrlHelper
can generate a URL incorrectly when the route template includes default values.Example:
This can result in the following URL being generated
/?id=17
- this will work with most uses of MVC but the result of/Home/Index/17
is intended.NullReferenceException thrown when using IHttpClientFactory
Crashes can occur due to a bug in how cleanup timers are incorrectly started when using
IHttpClientFactory
. This can be worked around by settingHttpClientFactoryOptions.HandlerLifetime
to an extremely long value orTimeout.InfiniteTimespan
.aspnet/HttpClientFactory#194
For discussions, please go to dotnet/aspnetcore#3642
The text was updated successfully, but these errors were encountered: