diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 20:45:40 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 21:34:24 +1000 |
| commit | 177784c9a6d93eeb3c195e6d62b97eb4c1dde32b (patch) | |
| tree | 1ad322fa26816a32279f5433ec500cbdf5934f86 /src/WixToolset.Core/LocalizationParser.cs | |
| parent | 302b501f9ed2ae840ce598b30792d0fc1b538572 (diff) | |
| download | wix-177784c9a6d93eeb3c195e6d62b97eb4c1dde32b.tar.gz wix-177784c9a6d93eeb3c195e6d62b97eb4c1dde32b.tar.bz2 wix-177784c9a6d93eeb3c195e6d62b97eb4c1dde32b.zip | |
Use IWixToolsetServiceProvider and IWixToolsetCoreServiceProvider to expose the more convenient methods from WixToolsetServiceProvider without requiring casting or extension methods.
Diffstat (limited to 'src/WixToolset.Core/LocalizationParser.cs')
| -rw-r--r-- | src/WixToolset.Core/LocalizationParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/LocalizationParser.cs b/src/WixToolset.Core/LocalizationParser.cs index a3272fc8..3b66b707 100644 --- a/src/WixToolset.Core/LocalizationParser.cs +++ b/src/WixToolset.Core/LocalizationParser.cs | |||
| @@ -15,7 +15,7 @@ namespace WixToolset.Core | |||
| 15 | public static readonly XNamespace WxlNamespace = "http://wixtoolset.org/schemas/v4/wxl"; | 15 | public static readonly XNamespace WxlNamespace = "http://wixtoolset.org/schemas/v4/wxl"; |
| 16 | private const string XmlElementName = "WixLocalization"; | 16 | private const string XmlElementName = "WixLocalization"; |
| 17 | 17 | ||
| 18 | internal LocalizationParser(IServiceProvider serviceProvider) | 18 | internal LocalizationParser(IWixToolsetServiceProvider serviceProvider) |
| 19 | { | 19 | { |
| 20 | this.Messaging = serviceProvider.GetService<IMessaging>(); | 20 | this.Messaging = serviceProvider.GetService<IMessaging>(); |
| 21 | } | 21 | } |
