diff options
author | Rob Mensching <rob@firegiant.com> | 2021-03-02 09:58:41 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-03-03 13:49:20 -0800 |
commit | 0cce08ec250a53f28c2b349b8d88d3d9ea7def9c (patch) | |
tree | db1f80ac24176621c40b7db77fd144d8a42b0605 | |
parent | 8233991b07f09e5a1fdd52c012f55ad40625e2d4 (diff) | |
download | wix-0cce08ec250a53f28c2b349b8d88d3d9ea7def9c.tar.gz wix-0cce08ec250a53f28c2b349b8d88d3d9ea7def9c.tar.bz2 wix-0cce08ec250a53f28c2b349b8d88d3d9ea7def9c.zip |
Use updated AccessModifier enum
-rw-r--r-- | src/wixext/UtilCompiler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wixext/UtilCompiler.cs b/src/wixext/UtilCompiler.cs index 2909fbb4..f1faf4a8 100644 --- a/src/wixext/UtilCompiler.cs +++ b/src/wixext/UtilCompiler.cs | |||
@@ -2404,7 +2404,7 @@ namespace WixToolset.Util | |||
2404 | 2404 | ||
2405 | if (null != messageFile) | 2405 | if (null != messageFile) |
2406 | { | 2406 | { |
2407 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Private, $"Config_{fileId}MessageFile")) | 2407 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Section, $"Config_{fileId}MessageFile")) |
2408 | { | 2408 | { |
2409 | File = $"[#{fileId}]", | 2409 | File = $"[#{fileId}]", |
2410 | ElementPath = "/*/*/*/*[\\[]@messageFileName[\\]]", | 2410 | ElementPath = "/*/*/*/*[\\[]@messageFileName[\\]]", |
@@ -2416,7 +2416,7 @@ namespace WixToolset.Util | |||
2416 | } | 2416 | } |
2417 | if (null != parameterFile) | 2417 | if (null != parameterFile) |
2418 | { | 2418 | { |
2419 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Private, $"Config_{fileId}ParameterFile")) | 2419 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Section, $"Config_{fileId}ParameterFile")) |
2420 | { | 2420 | { |
2421 | File = $"[#{fileId}]", | 2421 | File = $"[#{fileId}]", |
2422 | ElementPath = "/*/*/*/*[\\[]@parameterFileName[\\]]", | 2422 | ElementPath = "/*/*/*/*[\\[]@parameterFileName[\\]]", |
@@ -2428,7 +2428,7 @@ namespace WixToolset.Util | |||
2428 | } | 2428 | } |
2429 | if (null != resourceFile) | 2429 | if (null != resourceFile) |
2430 | { | 2430 | { |
2431 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Private, $"Config_{fileId}ResourceFile")) | 2431 | section.AddSymbol(new XmlFileSymbol(sourceLineNumbers, new Identifier(AccessModifier.Section, $"Config_{fileId}ResourceFile")) |
2432 | { | 2432 | { |
2433 | File = $"[#{fileId}]", | 2433 | File = $"[#{fileId}]", |
2434 | ElementPath = "/*/*/*/*[\\[]@resourceFileName[\\]]", | 2434 | ElementPath = "/*/*/*/*[\\[]@resourceFileName[\\]]", |