A little background: I am simply learning how to control the Windows Installer (Setup Projects) Simple project...install application, gather database info, connect to SQL Server, execute SQL Scripts, etc... I also wanted to modify the app.config file.
anyway, I had most of it working...the installer would install my app, update the database. An uninstall removed my app and then removed database objects.
I added code to modify the app.config, began seeing the following error.
Error 1001. Exception occurred while initializing the installation: System.IO.FileNotFoundException: File or assembly name Eastridge, or one of its dependencies, was not found
I removed the offending code, still get the error. Event log entries are no good because the error occurs before my code executes (in overriden Install method)
My project has no dependencies on a file or assembly named Eastridge (that is the company name). I cannot figure out what the installer is looking for...if I could perhaps I could resolve this....any ideas?
Thanks
James
|