P
Peter
Hello,
I have an application compiled with visual studio 2005 SP2 (32 bit),
it cannot run successfully in another computer without vs 2005 installed.
Here is the error message:
"This application has failed to start because the application
configuration is incorrect"
I tried google search and installed visual studio 2005 runtime binary
library from the microsoft website, it doesn't work.
I also copied Microsoft.VC80.CRT from redist/x86 directory and put
it under binary application, it still doesn't work.
this is my binary application manifest:
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.DebugCRT'
version='8.0.50727.762' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT'
version='8.0.50727.762' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
</assembly>
do I need to copy Microsoft.VC80.DebugCRT directory over in addition to
Microsoft.VC80.CRT directory?
Thanks.
I have an application compiled with visual studio 2005 SP2 (32 bit),
it cannot run successfully in another computer without vs 2005 installed.
Here is the error message:
"This application has failed to start because the application
configuration is incorrect"
I tried google search and installed visual studio 2005 runtime binary
library from the microsoft website, it doesn't work.
I also copied Microsoft.VC80.CRT from redist/x86 directory and put
it under binary application, it still doesn't work.
this is my binary application manifest:
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.DebugCRT'
version='8.0.50727.762' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT'
version='8.0.50727.762' processorArchitecture='x86'
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
</assembly>
do I need to copy Microsoft.VC80.DebugCRT directory over in addition to
Microsoft.VC80.CRT directory?
Thanks.