mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Added mouse support and more features. * Updating NuGet packages. * Putting text on the same line. * Added a read only Position, CursorPosition properties and events. * Added a stream argument to ApplyEdits to only save the edits. * Ignore control characters and other special keys.
15 lines
579 B
XML
15 lines
579 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ReactiveUI.Fody" Version="17.1.17" />
|
|
<PackageReference Include="ReactiveUI" Version="17.1.17" />
|
|
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.1.4" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|