Codit / practical-api-guidelines

Practical guidelines for building & designing APIs with .NET.
MIT License
16 stars 5 forks source link

Update dependency Microsoft.AspNetCore.App to v2.2.0 - autoclosed #53

Closed renovate[bot] closed 5 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change References
Microsoft.AspNetCore.App nuget minor 2.1.6 -> 2.2.0 source

Release Notes

aspnet/AspNetCore ### [`v2.2.0`](https://renovatebot.com/gh/aspnet/AspNetCore/releases/2.2.0) [Compare Source](https://renovatebot.com/gh/aspnet/AspNetCore/compare/2.1.6...2.2.0) - [General Release Notes](https://renovatebot.com/gh/dotnet/core/blob/master/release-notes/2.2/2.2.0/2.2.0.md) - [Download and Install](https://renovatebot.com/gh/dotnet/core/blob/master/release-notes/2.2/2.2.0/2.2.0-download.md) #### 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: [aspnet/Mvc#​8369](https://renovatebot.com/gh/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 - [CoreCLR](https://renovatebot.com/gh/dotnet/coreclr/releases/tag/v2.2.0) - [CoreFX](https://renovatebot.com/gh/dotnet/corefx/releases/tag/v2.2.0) - [Core-Setup](https://renovatebot.com/gh/dotnet/core-setup/releases/tag/v2.2.0) - [CLI](https://renovatebot.com/gh/dotnet/cli/releases/tag/v2.2.100) - [ASP.NET](https://renovatebot.com/gh/aspnet/Home/releases/tag/2.2.0) - [EF](https://renovatebot.com/gh/aspnet/EntityFrameworkCore/releases/tag/2.2.0)

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.

:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Renovate Bot. View repository job log here.