作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 Nuget 包 dll 添加到 Wix 安装程序。我尝试添加
<?define SourceDirectory = $(var.SolutionDir)\ProjectName\bin\Release" ?>
<Component Id="cmpId1" Guid="BF985D52-BA8C-4E4F-84CC-B5A95520FBD4">
<File Id="fileId1" KeyPath="yes" Source="$(var.SourceDirectory)\Unity.Abstractions.dll" />
</Component>
但不工作。
请指导我如何将 nuget 包 dll 添加到 wix 安装程序。
谢谢,纳文
最佳答案
创建一个空的新项目(库)并在这个新项目中安装 nuget-package。在您的设置中,您收集安装了 nuget 包的新项目的构建输出。
<Component Id="cmpId1" Guid="BF985D52-BA8C-4E4F-84CC-B5A95520FBD4">
<File Id="fileId1" KeyPath="yes" Source="$(var.NugetCollectorProject.TargetDir)\Unity.Abstractions.dll" />
</Component>
NugetCollectorProject 是新项目。您的安装程序必须引用该项目才能使用该 var.projectname.targetdir
关于c# - 如何将 Nuget 包 dll 添加到 Wix 安装程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49292766/
我是一名优秀的程序员,十分优秀!