Windows 8 compatible camera implementation

时间秒杀一切 提交于 2019-12-25 04:09:14

问题


I have an existing applicaton in winforms. It is using third party library (Touchless.Dll and WebCam.lib) to enable image capturing functionality. Now i want to make it compatible with Windows 8.1 tablets. When i tried to apply WinRT API in winform i got an error an error related manifest.

    Error   1   The "ResolveManifestFiles" task failed unexpectedly.
System.ArgumentException: Value does not fall within the expected range.
   at Microsoft.Build.Tasks.Deployment.ManifestUtilities.NativeMethods.GetAssemblyIdentityFromFile(String filePath, Guid& riid)
   at Microsoft.Build.Tasks.Deployment.ManifestUtilities.MetadataReader.ImportAttributes()
   at Microsoft.Build.Tasks.Deployment.ManifestUtilities.MetadataReader.get_Attributes()
   at Microsoft.Build.Tasks.Deployment.ManifestUtilities.MetadataReader.get_Name()
   at Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity.FromManagedAssembly(String path)
   at Microsoft.Build.Tasks.ResolveManifestFiles.IsFiltered(ITaskItem item)
   at Microsoft.Build.Tasks.ResolveManifestFiles.GetOutputAssemblies(PublishInfo[] publishInfos, List`1& assemblyList)
   at Microsoft.Build.Tasks.ResolveManifestFiles.GetOutputAssembliesAndSatellites(PublishInfo[] assemblyPublishInfos, PublishInfo[] satellitePublishInfos)
   at Microsoft.Build.Tasks.ResolveManifestFiles.Execute()
   at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()
   at Microsoft.Build.BackEnd.TaskBuilder.<ExecuteInstantiatedTask>d__20.MoveNext() 4DCam

How to resolve this error. Somebody help me..


回答1:


"Problem generating manifest. Could not load file or assembly 'C:\Program Files (x86)\Windows Kits\8.1\References\CommonConfiguration\Neutral\Windows.winmd' or one of its dependencies. An attempt was made to load a program with an incorrect format." was my error when i try to build the application. The problem solved by unchecking 'Enable ClickOnce security settings' under Security tab of project properties.

Another solution https://robindotnet.wordpress.com/category/clickonce-deployment/



来源:https://stackoverflow.com/questions/28986517/windows-8-compatible-camera-implementation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!