Skip to content

Releases: dotnet/aspnetcore

v2.2.2

12 Feb 20:47
522705f
Compare
Choose a tag to compare
Merge pull request #6994 from aspnet/halter73/1531-part2

Revert "Wait to dispose RequestAborted CTS (#4447)"

v2.1.8

12 Feb 20:46
Compare
Choose a tag to compare
Revert "Revert "Put Razor.Design.Test and Razor.Language.Test in a di…

v2.2.1

09 Jan 21:35
Compare
Choose a tag to compare

v2.1.7

09 Jan 21:36
Compare
Choose a tag to compare

v3.0.0-preview-18579-0056

04 Dec 17:27
9e73c33
Compare
Choose a tag to compare

v2.2.0

04 Dec 17:08
Compare
Choose a tag to compare

ASP.NET Core release notes

We have disabled view recompilation when .cshtml change by default (except for the Development environment). A new flag called AllowRecompilingViewsOnFileChange has been introduced in RazorViewEngineOptions, which can be used to configure whether the view engine will watch for file changes. The settings is set to false by default for all environments but Development. If you are using Visual Studio to debug, then it will launch the application in the Development environment by default. You can find more details about the change by looking at this PR: https://github.com/aspnet/Mvc/pull/8369/files

In case you would like to keep the view recompilation enabled for your project, you can choose so by configure Razor options in Startup.ConfigureService method using the following code block:

services.AddMvc()
    .SetCompatibilityVersion(CompatibilityVersion.Version_2_2)
    .AddRazorOptions(options => options.AllowRecompilingViewsOnFileChange = true);

Repos

2.1.6

13 Nov 23:06
Compare
Choose a tag to compare

The list of changes in this release is available here:

2.2.0-preview3

17 Oct 16:24
Compare
Choose a tag to compare
2.2.0-preview3 Pre-release
Pre-release

2.1.5

17 Oct 17:07
Compare
Choose a tag to compare

2.2.0-preview2

12 Sep 22:36
Compare
Choose a tag to compare
2.2.0-preview2 Pre-release
Pre-release

ASP.NET Core 2.2.0-preview2

For more details, see the blog post here: https://blogs.msdn.microsoft.com/webdev/2018/09/12/asp-net-core-2-2-0-preview2-now-available.

To see all issues closed in the 2.2.0 Preview 2 milestone, see the results of this query.