aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-27 00:29:27 -0700
committerRob Mensching <rob@firegiant.com>2018-07-27 00:29:27 -0700
commitd282f53f254d378800c5ee53f8ff6a3586d7abfa (patch)
tree5c9b4bbbb98e124d3b1c5344641e89a2f3be29d9 /src/WixToolset.Extensibility/Data
parenta39985db85c67a8f5229767bb9ba34aaa26edd65 (diff)
downloadwix-d282f53f254d378800c5ee53f8ff6a3586d7abfa.tar.gz
wix-d282f53f254d378800c5ee53f8ff6a3586d7abfa.tar.bz2
wix-d282f53f254d378800c5ee53f8ff6a3586d7abfa.zip
Allow file resolution extensions to send paths checked for file
Diffstat (limited to 'src/WixToolset.Extensibility/Data')
-rw-r--r--src/WixToolset.Extensibility/Data/ResolveFileResult.cs13
1 files changed, 13 insertions, 0 deletions
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 @@
1// 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.
2
3namespace WixToolset.Extensibility.Data
4{
5 using System.Collections.Generic;
6
7 public class ResolveFileResult
8 {
9 public string Path { get; set; }
10
11 public IEnumerable<string> CheckedPaths { get; set; }
12 }
13} \ No newline at end of file