// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
namespace Microsoft.DotNet.Cli.Installer.Windows;
/// <summary>
/// Defines MSI properties stored in the JSON manifest of a workload pack.
/// </summary>
internal class MsiManifest
{
/// <summary>
/// The number of bytes the MSI requires to be installed.
/// </summary>
public long InstallSize
{
get;
set;
}
/// <summary>
/// The product language of the MSI.
/// </summary>
public int Language
{
get;
set;
}
/// <summary>
/// The name of the MSI package.
/// </summary>
public string Payload
{
get;
set;
}
/// <summary>
/// The product code of the MSI.
/// </summary>
public string ProductCode
{
get;
set;
}
/// <summary>
/// The product version of the MSI.
/// </summary>
public Version ProductVersion
{
get;
set;
}
/// <summary>
/// The name of the dependency provider key used to track installation reference counts.
/// </summary>
public string ProviderKeyName
{
get;
set;
}
/// <summary>
/// Upgrade information associated with the MSI. The array may be null if an MSI
/// does not define an Upgrade table.
/// </summary>
public RelatedProduct[] RelatedProducts
{
get;
set;
}
/// <summary>
/// The upgrade code of the MSI.
/// </summary>
public string UpgradeCode
{
get;
set;
}
}
|