In short: Rename App.exe
to something else, for example MyApp.exe
Why? You probably have an assembly called App.dll
. The full assembly name does not contain a file type (.dll or .exe), so the presence of App.exe
causes a conflict - since both of them will be called App
.
source share