From fe77cae987ea2bfc43d2ffec660bf773e922709d Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 17 Mar 2020 21:28:12 -0400 Subject: Partial WixPdbs stop the backend before binding. --- src/WixToolset.BuildTasks/DoIt.cs | 6 ++- src/WixToolset.BuildTasks/wix.targets | 13 ++++- .../WixToolsetTest.BuildTasks/MsbuildFixture.cs | 60 ++++++++++++++++++++++ .../WixBuildTaskFixture.cs | 8 +-- 4 files changed, 81 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/WixToolset.BuildTasks/DoIt.cs b/src/WixToolset.BuildTasks/DoIt.cs index 5faf163c..3aa9f5a3 100644 --- a/src/WixToolset.BuildTasks/DoIt.cs +++ b/src/WixToolset.BuildTasks/DoIt.cs @@ -47,7 +47,9 @@ namespace WixToolset.BuildTasks public string OutputType { get; set; } - public string PdbOutputFile { get; set; } + public ITaskItem PdbFile { get; set; } + + public string PdbType { get; set; } public bool Pedantic { get; set; } @@ -162,6 +164,8 @@ namespace WixToolset.BuildTasks commandLineBuilder.AppendSwitchIfNotNull("-platform ", this.InstallerPlatform); commandLineBuilder.AppendSwitchIfNotNull("-out ", this.OutputFile); commandLineBuilder.AppendSwitchIfNotNull("-outputType ", this.OutputType); + commandLineBuilder.AppendSwitchIfNotNull("-pdb ", this.PdbFile); + commandLineBuilder.AppendSwitchIfNotNull("-pdbType ", this.PdbType); commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo); commandLineBuilder.AppendArrayIfNotNull("-culture ", this.Cultures); commandLineBuilder.AppendArrayIfNotNull("-d ", this.DefineConstants); diff --git a/src/WixToolset.BuildTasks/wix.targets b/src/WixToolset.BuildTasks/wix.targets index a3787309..4f8b9999 100644 --- a/src/WixToolset.BuildTasks/wix.targets +++ b/src/WixToolset.BuildTasks/wix.targets @@ -54,8 +54,11 @@ $(MSBuildProjectName) $(OutputName) - + Package + + + full