@joebigelow / wix / commits / b9102429

Clean up variable resolution during Resolve.

Bob Arnson committed Jan 29, 2020 at 15:01 UTC b9102429acb36abc7a22b731701470d17a08bc5c
2 files changed -12
src/WixToolset.Extensibility/Data/IResolveContext.cs
-2
@@ -24,7 +24,5 @@ namespace WixToolset.Extensibility.Data
24 Intermediate IntermediateRepresentation { get; set; }
25
26 IEnumerable<Localization> Localizations { get; set; }
27 -
28 - IVariableResolver VariableResolver { get; set; }
27 }
28 }
src/WixToolset.Extensibility/Services/IVariableResolver.cs
-10
@@ -6,16 +6,6 @@ namespace WixToolset.Extensibility.Services
6
7 public interface IVariableResolver
8 {
9 - /// <summary>
10 - /// Gets the codepage.
11 - /// </summary>
12 - int Codepage { get; }
13 -
14 - /// <summary>
15 - /// Gets the count of variables added to the resolver.
16 - /// </summary>
17 - int VariableCount { get; }
18 -
9 void AddLocalization(Localization localization);
10
11 /// <summary>