mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-13 15:42:50 +08:00
20 lines
526 B
XML
20 lines
526 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ExampleTitle>Columns</ExampleTitle>
|
|
<ExampleDescription>Demonstrates how to render data into columns.</ExampleDescription>
|
|
<ExampleGroup>Widgets</ExampleGroup>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|