aboutsummaryrefslogtreecommitdiff
path: root/src/candle/CompileFile.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-09-17 15:35:20 -0700
committerRob Mensching <rob@firegiant.com>2017-09-17 16:00:11 -0700
commitd3d3649a68cb1fa589fdd987a6690dbd5d671f0d (patch)
tree44fe37ee352b7e3a355cc1e08b1d7d5988c14cc0 /src/candle/CompileFile.cs
parenta62610d23d6feb98be3b1e529a4e81b19d77d9d8 (diff)
downloadwix-d3d3649a68cb1fa589fdd987a6690dbd5d671f0d.tar.gz
wix-d3d3649a68cb1fa589fdd987a6690dbd5d671f0d.tar.bz2
wix-d3d3649a68cb1fa589fdd987a6690dbd5d671f0d.zip
Initial code commit
Diffstat (limited to 'src/candle/CompileFile.cs')
-rw-r--r--src/candle/CompileFile.cs20
1 files changed, 20 insertions, 0 deletions
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 @@
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}