-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSteamFetch.csproj
More file actions
30 lines (23 loc) · 965 Bytes
/
SteamFetch.csproj
File metadata and controls
30 lines (23 loc) · 965 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
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>steam_fetch</ToolCommandName>
<PackageId>SteamFetch</PackageId>
<Version>0.0.4</Version>
<Authors>AFCMS</Authors>
<Description>CLI tool to download artworks of Steam games</Description>
<PackageTags>cli;tool;steam</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.55.0" />
<PackageReference Include="Spectre.Console.CLI" Version="0.55.0" />
<PackageReference Include="SteamKit2" Version="3.4.0" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>