Visual studio 2005 support on XPe

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

I am not able to run any application i build on VS 2005 on my XPe image. It
works if i add all the dependent dlls of my application to the image. But i
want my XPe OS to support any application built on VS 2005. I tried adding
all .NET components. It says: Application configuration is incorrect, when i
run my application.

How can i add this support?

Thanks,
 
I am not able to run any application i build on VS 2005 on my XPe image. It
works if i add all the dependent dlls of my application to the image. But i
want my XPe OS to support any application built on VS 2005. I tried adding
all .NET components. It says: Application configuration is incorrect, when i
run my application.

How can i add this support?

To run VC2005 app you need a proper run-time libraries (what was before
msvcrt.dll and msvcp60.dll). Now it's vcredist_x86.exe.
See also this article: http://www.thecodeproject.com/cpp/vcredists_x86.asp
 
Did you also copy your application manifest file along with the app binaries?
Also, make sure all the direct dependencies mentioned in the manifest are in the image.
 
Hi,

Thank you very much for the support. It worked after i copied runtime files
from WinSxS folder.

Thanks again,
 
Back
Top