Deployment problem (vs2008)

Trying to deploy an application, I have come across a problem. (deployed prog will not start up)

I have read the section on side by side execution, and have pasted in the code into my application manifest.

Trying to build it gives 'Error 5 Could not find file 'sfFTPLib, Version=1.5.0.0, Culture=*, ProcessorArchitecture=x86, Type=win32'. ClipStore'

I have sfFTPLib.dll (ver 1.5.17.24) and Interop.sfFTPLib.dll (ver 1.5.0.0) in my application directory.


pasted in from the helpfile is

<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="sfFTPLib"
version="1.5.0.0"
language="*"
processorArchitecture="x86"
/>
</dependentAssembly>
</dependency>


Any ideas?

thnx

Jim

Hello Jim ..

Is this the error message from Visual Studio? Did you add the sfFTPLib.dll as a reference in your project? Maybe you have to readd it.

If you register the dll you don't need a manifest. If you want to use SxS you need to add the part from the help file to your manifest.

Regards,
Mat

Hello Jim ..

Is this the error message from Visual Studio? Did you add the sfFTPLib.dll as a reference in your project? Maybe you have to readd it.

If you register the dll you don't need a manifest. If you want to use SxS you need to add the part from the help file to your manifest.

Regards,
Mat

Got the manifest working in the end. My mistake.

Thanks,

Jim