From 271601dfe0990917ef6331fbddcfd1b400882eb2 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Thu, 26 Mar 2020 13:31:04 -0400 Subject: Add intermediate levels to track how IR has been lowered. --- src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs (limited to 'src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs') diff --git a/src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs b/src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs new file mode 100644 index 00000000..1eb0ef2d --- /dev/null +++ b/src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs @@ -0,0 +1,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"; + } +} -- cgit v1.2.3-55-g6feb