Disable controller mode for .NET Core.

This is required until the required APIs are present in .NET Core (NamedPipes security).
This commit is contained in:
Jérôme Laban 2019-02-21 16:22:18 -05:00
Родитель a1885787a7
Коммит a346ba6e73
2 изменённых файлов: 1 добавлений и 2 удалений

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

@ -3,7 +3,6 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UnoSourceGeneratorUseGenerationHost>true</UnoSourceGeneratorUseGenerationHost>
</PropertyGroup>
<PropertyGroup>

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

@ -148,10 +148,10 @@ namespace Uno.SourceGeneratorTasks
public bool SupportsGenerationController
=> (bool.TryParse(UseGenerationController, out var result) && result)
&& !RuntimeHelpers.IsNetCore
&& (
!RuntimeHelpers.IsMono
|| RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
|| RuntimeHelpers.IsNetCore
);