Narod.SteamGameFinder 1.0.1

dotnet add package Narod.SteamGameFinder --version 1.0.1
NuGet\Install-Package Narod.SteamGameFinder -Version 1.0.1
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="Narod.SteamGameFinder" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Narod.SteamGameFinder --version 1.0.1
#r "nuget: Narod.SteamGameFinder, 1.0.1"
#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 Narod.SteamGameFinder as a Cake Addin
#addin nuget:?package=Narod.SteamGameFinder&version=1.0.1

// Install Narod.SteamGameFinder as a Cake Tool
#tool nuget:?package=Narod.SteamGameFinder&version=1.0.1

Narod's Steam Game Finder

A C# library compatible back to Windows 7, which finds Steam and Games.

Summary

This library allows you to check if Steam is installed, the Steam install path, the Steam library paths, and locate game install directories.

Usage

Code examples in C#

  • Download the latest release from the releases tab, or find on Nuget (Narod.SteamGameFinder)
    • (Only required if downloaded from releases) Add a reference of the library in your project. (Project → Add Reference... → Browse → Browse...)
  • Import in to your program
using Narod.SteamGameFinder;
  • Create instance of SteamGameLocator
SteamGameLocator steamGameLocator = new SteamGameLocator();
  • Check if Steam is installed
bool isSteamInstalled = steamGameLocator.getIsSteamInstalled();
  • Get Steam Install path
string steamInstallDir = steamGameLocator.getSteamInstallLocation();
  • Get Steam Library folders
List<string> paths = steamGameLocator.getSteamLibraryLocations();
  • Get Steam Game Install Path
string steamGameInstallDir = steamGameLocator.getGameInfoByFolder("SteamGameFolderName").steamGameLocation

Limitations

You can only search for Steam games by their installed folder name. For example, the game 'Cities: Skylines' is installed to 'Cities_Skylines', for example:

string citiesSkylinesInstallDir = steamGameLocator.getGameInfoByFolder("Cities_Skylines").steamGameLocation

I will look to improve this to allow human readable game names, or Steam app ID's in the future.

Further Help

I'll release a video at some point detailing how to use this. You can find the 'TestApp' solution in this repository which has an example of how to use the library.

Helping

If you find any bugs, please report it as an issue.

To-do:

  • Implement Steam App ID as a method of finding a game
  • Implement human readable game name as a method of finding a game
  • Fix issues/bugs
Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 3.5

    • No dependencies.

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
1.0.1 212 11/6/2022
1.0.0 163 11/6/2022

Fix 2 critical bugs caused by inadequate checks in stored variables.