Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What to do with CRT dependency to run *.exe in another machine

Status
Not open for further replies.

qjade

Programmer
Jun 7, 2004
42
0
0
US
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.
 
You should not distribute debug builds.

/Per
[sub]
www.perfnurt.se[/sub]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top