aboutsummaryrefslogtreecommitdiff
path: root/src/candle/CompileFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/candle/CompileFile.cs')
-rw-r--r--src/candle/CompileFile.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/candle/CompileFile.cs b/src/candle/CompileFile.cs
deleted file mode 100644
index 682acc21..00000000
--- a/src/candle/CompileFile.cs
+++ /dev/null
@@ -1,20 +0,0 @@
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.Tools
4{
5 /// <summary>
6 /// Source code file to be compiled.
7 /// </summary>
8 public class CompileFile
9 {
10 /// <summary>
11 /// Path to the source code file.
12 /// </summary>
13 public string SourcePath { get; set; }
14
15 /// <summary>
16 /// Path to compile the output to.
17 /// </summary>
18 public string OutputPath { get; set; }
19 }
20}