oops, use the autodetection, do not force Windows driver on Unix

This commit is contained in:
Miguel de Icaza
2018-02-15 23:04:42 -05:00
parent ba656c3c30
commit f362d4fd75
2 changed files with 3 additions and 2 deletions

View File

@@ -1264,7 +1264,7 @@ namespace Terminal.Gui {
if (p == PlatformID.Win32NT || p == PlatformID.Win32S || p == PlatformID.Win32Windows)
UseSystemConsole = true;
}
UseSystemConsole = true;
//UseSystemConsole = true;
if (UseSystemConsole)
Driver = new NetDriver ();
else

View File

@@ -10,7 +10,7 @@
<PropertyGroup>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<PackageId>Terminal.Gui</PackageId>
<PackageVersion>0.1</PackageVersion>
<PackageVersion>0.2</PackageVersion>
<Authors>Miguel de Icaza</Authors>
<PackageLicenseUrl>https://github.com/migueldeicaza/gui.cs/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
@@ -19,6 +19,7 @@
<Owners>Miguel de Icaza</Owners>
<Summary>Application framework for creating modern console applications using .NET </Summary>
<Title>Gui.cs is a framework for creating console user interfaces</Title>
<PackageReleaseNotes>Auto-detect the best console</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>