浏览代码

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

Miguel de Icaza 7 年之前
父节点
当前提交
f362d4fd75
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 1 1
      Terminal.Gui/Core.cs
  2. 2 1
      Terminal.Gui/Terminal.Gui.csproj

+ 1 - 1
Terminal.Gui/Core.cs

@@ -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

+ 2 - 1
Terminal.Gui/Terminal.Gui.csproj

@@ -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>