Files
nrwl--nx/packages/dotnet/analyzer/Models/PackageReference.cs
T
2026-07-13 12:38:36 +08:00

18 lines
370 B
C#

namespace MsbuildAnalyzer.Models;
/// <summary>
/// Represents a NuGet package reference.
/// </summary>
public record PackageReference
{
/// <summary>
/// The package name.
/// </summary>
public string Include { get; init; } = string.Empty;
/// <summary>
/// The package version.
/// </summary>
public string? Version { get; init; }
}