aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-08-01 03:02:34 -0700
committerRob Mensching <rob@firegiant.com>2018-08-01 03:02:34 -0700
commit52005c7e6917f9866dd0b0de6993def16a72ed4b (patch)
tree59e32ad17a3ca5915c4cddbeaa83b58a73f0c3a5 /src/WixToolset.Core/Compiler.cs
parent79473d778b6cc4c8eec93b92e3b244aed904dac1 (diff)
downloadwix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.gz
wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.bz2
wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.zip
Major reduction in public surface area of WixToolset.Core
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 06f477c1..437c1481 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -22,7 +22,7 @@ namespace WixToolset.Core
22 /// <summary> 22 /// <summary>
23 /// Compiler of the WiX toolset. 23 /// Compiler of the WiX toolset.
24 /// </summary> 24 /// </summary>
25 public sealed class Compiler 25 internal class Compiler
26 { 26 {
27 public const string UpgradeDetectedProperty = "WIX_UPGRADE_DETECTED"; 27 public const string UpgradeDetectedProperty = "WIX_UPGRADE_DETECTED";
28 public const string UpgradePreventedCondition = "NOT WIX_UPGRADE_DETECTED"; 28 public const string UpgradePreventedCondition = "NOT WIX_UPGRADE_DETECTED";
@@ -69,7 +69,7 @@ namespace WixToolset.Core
69 Icon, 69 Icon,
70 } 70 }
71 71
72 public Compiler(IServiceProvider serviceProvider) 72 internal Compiler(IServiceProvider serviceProvider)
73 { 73 {
74 this.ServiceProvider = serviceProvider; 74 this.ServiceProvider = serviceProvider;
75 75