Workaround for .NET6P3 maccatalyst/ios debug on macos (#742)

There was a change in P3 to stop setting this environment variable in maccatalyst and ios which is causing the debugger to hang while connecting on macOS.  This is a temporary fix to bring back the env variable until the issue is addressed.

https://github.com/dotnet/runtime/issues/50966
This commit is contained in:
Jonathan Dick 2021-04-14 16:32:37 -04:00 коммит произвёл GitHub
Родитель 8c41ccd460
Коммит 397f90a2dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -10,6 +10,10 @@
<PropertyGroup>
<_MicrosoftProjectReunionVersion>0.5.0</_MicrosoftProjectReunionVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0-ios' Or '$(TargetFramework)' == 'net6.0-maccatalyst'">
<!-- Debugger workaround -->
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv:MONO_THREADS_SUSPEND=preemptive</MtouchExtraArgs>
</PropertyGroup>
<ItemGroup>
<PackageReference
Update="Microsoft.Maui.Graphics"