-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPulseFetch.csproj
More file actions
27 lines (22 loc) · 885 Bytes
/
PulseFetch.csproj
File metadata and controls
27 lines (22 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>Realtin (Coding Boson)</Authors>
<Company>BosonWare, Technologies</Company>
<!--Allow preview features-->
<LangVersion>preview</LangVersion>
<OutputPath>./bin/nupkg</OutputPath>
<PackAsTool>true</PackAsTool>
<ToolCommandName>pulsefetch</ToolCommandName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cocona" Version="2.2.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Figgle" Version="0.6.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.6" />
<PackageReference Include="Spectre.Console" Version="0.50.0" />
</ItemGroup>
</Project>