본문 바로가기
카테고리 없음

Visual Studio for Mac - 자동 새로고침

by Jundol 2021. 3. 12.

.Net Core 3.1 에서 Web application 개발시 cs 파일이 아닌 단순 웹 파일 수정시에도 빌드해서 어플리케이션을 다시 띄우지않으면 반영이 되지않는 어려움이 있다.

.NET Core MVC Page Not Refreshing After Changes - Stack Overflow

 

.NET Core MVC Page Not Refreshing After Changes

I'm building a .NET Core MVC on the latest version 2.2. I have a problem when I make changes to the CSHTML file and refresh the page, my changes are not reflected in the browser. I have to restart ...

stackoverflow.com

2.0과 3.0 이상의 버전에서 Auto Refreshing 기능을 이용하는 방법이 다르다.

1. 3.1 기준으로는 Nuget 패키지 파일인 Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation 을 3.1 버전으로 맞춰서 설치하고

2. Startup.cs 파일에 아래 코드를 추가해준다.

services.AddControllersWithViews().AddRazorRuntimeCompilation();

 

댓글