12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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.5</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.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.8.0" />
- <PackageReference Include="System.ValueTuple" Version="4.4.0" />
- </ItemGroup>
- <ItemGroup>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Dialogs\" />
- </ItemGroup>
- </Project>
|