aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/ResolveFileResult.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-03-01 11:12:52 -0800
committerRob Mensching <rob@robmensching.com>2019-03-01 11:15:40 -0800
commit5392cf57c09bddde7157e5b26c5c2a013f819ead (patch)
tree96063a49293bd9eea122218e770b52d3c20812f2 /src/WixToolset.Core/ResolveFileResult.cs
parenta4f5a5a042c00254607fbecdf132a2e2a91a1bdd (diff)
downloadwix-5392cf57c09bddde7157e5b26c5c2a013f819ead.tar.gz
wix-5392cf57c09bddde7157e5b26c5c2a013f819ead.tar.bz2
wix-5392cf57c09bddde7157e5b26c5c2a013f819ead.zip
Integrate interface-only WixToolset.Extensibility change
Diffstat (limited to 'src/WixToolset.Core/ResolveFileResult.cs')
-rw-r--r--src/WixToolset.Core/ResolveFileResult.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ResolveFileResult.cs b/src/WixToolset.Core/ResolveFileResult.cs
new file mode 100644
index 00000000..e36c474a
--- /dev/null
+++ b/src/WixToolset.Core/ResolveFileResult.cs
@@ -0,0 +1,14 @@
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.Core
4{
5 using System.Collections.Generic;
6 using WixToolset.Extensibility.Data;
7
8 public class ResolveFileResult : IResolveFileResult
9 {
10 public string Path { get; set; }
11
12 public IEnumerable<string> CheckedPaths { get; set; }
13 }
14}