如何将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 package dll添加到wix安装程序。
谢谢, 纳温
答案 0 :(得分:2)
创建一个空的新项目(库)并在这个新项目中安装nuget-package。在您的设置中,您将收集安装了nuget-package的新项目的buildoutput。
<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