aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-03 12:28:49 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-03 14:24:34 +1000
commitd5d5e87acf7eadacd757083a4d0272a04962ae9b (patch)
tree550aad2409958b684fe0621bd82c60ebeb54ca8d /src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs
parenta04ddca42b2070124c63a61c661e2b96a5bddac2 (diff)
downloadwix-d5d5e87acf7eadacd757083a4d0272a04962ae9b.tar.gz
wix-d5d5e87acf7eadacd757083a4d0272a04962ae9b.tar.bz2
wix-d5d5e87acf7eadacd757083a4d0272a04962ae9b.zip
Delete WixToolset.Tools.Core project.
Diffstat (limited to 'src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs')
-rw-r--r--src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs
index c4a5cefe..a5f76618 100644
--- a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs
+++ b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs
@@ -3,7 +3,6 @@
3namespace WixToolset.BuildTasks 3namespace WixToolset.BuildTasks
4{ 4{
5 using System; 5 using System;
6 using System.Collections.Generic;
7 using System.Diagnostics.CodeAnalysis; 6 using System.Diagnostics.CodeAnalysis;
8 using System.Globalization; 7 using System.Globalization;
9 using System.IO; 8 using System.IO;
@@ -136,7 +135,7 @@ namespace WixToolset.BuildTasks
136 // Do not overwrite the ObjectPath metadata if it already was set. 135 // Do not overwrite the ObjectPath metadata if it already was set.
137 if (string.IsNullOrEmpty(this.CompileWithObjectPath[i].GetMetadata("ObjectPath"))) 136 if (string.IsNullOrEmpty(this.CompileWithObjectPath[i].GetMetadata("ObjectPath")))
138 { 137 {
139 SetObjectPath(this.CompileWithObjectPath[i]); 138 this.SetObjectPath(this.CompileWithObjectPath[i]);
140 } 139 }
141 } 140 }
142 141