aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/wix.targets
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.BuildTasks/wix.targets')
-rw-r--r--src/WixToolset.BuildTasks/wix.targets61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/WixToolset.BuildTasks/wix.targets b/src/WixToolset.BuildTasks/wix.targets
index 2edd44c4..ebd3fa90 100644
--- a/src/WixToolset.BuildTasks/wix.targets
+++ b/src/WixToolset.BuildTasks/wix.targets
@@ -103,11 +103,7 @@
103 --> 103 -->
104 104
105 <!-- These tasks can be used as general-purpose build tasks. --> 105 <!-- These tasks can be used as general-purpose build tasks. -->
106 <UsingTask TaskName="Candle" AssemblyFile="$(WixTasksPath)" />
107 <UsingTask TaskName="DoIt" AssemblyFile="$(WixTasksPath)" /> 106 <UsingTask TaskName="DoIt" AssemblyFile="$(WixTasksPath)" />
108 <UsingTask TaskName="Lit" AssemblyFile="$(WixTasksPath)" />
109 <UsingTask TaskName="Light" AssemblyFile="$(WixTasksPath)" />
110 <UsingTask TaskName="Torch" AssemblyFile="$(WixTasksPath)" />
111 107
112 <!-- These tasks are specific to the build process defined in this file, and are not considered general-purpose build tasks. --> 108 <!-- These tasks are specific to the build process defined in this file, and are not considered general-purpose build tasks. -->
113 <UsingTask TaskName="CreateItemAvoidingInference" AssemblyFile="$(WixTasksPath)" /> 109 <UsingTask TaskName="CreateItemAvoidingInference" AssemblyFile="$(WixTasksPath)" />
@@ -784,63 +780,6 @@
784 780
785 <!-- 781 <!--
786 ================================================================================================ 782 ================================================================================================
787 Lib
788
789 Links the .wixobj, .wxl, .wixlib, wix extensions into a .wixlib file using lit.exe.
790
791 [IN]
792 @(CompileObjOutput) - The compiled .wixobj file.
793 @(EmbeddedResource) - The list of wxl files to use for localization.
794 @(WixObject) - The list of .wixobj files.
795 @(WixLibrary) - The list of .wixlib files.
796 @(WixExtension) - The list of wix dll extension files.
797
798 [OUT]
799 $(TargetPath) - The compiled .wixlib file.
800 ================================================================================================
801 -->
802 <PropertyGroup>
803 <LibDependsOn>
804 PrepareForBuild;
805 ResolveReferences
806 </LibDependsOn>
807 </PropertyGroup>
808 <Target
809 Name="Lib"
810 Inputs="@(CompileObjOutput);
811 @(EmbeddedResource);
812 @(WixObject);
813 @(WixLibrary);
814 @(_ResolvedWixExtensionPaths);
815 $(MSBuildAllProjects)"
816 Outputs="$(TargetPath)"
817 DependsOnTargets="$(LibDependsOn)"
818 Condition=" '$(OutputType)' == 'Library' ">
819
820 <Lit
821 ObjectFiles="@(CompileObjOutput);@(WixObject);@(WixLibProjects);@(WixLibrary)"
822 AdditionalOptions="$(LibAdditionalOptions)"
823 BindInputPaths="@(LinkerBindInputPaths)"
824 BindFiles="$(LibBindFiles)"
825 ExtensionDirectory="$(WixExtDir)"
826 Extensions="@(_ResolvedWixExtensionPaths)"
827 LocalizationFiles="@(EmbeddedResource)"
828 NoLogo="$(LibNoLogo)"
829 OutputFile="$(TargetPath)"
830 Pedantic="$(LibPedantic)"
831 ReferencePaths="$(ReferencePaths)"
832 RunAsSeparateProcess="$(RunWixToolsOutOfProc)"
833 SuppressAllWarnings="$(LibSuppressAllWarnings)"
834 SuppressIntermediateFileVersionMatching="$(LibSuppressIntermediateFileVersionMatching)"
835 SuppressSchemaValidation="$(LibSuppressSchemaValidation)"
836 SuppressSpecificWarnings="$(LibSuppressSpecificWarnings)"
837 ToolPath="$(WixToolDir)"
838 TreatWarningsAsErrors="$(LibTreatWarningsAsErrors)"
839 VerboseOutput="$(LibVerboseOutput)" />
840 </Target>
841
842 <!--
843 ================================================================================================
844 AssignCultures 783 AssignCultures
845 784
846 Determines the final list of culture groups to build based on either the Cultures property or 785 Determines the final list of culture groups to build based on either the Cultures property or