aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/LayoutCreator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/LayoutCreator.cs')
-rw-r--r--src/WixToolset.Core/LayoutCreator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/LayoutCreator.cs b/src/WixToolset.Core/LayoutCreator.cs
index 16fdd70f..0da18ab5 100644
--- a/src/WixToolset.Core/LayoutCreator.cs
+++ b/src/WixToolset.Core/LayoutCreator.cs
@@ -85,7 +85,7 @@ namespace WixToolset.Core
85 /// Writes the paths to the content files to a text file. 85 /// Writes the paths to the content files to a text file.
86 /// </summary> 86 /// </summary>
87 /// <param name="path">Path to write file.</param> 87 /// <param name="path">Path to write file.</param>
88 /// <param name="contentFilePaths">Collection of paths to content files that will be written to file.</param> 88 /// <param name="trackedFiles">Collection of paths to content files that will be written to file.</param>
89 private void CreateContentsFile(string path, IEnumerable<ITrackedFile> trackedFiles) 89 private void CreateContentsFile(string path, IEnumerable<ITrackedFile> trackedFiles)
90 { 90 {
91 var uniqueInputFilePaths = new SortedSet<string>(trackedFiles.Where(t => t.Type == TrackedFileType.Input).Select(t => t.Path), StringComparer.OrdinalIgnoreCase); 91 var uniqueInputFilePaths = new SortedSet<string>(trackedFiles.Where(t => t.Type == TrackedFileType.Input).Select(t => t.Path), StringComparer.OrdinalIgnoreCase);
@@ -111,7 +111,7 @@ namespace WixToolset.Core
111 /// Writes the paths to the output files to a text file. 111 /// Writes the paths to the output files to a text file.
112 /// </summary> 112 /// </summary>
113 /// <param name="path">Path to write file.</param> 113 /// <param name="path">Path to write file.</param>
114 /// <param name="fileTransfers">Collection of files that were transferred to the output directory.</param> 114 /// <param name="trackedFiles">Collection of files that were transferred to the output directory.</param>
115 private void CreateOutputsFile(string path, IEnumerable<ITrackedFile> trackedFiles) 115 private void CreateOutputsFile(string path, IEnumerable<ITrackedFile> trackedFiles)
116 { 116 {
117 var uniqueOutputPaths = new SortedSet<string>(trackedFiles.Where(t => t.Clean).Select(t => t.Path), StringComparer.OrdinalIgnoreCase); 117 var uniqueOutputPaths = new SortedSet<string>(trackedFiles.Where(t => t.Clean).Select(t => t.Path), StringComparer.OrdinalIgnoreCase);
@@ -142,7 +142,7 @@ namespace WixToolset.Core
142 /// Writes the paths to the built output files to a text file. 142 /// Writes the paths to the built output files to a text file.
143 /// </summary> 143 /// </summary>
144 /// <param name="path">Path to write file.</param> 144 /// <param name="path">Path to write file.</param>
145 /// <param name="fileTransfers">Collection of files that were transferred to the output directory.</param> 145 /// <param name="trackedFiles">Collection of files that were transferred to the output directory.</param>
146 private void CreateBuiltOutputsFile(string path, IEnumerable<ITrackedFile> trackedFiles) 146 private void CreateBuiltOutputsFile(string path, IEnumerable<ITrackedFile> trackedFiles)
147 { 147 {
148 var uniqueBuiltPaths = new SortedSet<string>(trackedFiles.Where(t => t.Type == TrackedFileType.Final).Select(t => t.Path), StringComparer.OrdinalIgnoreCase); 148 var uniqueBuiltPaths = new SortedSet<string>(trackedFiles.Where(t => t.Type == TrackedFileType.Final).Select(t => t.Path), StringComparer.OrdinalIgnoreCase);