Tag: wix

WixToolset目录结构复制

我有一个任务来创buildnodejs web应用程序的安装。 我已经find解决scheme来压缩整个应用程序将其作为一个Wix文件复制,并使用wix自定义操作将其解压缩。 这工作。 但其缺点是,targt服务器必须安装压缩软件。 在这种情况下7z。 看着其他安装,他们正在提取任何外部软件的文件。 我已经调查了一下,有一点说,我应该使用热,坚果我不知道这是什么。 有任何简单的启动例子,我可以从概念上理解它。 我也发现其他人在Wix上的学习曲线很慢。 我非常认真地学习这个,但是我需要一点点的努力。 我想从这个例子开始。 如何整个文件夹复制wix? 或者最好的实践。 也许有些压缩与第三方软件。 编辑: 这是我的wixproj文件的样子: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">x86</Platform> <ProductVersion>3.10</ProductVersion> <ProjectGuid>a42f686d-72e6-4452-b066-796c441e0d65</ProjectGuid> <SchemaVersion>2.0</SchemaVersion> <OutputName>SomeManager</OutputName> <OutputType>Package</OutputType> <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath> <WixTargetsPath Condition=" '$(WixTargetsPath)' […]