I'm working on a WPF application that is made up of two projects;
- Main app that contains most of the front-end stuff and the other project is,
- A .net standard class library that contains the viewmodels
Now I want to create an installer for my solution. I have tried to do so using Installshield.
First, I built the project and copied the .dll generated from the second project ( class library ). Then during the creation of the installer, I imported this library. But the application doesn't function well when I install. I'm having some trouble which to my best guest is that part of the nuget packages used by the class library are missing.
I'll be very grateful if anyone can point me to the right direction on how to create a setup that will include both projects.