Terminal.Gui.csproj 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.5</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.5: support Linux with .NET Core, Windows driver fixes.
  23. 0.4: hotkey handling fix for RadioButtons
  24. 0.3: Fix Windows key input to not echo characters on console, proper Fkey mapping
  25. 0.2: Auto-detect the best console</PackageReleaseNotes>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType></DebugType>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <PackageReference Include="NStack.Core" Version="0.8.0" />
  32. <PackageReference Include="System.ValueTuple" Version="4.4.0" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Folder Include="Dialogs\" />
  38. </ItemGroup>
  39. </Project>