5
votes

I have just finished creating a wpf application in visual studio express C# and need to create an installer file. This is going on just a couple of machines because it is a personal program for me. I have looked into Advanced Installer using the simple method but cannot figure out how to do that or if it can even create a wpf installer. I have also tried WIX with the same results.

Any tips for doing this?

1
The Simple project in Advanced Installer is pretty straightforward. Add the application files and build an MSI which installs them. What problems did you encounter?rmrrm
The problem I am having is I don't now which folders and files to select. I selected the bin/release folder and the program does open but I am missing my images. I copied those manually and moved the files to have the same folder structure as the project folder. My images showed up, but is this all I need? I just did all of this by the way. Do I need anything else besides the images folder and the bin/release folder? Also, the Images folder is the only folder that I created.mtlca401
That is pretty much it. To be sure, simply try making your application work on a clean machine and see which files and folders it needs. After that, simply add those files and folders in your installer.rmrrm
I prefer WIX over Visual Studio's Installer but I am not sure if it works with Visual Studio Express: rhyous.com/2010/10/15/… Cosmin Pivu gave you the rest of the info you need.Rhyous

1 Answers

0
votes

Before I start using WiX I worked with NSIS and HM NIS Edit which has a wizard to create simple installers.

Perhaps it can help you for your purposes.