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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Application Manifest file - Not working on Windows XP NO SP - Windows XP SP2

Status
Not open for further replies.

TomSlayton

Programmer
Oct 21, 2011
19
US
Hi,

I am just starting to port some code into C# to share with a VB6 application that I am migrating and in my testing I am getting an error in WINXP less than SP3 when I include a manifest file.

Below is what my application manifest looks like. This works on WINXP SP3 - Windows 8. I am not sure what else I need to include to get this to work in the prior versions of WIN XP. The error message that I am getting is:

"This application has faild to start because the application configuration is incorrect. Re-installing the application may fix this problem."


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity type="win32" name="MyExe" version="1.0.0.0" />
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Utils33" version="1.0.0.0" />
</dependentAssembly>
</dependency>
</assembly>

Any help is very much appreciated.

Best,

Tom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top