I have simple WPF app that I deployed using click once to shared folder on my computer so it can be installed via local network. When I click on install button , it prompts me to download/save setup file, and when I run it, it installs app to my computer. But, when I try to start it I get this screen

and then nothing happens. Any ideas…?
That dialog is checking for updates. My best guess is that you have an unhandled exception that occurs on application startup, which causes your app to crash.
For WPF, you will want to add handlers to both of these events:
I usually attach to them in my application class’s
OnStartupmethod. In the event handlers, I would then log the exception, so I can look at what is failing in production.