diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-07-27 00:29:27 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-07-27 00:29:27 -0700 |
| commit | d282f53f254d378800c5ee53f8ff6a3586d7abfa (patch) | |
| tree | 5c9b4bbbb98e124d3b1c5344641e89a2f3be29d9 /src/WixToolset.Extensibility/Data | |
| parent | a39985db85c67a8f5229767bb9ba34aaa26edd65 (diff) | |
| download | wix-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.cs | 13 |
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 | |||
| 3 | namespace 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 | ||
