Programming/WPF
msbuild - ImportWindowsDesktopTargets ?
hoya_315
2023. 1. 4. 12:26
반응형
.csproj 파일을 분석하다가 <ImportWindowsDesktopTargets> 이 뭔지 궁금했다.
공식 문서에도 나와있는 게 없길래 검색해 봤다.
What does <ImportWindowsDesktopTargets> do in a try-convert generated *.csproj?
I have used the try-convert tool to convert my projects from .NET Framework to .NET 5.0 When inspecting the converted *.csproj files for projects that are targeting .net50-windows I noticed the el...
stackoverflow.com
나만의 방식으로 해석하자면 Target Framework 버전을 다중 지원할 때 사용하고, 보통 .net 버전을 update 할 때 자동으로 생성되는 것 같다.
반응형