.NET : 12. ENC0003: Updating ‘attribute’ requires restarting the application 해결 방법
.NET 8.0에서 비쥬얼 스튜디오의 Hot Reload
기능 사용 시, 다음과 같은 메시지가 발생 후, 진행이 불가하여 프로젝트를 재실행해야하는 경우가 발생한다.
AssemblyInfo.cs : ENC0003: Updating 'attribute' requires restarting the application
해결 방법은 전체 프로젝트에 EnableSourceControlManagerQueries
을 true
로 지정하면 된다. 다음과 같이 Directory.Build.props
파일을 이용하여 전체 프로젝트에 해당 속성을 설정한다.
<Project>
<PropertyGroup>
<EnableSourceControlManagerQueries>true</EnableSourceControlManagerQueries>
</PropertyGroup>
</Project>
댓글남기기