diff options
Diffstat (limited to 'src/WixToolset.Core/SourceFile.cs')
-rw-r--r-- | src/WixToolset.Core/SourceFile.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/WixToolset.Core/SourceFile.cs b/src/WixToolset.Core/SourceFile.cs index f1064513..d7ea7a50 100644 --- a/src/WixToolset.Core/SourceFile.cs +++ b/src/WixToolset.Core/SourceFile.cs | |||
@@ -2,8 +2,6 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
4 | { | 4 | { |
5 | using System.IO; | ||
6 | |||
7 | internal class SourceFile | 5 | internal class SourceFile |
8 | { | 6 | { |
9 | public SourceFile(string sourcePath, string outputPath) | 7 | public SourceFile(string sourcePath, string outputPath) |
@@ -12,8 +10,8 @@ namespace WixToolset.Core | |||
12 | this.OutputPath = outputPath; | 10 | this.OutputPath = outputPath; |
13 | } | 11 | } |
14 | 12 | ||
15 | public string OutputPath { get; set; } | 13 | public string OutputPath { get; } |
16 | 14 | ||
17 | public string SourcePath { get; set; } | 15 | public string SourcePath { get; } |
18 | } | 16 | } |
19 | } | 17 | } |