aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/SourceFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/SourceFile.cs')
-rw-r--r--src/WixToolset.Core/SourceFile.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/WixToolset.Core/SourceFile.cs b/src/WixToolset.Core/SourceFile.cs
new file mode 100644
index 00000000..3b1e386a
--- /dev/null
+++ b/src/WixToolset.Core/SourceFile.cs
@@ -0,0 +1,21 @@
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.Core
4{
5 using System.IO;
6
7 internal class SourceFile
8 {
9 public SourceFile(string sourcePath, string outputPath)
10 {
11 this.SourcePath = sourcePath;
12 this.OutputPath = outputPath;
13 }
14
15 public string OutputPath { get; set; }
16
17 public string SourcePath { get; set; }
18
19 public Stream Stream { get; set; }
20 }
21}