mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
17 lines
452 B
XML
17 lines
452 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<LangVersion>9</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<Title>Prompt</Title>
|
|
<Description>Demonstrates how to get input from a user.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Spectre.Console\Spectre.Console.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|