From d3d3649a68cb1fa589fdd987a6690dbd5d671f0d Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 17 Sep 2017 15:35:20 -0700 Subject: Initial code commit --- src/candle/CompileFile.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/candle/CompileFile.cs (limited to 'src/candle/CompileFile.cs') diff --git a/src/candle/CompileFile.cs b/src/candle/CompileFile.cs new file mode 100644 index 00000000..682acc21 --- /dev/null +++ b/src/candle/CompileFile.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.Tools +{ + /// + /// Source code file to be compiled. + /// + public class CompileFile + { + /// + /// Path to the source code file. + /// + public string SourcePath { get; set; } + + /// + /// Path to compile the output to. + /// + public string OutputPath { get; set; } + } +} -- cgit v1.2.3-55-g6feb