Terminal.Gui.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
  4. <RootNamespace>Terminal.Gui</RootNamespace>
  5. <AssemblyName>Terminal.Gui</AssemblyName>
  6. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  7. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
  11. <PackageId>Terminal.Gui</PackageId>
  12. <PackageVersion>0.24</PackageVersion>
  13. <Authors>Miguel de Icaza</Authors>
  14. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  15. <PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
  16. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
  17. <Description>Console-based user interface toolkit for .NET applications.</Description>
  18. <Owners>Miguel de Icaza</Owners>
  19. <Summary>Application framework for creating modern console applications using .NET </Summary>
  20. <Title>Gui.cs is a framework for creating console user interfaces</Title>
  21. <PackageReleaseNotes>0.24: the Windows driver implements WakeUp, allowing some scenarios like bug #207 to be fixed;
  22. 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
  23. 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.
  24. 0.21: Introudce Attribute.Make to more easily create attributes, and fix a bug in the file panel.
  25. 0.20: Expose some of the CursesDriver APIs
  26. 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.
  27. 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
  28. 0.17: Unix, dynamically load ncurses library to support different configurations, and not require -dev on Linux, various bug fixes.
  29. 0.16: Support for Shift-Tab on Windows (fix by @mholo65)
  30. 0.15: WindowsDriver fix for Legacy Console keyboard input (issue #105)
  31. 0.14: WindowsDriver fix for EventType size.
  32. 0.13: Fixes keyboard input for Alt-Gr and numbers.
  33. 0.12: Fixes the text editor merge line command.
  34. 0.11: Simplify TextField implementation, fixes a couple of editing bugs.
  35. 0.10: Fix unicode rendering for TextField, and bring F# example
  36. 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,
  37. 0.8: Completes keyboard support on Windows; Fixes delete on Windows, some layout fixes.
  38. 0.7: terminal resizing on Linux propagates sizes with new layout system, and new features on the layout system (documented)
  39. 0.6: new layout system, multi-line textview editor, Linux bug fix for .NET Core
  40. 0.5: support Linux with .NET Core, Windows driver fixes.
  41. 0.4: hotkey handling fix for RadioButtons
  42. 0.3: Fix Windows key input to not echo characters on console, proper Fkey mapping
  43. 0.2: Auto-detect the best console</PackageReleaseNotes>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  46. <DebugType></DebugType>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <PackageReference Include="NStack.Core" Version="0.11.0" />
  50. <PackageReference Include="System.ValueTuple" Version="4.4.0" />
  51. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2">
  52. <PrivateAssets>all</PrivateAssets>
  53. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  54. </PackageReference>
  55. </ItemGroup>
  56. <ItemGroup>
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Folder Include="Dialogs\" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Reference Include="NStack">
  63. <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  64. </Reference>
  65. <Reference Include="NStack">
  66. <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  67. </Reference>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Remove="Drivers\#ConsoleDriver.cs#" />
  71. </ItemGroup>
  72. </Project>