Terminal.Gui.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <DebugType>full</DebugType>
  7. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  8. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
  12. <PackageId>Terminal.Gui</PackageId>
  13. <PackageVersion>0.16</PackageVersion>
  14. <Authors>Miguel de Icaza</Authors>
  15. <PackageLicenseUrl>https://github.com/migueldeicaza/gui.cs/blob/master/LICENSE</PackageLicenseUrl>
  16. <PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
  17. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
  18. <Description>Console-based user interface toolkit for .NET applications.</Description>
  19. <Owners>Miguel de Icaza</Owners>
  20. <Summary>Application framework for creating modern console applications using .NET </Summary>
  21. <Title>Gui.cs is a framework for creating console user interfaces</Title>
  22. <PackageReleaseNotes>0.16: Support for Shift-Tab on Windows (fix by @mholo65)
  23. 0.15: WindowsDriver fix for Legacy Console keyboard input (issue #105)
  24. 0.14: WindowsDriver fix for EventType size.
  25. 0.13: Fixes keyboard input for Alt-Gr and numbers.
  26. 0.12: Fixes the text editor merge line command.
  27. 0.11: Simplify TextField implementation, fixes a couple of editing bugs.
  28. 0.10: Fix unicode rendering for TextField, and bring F# example
  29. 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,
  30. 0.8: Completes keyboard support on Windows; Fixes delete on Windows, some layout fixes.
  31. 0.7: terminal resizing on Linux propagates sizes with new layout system, and new features on the layout system (documented)
  32. 0.6: new layout system, multi-line textview editor, Linux bug fix for .NET Core
  33. 0.5: support Linux with .NET Core, Windows driver fixes.
  34. 0.4: hotkey handling fix for RadioButtons
  35. 0.3: Fix Windows key input to not echo characters on console, proper Fkey mapping
  36. 0.2: Auto-detect the best console</PackageReleaseNotes>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  39. <DebugType></DebugType>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <PackageReference Include="NStack.Core" Version="0.11.0" />
  43. <PackageReference Include="System.ValueTuple" Version="4.4.0" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Folder Include="Dialogs\" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Reference Include="NStack">
  52. <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  53. </Reference>
  54. <Reference Include="NStack">
  55. <HintPath>..\..\..\Users\miguel\.nuget\packages\nstack.core\0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  56. </Reference>
  57. </ItemGroup>
  58. </Project>