Terminal.Gui.csproj 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  3. <DebugType>portable</DebugType>
  4. </PropertyGroup>
  5. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  6. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  7. <DebugType>portable</DebugType>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  11. <!-- In the source tree the version will always be 1.0 for all projects. -->
  12. <!-- Do not modify these. Do NOT commit after manually running `dotnet-gitversion /updateprojectfiles` -->
  13. <AssemblyVersion>1.0</AssemblyVersion>
  14. <FileVersion>1.0</FileVersion>
  15. <Version>1.0</Version>
  16. <InformationalVersion>1.0</InformationalVersion>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
  20. <PackageReference Include="NStack.Core" Version="1.0.1" />
  21. <InternalsVisibleTo Include="UnitTests" />
  22. </ItemGroup>
  23. <!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
  24. <PropertyGroup>
  25. <!-- See https://stackoverflow.com/a/44463578/297526 -->
  26. <!--<RestoreSources>$(RestoreSources);../../local-packages;https://api.nuget.org/v3/index.json</RestoreSources>-->
  27. </PropertyGroup>
  28. <!-- API Documentation -->
  29. <ItemGroup>
  30. <None Include="..\docfx\images\logo.png">
  31. <Pack>True</Pack>
  32. <PackagePath>\</PackagePath>
  33. </None>
  34. <None Include="..\README.md">
  35. <Pack>True</Pack>
  36. <PackagePath>\</PackagePath>
  37. </None>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Update="Resources\Strings.Designer.cs">
  41. <DesignTime>True</DesignTime>
  42. <AutoGen>True</AutoGen>
  43. <DependentUpon>Strings.resx</DependentUpon>
  44. </Compile>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <EmbeddedResource Update="Resources\Strings.resx">
  48. <Generator>ResXFileCodeGenerator</Generator>
  49. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  50. </EmbeddedResource>
  51. </ItemGroup>
  52. <!-- Enable Nuget Source Link for github -->
  53. <ItemGroup>
  54. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
  55. </ItemGroup>
  56. <PropertyGroup>
  57. <TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
  58. <RootNamespace>Terminal.Gui</RootNamespace>
  59. <AssemblyName>Terminal.Gui</AssemblyName>
  60. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  61. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  62. <!--<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>-->
  63. <PackageId>Terminal.Gui</PackageId>
  64. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  65. <PackageProjectUrl>https://github.com/gui-cs/Terminal.Gui/</PackageProjectUrl>
  66. <RepositoryUrl>https://github.com/gui-cs/Terminal.Gui.git</RepositoryUrl>
  67. <RepositoryType>git</RepositoryType>
  68. <IncludeSymbols>true</IncludeSymbols>
  69. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  70. <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
  71. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  72. <!-- Embed source files that are not tracked by the source control manager in the PDB -->
  73. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  74. <PackageIcon>logo.png</PackageIcon>
  75. <PackageReadmeFile>README.md</PackageReadmeFile>
  76. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console, tui</PackageTags>
  77. <Description>Cross Platform Terminal UI toolkit for .NET</Description>
  78. <Owners>Miguel de Icaza, Charlie Kindel</Owners>
  79. <Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
  80. <Title>Terminal.Gui - Cross Platform Terminal user interface toolkit for .NET</Title>
  81. <PackageReleaseNotes>
  82. Release v1.7.2
  83. * Fixes #1773. Base color scheme for ListView hard to read
  84. * Fixes #1934. WindowsDriver crash when the height is less than 1 with the VS Debugger
  85. Release v1.7.1
  86. * Fixes #1930. Trailing whitespace makes MessageBox.Query buttons disappear.
  87. * Fixes #1921. Mouse continuous button pressed is not working on ScrollView.
  88. * Fixes #1924. Wizard: Selected help text is unreadable
  89. Release v1.7.0
  90. * Moved Terminal.Gui (and NStack) to the github.com/gui-cs organization.
  91. * Adds multi-step Wizard View for setup experiences (#124)
  92. * The synchronization context method Send is now blocking (#1854).
  93. * Fixes #1917. Sometimes Clipboard.IsSupported doesn't return the correct
  94. * Fixes #1893: Fix URLs to match gui-cs Org
  95. * Fixes #1883. Child TopLevels now get Loaded/Ready events.
  96. * Fixes #1867, #1866, #1796. TextView enhancements for ReadOnly and WordWrap.
  97. * Fixes #1861. Border: Title property is preferable to Text.
  98. * Fixes #1855. Window and Frame content view without the margin frame.
  99. * Fixes #1848. Mouse clicks in Windows Terminal.
  100. * Fixes #1846. TabView now clips to the draw bounds.
  101. * Fix TableView multi selections extending to -1 indexes
  102. * Fixes #1837. Setting Unix clipboard freezes.
  103. * Fixes #1839. Process WindowsDriver click event if location is the same after pressed and released.
  104. * Fixes #1830. If "libcoreclr.so" is not present then "libncursesw.so" will be used.
  105. * Fixes #1816. MessageBox: Hides underlying dialog when visible
  106. * Fixes #1815. Now returns false if WSL clipboard isn't supported.
  107. * Fixes #1825. Parent MenuItem stay focused if child MenuItem is empty.
  108. * Fixes #1812, #1797, #1791. AutoSize fixes.
  109. * Fixes #1818. Adds Title change events to Window.
  110. * Fixes #1810. Dialog: Closing event is not fired when ESC is pressed to close dialog.
  111. * Fixes #1793. ScrollBarView is hiding if the host fit the available space.
  112. * Added Pos/Dim Function feature to automate layout.
  113. * Fixes #1786. Windows Terminal is reporting well on mouse button pressed + mouse movement.
  114. * Fixes #1777 - Dialog button justification. Adds unit tests.
  115. * Fixes #1739. Setting menu UseKeysUpDownAsKeysLeftRight as false by default.
  116. * Fixes #1772. Avoids WindowsDriver flickering when resizing.
  117. * Fixed TableView always showing selected cell(s) even when not focused
  118. * Fixes #1769. Supports a minimum view size for non-automatic size views.
  119. * Exposes APIs to support upcoming Web console feature
  120. * Fixes some scrolling performance issues
  121. * Fixes #1763. Allowing read console inputs before idle handlers.
  122. * TableView unicode scenario usability
  123. * Added unicode testing code to TableEditor
  124. </PackageReleaseNotes>
  125. </PropertyGroup>
  126. </Project>