12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
- <RootNamespace>Terminal.Gui</RootNamespace>
- <AssemblyName>Terminal.Gui</AssemblyName>
- <DebugType>full</DebugType>
- <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
- <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
- </PropertyGroup>
- <PropertyGroup>
- <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
- <PackageId>Terminal.Gui</PackageId>
- <PackageVersion>0.23</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>
- <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
- <Description>Console-based user interface toolkit for .NET applications.</Description>
- <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>0.23: Better support for disabled menu items; Raises text changed event after the internals have been updated; Fix Caps-NumLock; Alt-HotKey now work on menus
- 0.22: Correct vertical scrollview behavior, Small curses driver fix for terminals without mouse support, TextView support for scrolling, Surface Used property on TextField, Surface Cursor on RadioGroup.
- 0.21: Introudce Attribute.Make to more easily create attributes, and fix a bug in the file panel.
- 0.20: Expose some of the CursesDriver APIs
- 0.19: PageUpDown updates (GaikwadPratik); Fixes in multi-line labels ([email protected]); Support Delete char in TextView (Greg Amidon); Prevent empty TextViews from crashing; Allow TextFields to be updated on the Changed event.
- 0.18: Fixes hotkeys for menus (Sang Kil); Fixes RemoveAll for all containers; Allows Toplevels with no views; Fixes FileDialog layout; Prevent crash in TextView
- 0.17: Unix, dynamically load ncurses library to support different configurations, and not require -dev on Linux, various bug fixes.
- 0.16: Support for Shift-Tab on Windows (fix by @mholo65)
- 0.15: WindowsDriver fix for Legacy Console keyboard input (issue #105)
- 0.14: WindowsDriver fix for EventType size.
- 0.13: Fixes keyboard input for Alt-Gr and numbers.
- 0.12: Fixes the text editor merge line command.
- 0.11: Simplify TextField implementation, fixes a couple of editing bugs.
- 0.10: Fix unicode rendering for TextField, and bring F# example
- 0.9: File Open/File Save dialogs, HexView, Windows Driver allows resizing, mouse events, faster (thanks to Nick Van Dyck, nickvdyck for the contribution!), smaller bug fixes,
- 0.8: Completes keyboard support on Windows; Fixes delete on Windows, some layout fixes.
- 0.7: terminal resizing on Linux propagates sizes with new layout system, and new features on the layout system (documented)
- 0.6: new layout system, multi-line textview editor, Linux bug fix for .NET Core
- 0.5: support Linux with .NET Core, Windows driver fixes.
- 0.4: hotkey handling fix for RadioButtons
- 0.3: Fix Windows key input to not echo characters on console, proper Fkey mapping
- 0.2: Auto-detect the best console</PackageReleaseNotes>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType></DebugType>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="NStack.Core" Version="0.11.0" />
- <PackageReference Include="System.ValueTuple" Version="4.4.0" />
- </ItemGroup>
- <ItemGroup>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Dialogs\" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="NStack">
- <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
- </Reference>
- <Reference Include="NStack">
- <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <None Remove="Drivers\#ConsoleDriver.cs#" />
- </ItemGroup>
- </Project>
|