I build WPF application on Window 10, .Netframwork 4.5. It's successfully working on my machine and when I tried to run exe file (bin/debug/app.exe) by another PC (window 8.1) it's not Working.. No error statement is showing, it's just loading but nothing happened.. My application contain LINQ to SQL (DB) and communication with some network over UDP.. What am I doing wrong? What and How compatibility issues are needed to resolve? What possible problems are occurring ? Thanks
What am I doing wrong?
It's impossible to say without knowing what your application actually tries to do. As a first step, to simply diagnose the cause of the issue, you need to implement some kind of logging in your application. Once you see the exception message and the stack trace, you will hopefully be able to figure out how to fix the error.
But if you don't know why the application crashes, you won't ever be able to fix it.