Hello friends,
I am trying to distribute an executable to another PC but running into an error something along the line of Settings are incorrect and that reinstallation may fix the problem. Both machines have identical OS (XP with SP2). The manifest for my compile application is as follow:
<?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.50608.0" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
</dependentAssembly>
</dependency>
</assembly>
I see that there is a dependency of Microsoft.VC80.DebugCRT but where and what do I do with that information to make sure that the second PC have what it needs to execute my app. Thanks for any help you can give.
I am trying to distribute an executable to another PC but running into an error something along the line of Settings are incorrect and that reinstallation may fix the problem. Both machines have identical OS (XP with SP2). The manifest for my compile application is as follow:
<?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.50608.0" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
</dependentAssembly>
</dependency>
</assembly>
I see that there is a dependency of Microsoft.VC80.DebugCRT but where and what do I do with that information to make sure that the second PC have what it needs to execute my app. Thanks for any help you can give.