Files
Terminal.Gui/Examples/FluentExample/FluentExample.csproj
copilot-swe-agent[bot] e43409f45e Implement steps 4-6: Update Wizard and enable FluentExample POST_4148
- 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>
2025-11-22 00:52:31 +00:00

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>