blob: 1eb0ef2d569a2f74864eb332434465b336c8a397 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace WixToolset.Data.WindowsInstaller
{
public static class IntermediateLevels
{
// TODO: These are placeholder names until we (hopefully) come up with better ones.
public const string PartiallyBound = "msiPartiallyBound";
public const string FullyBound = "msiFullyBound";
}
}
|