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:
Родитель
a1885787a7
Коммит
a346ba6e73
|
@ -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
|
||||
);
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче