Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
Hi everyone,

like the subject says, I am developing an aplication in wpf. The problem is when i try to run that app in another pc. .NET dependencies isn´t because i have .net client profile and extended.
What could be ? any ideas ?
Posted

1 solution

There can be many reasons why an app fails to run. perhaps it's missing dependency DLLs. It could be a permissions issue. Maybe resource files or other config files are missing. It may be using hardcoded paths. And with .NET apps, the target machine may not have the exact same framework version (including any SPs).
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 18-Nov-11 11:08am    
Good check list, a 5.
--SA
cristovao50 18-Nov-11 11:19am    
well, I made a install setup project and added all files in bin/debug directory of wpf app.
setup only detected one dependency - .NET;

I install the setup in other computers and it installs just fine. The problem is when i try to run application, nothing happens.
Nish Nishant 18-Nov-11 11:21am    
You are releasing a debug-mode binary. You need to make a release-mode build and then distribute those files (/bin/release). The debug mode binaries are only meant for dev/debug/test work.
cristovao50 18-Nov-11 11:44am    
its makes sense, I am going to try and after i leave some feedback...
cristovao50 18-Nov-11 13:14pm    
problem solved, i was trying to load a wrong database ...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900