aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/BindFileWithPath.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-08-20 14:22:07 -0700
committerRob Mensching <rob@firegiant.com>2017-08-20 14:25:49 -0700
commit3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c (patch)
treebbe907a4c5ebf7aa5e3f02141f6e3abd31cb7b5c /src/WixToolset.Extensibility/BindFileWithPath.cs
parent6dee3b45cb679786bd49a5db8fde9006d283b3e2 (diff)
downloadwix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.gz
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.bz2
wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.zip
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Extensibility/BindFileWithPath.cs')
-rw-r--r--src/WixToolset.Extensibility/BindFileWithPath.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/BindFileWithPath.cs b/src/WixToolset.Extensibility/BindFileWithPath.cs
new file mode 100644
index 00000000..f07873fc
--- /dev/null
+++ b/src/WixToolset.Extensibility/BindFileWithPath.cs
@@ -0,0 +1,20 @@
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
4{
5 /// <summary>
6 /// Bind file with its path.
7 /// </summary>
8 public class BindFileWithPath
9 {
10 /// <summary>
11 /// Gets or sets the identifier of the file with this path.
12 /// </summary>
13 public string Id { get; set; }
14
15 /// <summary>
16 /// Gets or sets the file path.
17 /// </summary>
18 public string Path { get; set; }
19 }
20}