mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-19 02:12:49 +08:00

Adds a new rule widget. Also fixes some bugs I encountered while testing some unrelated things in an extremely small console.
16 lines
428 B
XML
16 lines
428 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<Title>Rules</Title>
|
|
<Description>Demonstrates how to render horizontal rules (lines).</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Spectre.Console\Spectre.Console.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|