Describes a single packaging run.
public sealed record PackagingRequest(string ProjectId, PackagingPlatform Platform, IReadOnlyCollection<string> Formats, string Configuration, string OutputDirectory, IReadOnlyDictionary<string, string>? Properties = null) : IEquatable<PackagingRequest>
kind:method, kind:property, kind:ctor. Press Esc to clear.PackagingRequest(String, PackagingPlatform, IReadOnlyCollection<String>, String, String, IReadOnlyDictionary<String, String>?)Describes a single packaging run.ConfigurationBuild configuration or channel (e.g. Release).FormatsRequested package formats (e.g. "msix", "msi").OutputDirectoryAbsolute or project-relative path for produced artifacts.PlatformTarget platform (Windows/macOS/Linux).ProjectIdIdentifier of the project to package.PropertiesOptional additional key/value pairs understood by providers.