Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个烧录安装程序,我需要将 .NET 4.5 作为先决条件安装(不是用于安装程序 UI,而是用于我正在安装的产品)。但是,一个要求是我无法在安装过程中下载它。我添加了有效负载并包含了文件,但它不会出现在 redist\dotnet45full_x86_x64.exe 的相对路径中。我找不到任何描述如何完成此任务的资源。
ExePackage/@Name
此链有效负载的目标路径和文件名。使用此属性重命名链入口点或将其提取到子文件夹中。默认值为 SourceFile 属性中的文件名(如果提供)。至少,必须指定 Name 或 SourceFile 属性。
所以使用
<ExePackage Name="redist\dotnet45full_x86_x64.exe" ... />