.NET 8.0에서 비쥬얼 스튜디오의 Hot Reload기능 사용 시, 다음과 같은 메시지가 발생 후, 진행이 불가하여 프로젝트를 재실행해야하는 경우가 발생한다.

AssemblyInfo.cs : ENC0003: Updating 'attribute' requires restarting the application

해결 방법은 전체 프로젝트에 EnableSourceControlManagerQueriestrue로 지정하면 된다. 다음과 같이 Directory.Build.props파일을 이용하여 전체 프로젝트에 해당 속성을 설정한다.

<Project>
  <PropertyGroup>
    <EnableSourceControlManagerQueries>true</EnableSourceControlManagerQueries>
  </PropertyGroup>
</Project>

카테고리:

업데이트:

댓글남기기