i’ve built my first wpf application, nothing fancy, but i wanna make it look cool by adding a setup, ive researched in the internet about some free utilites to do it, but since its a wpf app, i wat the setup to go along those lines… any idea how i can create a custom wpf setup wizard?
Share
When building a WPF setup, you neet to solve the problem of .Net bootstrapping – if the client does not have .Net, your setup will not work.
Once you solve that, your setup will need to do couple of things:
Most of these are provided for free by Windows Installer (MSI). You should really use something like WiX to build regular installer, even though it’s not going to be as snazzy as WPF can be.
If you really want to be fancy, you could actually build custom WPF UI that’s driven by the MSI engine, but the overhead of doing this is probably not worth it.
Update: Here are couple of links that can help if you still decide to build a WPF UI Setup: