From d282f53f254d378800c5ee53f8ff6a3586d7abfa Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 27 Jul 2018 00:29:27 -0700 Subject: Allow file resolution extensions to send paths checked for file --- src/WixToolset.Extensibility/Data/ResolveFileResult.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/ResolveFileResult.cs (limited to 'src/WixToolset.Extensibility/Data') diff --git a/src/WixToolset.Extensibility/Data/ResolveFileResult.cs b/src/WixToolset.Extensibility/Data/ResolveFileResult.cs new file mode 100644 index 00000000..5ac7c426 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/ResolveFileResult.cs @@ -0,0 +1,13 @@ +// 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 +{ + using System.Collections.Generic; + + public class ResolveFileResult + { + public string Path { get; set; } + + public IEnumerable CheckedPaths { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb