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>
|
2023-07-20 14:29:47 +02:00
|
|
|
<AnalysisMode>All</AnalysisMode>
|
|
|
|
<Version>0.1.4</Version>
|
2022-05-25 18:20:53 +02:00
|
|
|
<PackAsTool>true</PackAsTool>
|
2023-05-26 16:31:59 +02:00
|
|
|
<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>
|
2023-05-22 16:54:45 +02:00
|
|
|
<PackageReference Include="Spectre.Console" Version="0.47.0" />
|
2023-05-22 16:57:46 +02:00
|
|
|
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
|
2022-03-09 22:42:40 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-26 16:31:59 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="../README.md" Pack="true" PackagePath="/"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-03-09 22:42:40 +01:00
|
|
|
</Project>
|