From 54907157d9b961784a50abd3feaf64764b8b1315 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 28 Jul 2022 23:29:33 -0700 Subject: Very minor code cleanup --- src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | 3 --- src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs | 2 +- src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs index db4fbf0e..67b869e1 100644 --- a/src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs +++ b/src/wix/WixToolset.Core.Burn/Bind/BindBundleCommand.cs @@ -41,7 +41,6 @@ namespace WixToolset.Core.Burn this.Output = context.IntermediateRepresentation; this.OutputPath = context.OutputPath; this.OutputPdbPath = context.PdbPath; - //this.VariableResolver = context.VariableResolver; this.BackendExtensions = backedExtensions; } @@ -74,8 +73,6 @@ namespace WixToolset.Core.Burn private string IntermediateFolder { get; } - private IVariableResolver VariableResolver { get; } - public IReadOnlyCollection FileTransfers { get; private set; } public IReadOnlyCollection TrackedFiles { get; private set; } diff --git a/src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs b/src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs index 7fe3c4ec..4aed18da 100644 --- a/src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs +++ b/src/wix/WixToolset.Core.Burn/Bundles/CreateBundleExeCommand.cs @@ -192,7 +192,7 @@ namespace WixToolset.Core.Burn.Bundles string dpiAwarenessValue = null; string gdiScalingValue = null; - switch(bootstrapperApplicationSymbol.DpiAwareness) + switch (bootstrapperApplicationSymbol.DpiAwareness) { case WixBootstrapperApplicationDpiAwarenessType.GdiScaled: gdiScalingValue = "true"; diff --git a/src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs b/src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs index 45dc5160..6040e2c4 100644 --- a/src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs +++ b/src/wix/test/WixToolsetTest.CoreIntegration/BundleManifestFixture.cs @@ -21,7 +21,7 @@ namespace WixToolsetTest.CoreIntegration { var baseFolder = fs.GetFolder(); var intermediateFolder = Path.Combine(baseFolder, "obj"); - var bundlePath = Path.Combine(baseFolder, @"bin\test.exe"); + var bundlePath = Path.Combine(baseFolder, "bin", "test.exe"); var baFolderPath = Path.Combine(baseFolder, "ba"); var extractFolderPath = Path.Combine(baseFolder, "extract"); -- cgit v1.2.3-55-g6feb