mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
- Added WasFinished convenience property to Wizard to check completion status - Updated Wizard documentation to explain IRunnable integration - Enabled POST_4148 in FluentExample to demonstrate fluent API with automatic disposal - Wizard inherits from Dialog so it automatically has IRunnable<int?> support Co-authored-by: tig <585482+tig@users.noreply.github.com>
13 lines
403 B
XML
13 lines
403 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<DefineConstants>$(DefineConstants);POST_4148</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|