From 3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 20 Aug 2017 14:22:07 -0700 Subject: Move to .NET Core 2.0 --- src/WixToolset.Extensibility/BindFileWithPath.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/WixToolset.Extensibility/BindFileWithPath.cs (limited to 'src/WixToolset.Extensibility/BindFileWithPath.cs') 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 @@ +// 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 +{ + /// + /// Bind file with its path. + /// + public class BindFileWithPath + { + /// + /// Gets or sets the identifier of the file with this path. + /// + public string Id { get; set; } + + /// + /// Gets or sets the file path. + /// + public string Path { get; set; } + } +} -- cgit v1.2.3-55-g6feb