@joebigelow / wix / commits / 54907157

Very minor code cleanup

Rob Mensching committed Jul 28, 2022 at 23:29 UTC 54907157d9b961784a50abd3feaf64764b8b1315
3 files changed +2 -5
src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
-3
@@ -41,7 +41,6 @@ namespace WixToolset.Core.Burn
41 this.Output = context.IntermediateRepresentation;
42 this.OutputPath = context.OutputPath;
43 this.OutputPdbPath = context.PdbPath;
44 - //this.VariableResolver = context.VariableResolver;
44
45 this.BackendExtensions = backedExtensions;
46 }
@@ -74,8 +73,6 @@ namespace WixToolset.Core.Burn
73
74 private string IntermediateFolder { get; }
75
77 - private IVariableResolver VariableResolver { get; }
78 -
76 public IReadOnlyCollection<IFileTransfer> FileTransfers { get; private set; }
77
78 public IReadOnlyCollection<ITrackedFile> TrackedFiles { get; private set; }
src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs
+1 -1
@@ -192,7 +192,7 @@ namespace WixToolset.Core.Burn.Bundles
192 string dpiAwarenessValue = null;
193 string gdiScalingValue = null;
194
195 - switch(bootstrapperApplicationSymbol.DpiAwareness)
195 + switch (bootstrapperApplicationSymbol.DpiAwareness)
196 {
197 case WixBootstrapperApplicationDpiAwarenessType.GdiScaled:
198 gdiScalingValue = "true";
src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs
+1 -1
@@ -21,7 +21,7 @@ namespace WixToolsetTest.CoreIntegration
21 {
22 var baseFolder = fs.GetFolder();
23 var intermediateFolder = Path.Combine(baseFolder, "obj");
24 - var bundlePath = Path.Combine(baseFolder, @"bin\test.exe");
24 + var bundlePath = Path.Combine(baseFolder, "bin", "test.exe");
25 var baFolderPath = Path.Combine(baseFolder, "ba");
26 var extractFolderPath = Path.Combine(baseFolder, "extract");
27