script-launcher/src/ScriptLauncher.csproj

25 lines
729 B
XML
Raw Normal View History

2022-03-09 22:42:40 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.3</Version>
2022-05-25 18:20:53 +02:00
<PackAsTool>true</PackAsTool>
<Description>Tool to find and exec shell scripts</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
2023-01-27 16:27:08 +01:00
<ToolCommandName>scrl</ToolCommandName>
2022-03-09 22:42:40 +01:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
2022-03-09 22:42:40 +01:00
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
2022-03-09 22:42:40 +01:00
</Project>