Reputation: 60771
i have a vb.net application
i published it
it made an app files diretory, setup.exe, and some other file
i need everything to be in one file because the users are not very computer savy
is there a way to bundle everything in one installation file?
Upvotes: 1
Views: 253
Reputation: 9386
You could try ILMerge. It will allow you to merge multiple assemblies into 1. You could set it up in a Post Build Event to merge all of your assemblies into 1 exe.
Upvotes: 1