From db7cf299e0110eefbc9fdc2cd6e873177b443ee7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 7 Oct 2019 09:40:42 -0700 Subject: Support Bundle building --- .../Data/IResolvedDirectory.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/IResolvedDirectory.cs (limited to 'src/WixToolset.Extensibility/Data/IResolvedDirectory.cs') diff --git a/src/WixToolset.Extensibility/Data/IResolvedDirectory.cs b/src/WixToolset.Extensibility/Data/IResolvedDirectory.cs new file mode 100644 index 00000000..59de6e78 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/IResolvedDirectory.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.Extensibility.Data +{ + /// + /// Used for resolved directory information. + /// + public interface IResolvedDirectory + { + /// The directory parent. + string DirectoryParent { get; set; } + + /// The name of this directory. + string Name { get; set; } + + /// The path of this directory. + string Path { get; set; } + } +} -- cgit v1.2.3-55-g6feb