From 9240b527b9b204764830b578ef41a5b880a0bda4 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 17 Mar 2020 21:10:57 -0400 Subject: Partial WixPdbs stop the backend before binding. --- src/WixToolset.Data/PdbType.cs | 19 +++++++++++++++++++ src/WixToolset.Data/WixOutput.cs | 6 +++++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 src/WixToolset.Data/PdbType.cs diff --git a/src/WixToolset.Data/PdbType.cs b/src/WixToolset.Data/PdbType.cs new file mode 100644 index 00000000..55d7f24e --- /dev/null +++ b/src/WixToolset.Data/PdbType.cs @@ -0,0 +1,19 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Data +{ + /// + /// Platforms supported by compiler. + /// + public enum PdbType + { + /// A .wixpdb file matching the generated output (default). + Full, + + /// No .wixpdb file. + None, + + /// A .wixpdb file with partial, pre-bind data. No other output will be generated. + Partial, + } +} diff --git a/src/WixToolset.Data/WixOutput.cs b/src/WixToolset.Data/WixOutput.cs index bb7a9a70..1810862a 100644 --- a/src/WixToolset.Data/WixOutput.cs +++ b/src/WixToolset.Data/WixOutput.cs @@ -46,7 +46,11 @@ namespace WixToolset.Data /// Newly created WixOutput. public static WixOutput Create(string path) { - var uri = new Uri(Path.GetFullPath(path)); + var fullPath = Path.GetFullPath(path); + + Directory.CreateDirectory(Path.GetDirectoryName(fullPath)); + + var uri = new Uri(fullPath); var stream = File.Create(path); -- cgit v1.2.3-55-g6feb