WinGetSpy 0.5.2
dotnet add package WinGetSpy --version 0.5.2
NuGet\Install-Package WinGetSpy -Version 0.5.2
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="WinGetSpy" Version="0.5.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinGetSpy --version 0.5.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: WinGetSpy, 0.5.2"
#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 WinGetSpy as a Cake Addin #addin nuget:?package=WinGetSpy&version=0.5.2 // Install WinGetSpy as a Cake Tool #tool nuget:?package=WinGetSpy&version=0.5.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
WinGetSpy
A library to help you programmatically explore WinGet package feeds.
Minimum Requirements
- Requires a platform with .NET Standard 2.0 or later.
- Supported .NET Version: .NET Core 2.0+, .NET 5+, .NET Framework 4.6.1+, Mono 5.4+, UWP 10.0.16299+, Unity 2018.1+
Introduction
WinGetSpy is a library that helps you programmatically explore WinGet package feeds. WinGetSpy first caches the package feed data and then provides a simple API to search for packages and installer URLs.
WinGetSpy provides the following features:
- Cache package feed data: WinGetSpy caches the package feed data from the official WinGet GitHub repository.
- Search for a package: WinGetSpy provides a simple API to search for packages and installer URLs.
- Get package information: WinGetSpy provides a simple API to get package information.
- Get installer URLs and type: WinGetSpy provides a simple API to get the installer URLs and type.
- Get package version: WinGetSpy provides a simple API to get the package version.
- Browse well-known packages: You can easily get information about well-known packages by referring to the namespaces under the WinGetSpy.KnownPackages namespace.
How to use
Cache package data and search for a package
using WinGetSpy;
...
var searchKeyword = "Microsoft.DotNet.SDK.8";
var matchFirstItemOnly = true;
var list = await WinGetCatalogManager.LoadCatalogAsync();
var searchResult = list.SearchWinGetPackage(searchKeyword, matchFirstItemOnly);
...
Get best match installer URL
using WinGetSpy;
...
var searchKeyword = "Microsoft.DotNet.SDK.8";
var matchFirstItemOnly = true;
var list = await WinGetCatalogManager.LoadCatalogAsync();
var searchResult = list.SearchWinGetPackage(searchKeyword, matchFirstItemOnly).First();
var downloadUri = searchResult.GetBestInstallerUrlFor();
Console.WriteLine(downloadUri);
...
Browse well-known packages
using WinGetSpy;
using WinGetSpy.KnownPackages.DevTools.Python;
...
var result = list.GetJetBrainsPyCharmProfessionalEAP();
Console.WriteLine(result.GetBestInstallerUrlFor());
...
License
This library follows Apache-2.0 license. See LICENSE file for more information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- System.IO.Compression.ZipFile (>= 4.3.0)
- Yaml2JsonNode (>= 2.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.