Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create Setup package for wpf 4.5 application using some script

I need to create install-able setup via scripting for my WPF application. I don't know where to start and what is best way to do this. Please help.

like image 579
D J Avatar asked Jan 31 '13 08:01

D J


1 Answers

You can either:

  • Use the built in setup project type in Visual Studio to create an MSI installer
    • Tutorials
  • Use something like NSIS or WIX. I use NSIS for all of my apps, both have learning curves and NSIS is fairly easily skinnable.
    • NSIS Examples
    • WIX Examples
like image 95
Echilon Avatar answered Oct 01 '22 23:10

Echilon