Error: Cannot find this file specified in the manifest file: ChangeContentTypeEventHandler.dll
I'm getting this error when attempting to deploy this solution to the Sharepoint environment. Here is my manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<Solution xmlns="http://schemas.microsoft.com/sharepoint/"
SolutionId="F9850E13-81B6-47E1-BBC6-42AC70A903C3" >
<FeatureManifests>
<FeatureManifest Location="List\Feature.xml"/>
</FeatureManifests>
<Assemblies>
<Assembly DeploymentTarget="GlobalAssemblyCache" Location="ChangeContentTypeEventHandler.dll"/>
</Assemblies>
</Solution>
Here is my deploy.ddf:
.OPTION Explicit ; Generate errors
.Set DiskDirectory1="..\bin"
.Set CabinetNameTemplate="ChangeContentType.wsp"
manifest.xml
.Set DestinationDir="List\ListTemplates"
List\ListTemplates\ListManifest.xml ; specify cab file name
.Set DestinationDir="List\Messages"
List\Messages\schema.xml
.Set DestinationDir="List"
List\Feature.xml
..\bin\ChangeContentTypeEventHandler.dll ChangeContentTypeEventHandler.dll
I have confirmed that ChangeContentTypeEventHandler.dll is in the bin folder above the Source folder where the manifest.xml and deploy.ddf files exist.
Any suggestions or reasons why my deployment is unable to find this file?