Terminal.Gui.csproj 3.2 KB

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