I am trying to add a Nuget package as a reference to a Wix project. I have found how to do exactly what I want to do here:
How to Add Nuget package dlls to Wix installer
But in this case the project file sounds like it is .net framework (not core) project and the having tried this, it downloads all the files to the bin directory of the Nuget Container Project that can be referenced from the wix file as shown in the link i.e.
Source="$(var.NugetCollectorProject.TargetDir)\Unity.Abstractions.dll
I there an way to do achieve this using a .net 5/6 project file so the packages are downloaded to the bin directory of this Project?
Or is there a better waht to do this in Wix v3.X
Thanks, Nick