@joebigelow / wix-1 / commits / 551f2a43

Rename DoIt to WixBuild.

Sean Hall committed May 28, 2020 at 21:21 UTC 551f2a43de0465202e3a3aca24379481cc35733e
4 files changed +6 -6
src/WixToolset.BuildTasks/WixBuild.cs renamed
+1 -1
@@ -16,7 +16,7 @@ namespace WixToolset.BuildTasks
16 /// <summary>
17 /// An MSBuild task to run the WiX compiler.
18 /// </summary>
19 - public sealed class DoIt : ToolsetTask
19 + public sealed class WixBuild : ToolsetTask
20 {
21 public string[] Cultures { get; set; }
22
src/WixToolset.BuildTasks/wix.targets
+2 -2
@@ -101,7 +101,7 @@
101 -->
102
103 <!-- These tasks can be used as general-purpose build tasks. -->
104 - <UsingTask TaskName="DoIt" AssemblyFile="$(WixTasksPath)" />
104 + <UsingTask TaskName="WixBuild" AssemblyFile="$(WixTasksPath)" />
105
106 <!-- These tasks are specific to the build process defined in this file, and are not considered general-purpose build tasks. -->
107 <UsingTask TaskName="CreateItemAvoidingInference" AssemblyFile="$(WixTasksPath)" />
@@ -629,7 +629,7 @@
629 <PdbOutputFile>$(IntermediateOutputPath)%(CultureGroup.OutputFolder)$(TargetPdbFileName)</PdbOutputFile>
630 </PropertyGroup>
631
632 - <DoIt
632 + <WixBuild
633 SourceFiles="@(_CompileWithObjectPath)"
634 LibraryFiles="@(WixLibProjects);@(_ResolvedWixLibraryPaths)"
635 LocalizationFiles="@(EmbeddedResource)"
src/test/WixToolsetTest.BuildTasks/MsbuildFixture.cs
+1 -1
@@ -11,7 +11,7 @@ namespace WixToolsetTest.BuildTasks
11
12 public class MsbuildFixture
13 {
14 - private static readonly string WixTargetsPath = Path.Combine(Path.GetDirectoryName(new Uri(typeof(DoIt).Assembly.CodeBase).AbsolutePath), "wix.targets");
14 + private static readonly string WixTargetsPath = Path.Combine(Path.GetDirectoryName(new Uri(typeof(WixBuild).Assembly.CodeBase).AbsolutePath), "wix.targets");
15
16 [Fact]
17 public void CanBuildSimpleBundle()
src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs
+2 -2
@@ -25,7 +25,7 @@ namespace WixToolsetTest.BuildTasks
25 var pdbPath = Path.Combine(baseFolder, @"bin\testpackage.wixpdb");
26 var engine = new FakeBuildEngine();
27
28 - var task = new DoIt
28 + var task = new WixBuild
29 {
30 BuildEngine = engine,
31 SourceFiles = new[]
@@ -75,7 +75,7 @@ namespace WixToolsetTest.BuildTasks
75 var pdbPath = Path.Combine(baseFolder, @"bin\testpackage.wixpdb");
76 var engine = new FakeBuildEngine();
77
78 - var task = new DoIt
78 + var task = new WixBuild
79 {
80 BuildEngine = engine,
81 SourceFiles = new[]