using System.Windows.Form; 을 인식 못하는 경우 (특히 Forms에 다음과 같이 빨간 줄이 뜨고 다음과 같은 경고창이 뜬다)
csproj에 <UseWindowsForms>true</UseWindowsForms>을 다음과 같이 PorpertyGroup에 직접 추가해준다.
<PropertyGroup>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
using System.Windows.Form; 을 인식 못하는 경우 (특히 Forms에 다음과 같이 빨간 줄이 뜨고 다음과 같은 경고창이 뜬다)
csproj에 <UseWindowsForms>true</UseWindowsForms>을 다음과 같이 PorpertyGroup에 직접 추가해준다.
<PropertyGroup>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>