aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-03-26 13:31:04 -0400
committerRob Mensching <rob@firegiant.com>2020-03-26 10:50:21 -0700
commit271601dfe0990917ef6331fbddcfd1b400882eb2 (patch)
treec246d6c3a04d4b5c95e4f15bea71a65c5084beba /src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs
parentc1ebab9485256e5fbf4f47d20be8627fd03c68a1 (diff)
downloadwix-271601dfe0990917ef6331fbddcfd1b400882eb2.tar.gz
wix-271601dfe0990917ef6331fbddcfd1b400882eb2.tar.bz2
wix-271601dfe0990917ef6331fbddcfd1b400882eb2.zip
Add intermediate levels to track how IR has been lowered.
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/IntermediateLevels.cs9
1 files changed, 9 insertions, 0 deletions
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 @@
1namespace WixToolset.Data.WindowsInstaller
2{
3 public static class IntermediateLevels
4 {
5 // TODO: These are placeholder names until we (hopefully) come up with better ones.
6 public const string PartiallyBound = "msiPartiallyBound";
7 public const string FullyBound = "msiFullyBound";
8 }
9}