I have a WPF application that will be installed on several client PCs. I am using InstallShield Express Edition as a deployment tool for this.
I created another project (DLL) to track software installations. This is basically a standalone C # project that reads, writes, and performs some validation checks in the Windows registry and can be integrated into other WPF applications (this project / DLL will be useful for other applications).
What I want to do is create an .EXE
file to register the installation. This .EXE
not used in the main WPF application, but it uses the .DLL
, which I just talked about above.
I managed to do this by creating another solution using one Console Application project and referencing the necessary DLLs. But I really want to create it as a project in my main application, and when I do this, the .EXE
file other than the Main App executable is not created.
Is there anything I can do to get 2 .EXE
files (main application and InstallationRegistration
) or the way I currently use the only way?
This is more of a nuisance than a problem, but still ... it will be the best way to track this small module in all the various applications that I have developed.
thanks
David source share