Fixed issue where switching to WinUI 3 multiples times and back to WinUI 2 would cause compilation constant not being cleaned up

This commit is contained in:
Arlo Godfrey 2022-04-13 14:04:59 -05:00
Родитель 7ff516cb59
Коммит 1ceab73a38
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,7 @@ if ($targets -eq "3") {
if ($targets -eq "2") {
$fileContents = $fileContents -replace 'Uno.WinUI', 'Uno.UI';
$fileContents = $fileContents -replace '\$\(DefineConstants\);WINAPPSDK;', '$(DefineConstants);';
$fileContents = $fileContents -replace 'WINAPPSDK;', '';
}
Set-Content -Force -Path ../Labs.Uno.props -Value $fileContents;