Table of Contents

Class DotNetPackageSearchPackage

Namespace
DotNetDo
Assembly
DotNetDo.Core.dll

A package returned by dotnet package search.

public sealed record DotNetPackageSearchPackage : IEquatable<DotNetPackageSearchPackage>

Properties

Id

The package ID.

[JsonPropertyName("id")]
public string? Id { get; init; }

Property Value

string?

LatestVersion

The latest eligible version reported by the source.

[JsonPropertyName("latestVersion")]
public string? LatestVersion { get; init; }

Property Value

string?

Version

The package version returned by an exact-match search.

[JsonPropertyName("version")]
public string? Version { get; init; }

Property Value

string?