SteamGamesNet 0.0.6

dotnet add package SteamGamesNet --version 0.0.6
NuGet\Install-Package SteamGamesNet -Version 0.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SteamGamesNet" Version="0.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SteamGamesNet --version 0.0.6
#r "nuget: SteamGamesNet, 0.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SteamGamesNet as a Cake Addin
#addin nuget:?package=SteamGamesNet&version=0.0.6

// Install SteamGamesNet as a Cake Tool
#tool nuget:?package=SteamGamesNet&version=0.0.6

SteamGamesNet

A wrapper, to get all (possible) informations about apps/games using the ID, which will be supplied as RawSteamGame-object for easy access to informations.

Technologies used

SteamGamesNet was created using .NET Core 8.0 and relies on:

Features ⭐

Nuget

SteamGamesNet is available as a Nuget package, get it at: SteamGamesNet

Usage

Example 🔧

For examples on how to use the wrapper, open the demo-project.

Available Methods

  • GetAppListAsync

    • Retrieves all Steam app IDs and names.
    • AppListContainer appListContainer = await SteamClient.GetAppListAsync();
      
  • SteamFilesWithSignaturesAsync

    • Retrieves the content of the steam.signatures file as a list of SteamSignatureValue containing HashAlgorithm, HashValue, FilePath, CrcValue, and DIGEST.
    • IEnumerable<SteamSignatureValue> signatureValues = await SteamClient.SteamFilesWithSignaturesAsync();
      
  • GetAllDownloadingGames

    • Retrieves the IDs of games that are currently downloading or updating.
    • int[] SteamIdList = SteamClient.GetAllDownloadingGames()
      
  • GetAllDownloadingGamesWithDataAsync

    • Retrieves all games that are currently downloading or updating as RawSteamGame.
    • IEnumerable<RawSteamGame> ActiveDownloadingSteamappsWithInfo = await SteamClient.GetAllDownloadingGamesWithDataAsync();
      
  • GetAppDataAsync

    • Retrieves data of a specific game using its Steam App ID, returning a RawSteamGame if it exists.
    • RawSteamGame ExampleApp = await SteamClient.GetAppDataAsync(787790);
      
  • GetAllSteamGameIds

    • Retrieves all Steam app IDs that are currently on the device.
    • int[] SteamIdList = SteamClient.GetAllSteamGameIds();
      

License 📜

SteamGamesNet is licensed under the GNU General Public License v3.0.

You can read the full license details of the GNU General Public License v3.0 here.

SteamGamesNet is licensed under the GNU General Public License v3.0. This project is not endorsed by Steam/Valve and does not reflect the views or opinions of Steam/Valve or anyone officially involved in managing it. Steam is a trademark and/or registered trademark of Valve.

Disclaimer ⚠️

Read the full disclaimer in the DISCLAIMER.md file!

Please read the full disclaimer in the DISCLAIMER.md file before using this project. The author (liebki (me)) of the project and the project itself are not endorsed by Steam/Valve and do not reflect the views or opinions of Steam/Valve or anyone officially involved in managing it.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.6 37 6/27/2024
0.0.5 156 12/8/2023
0.0.4 132 6/19/2023
0.0.3 225 3/4/2023
0.0.2 271 12/21/2022
0.0.1 266 12/20/2022

Added MacOS support for GetAllSteamGameIds() and GetAllDownloadingGames*(), upgraded to .NET 8, renamed background stuff also updated the README.