When I am trying to run application on Xamarin on visual studio, I am getting error as mentioned below and not able to run the application on device or emulator:
The "XamlCTask" task failed unexpectedly.
Microsoft.Cci.Pdb.PdbDebugException: Unknown custom metadata item kind: 6
at Microsoft.Cci.Pdb.PdbFunction.ReadCustomMetadata(BitAccess bits)
at Microsoft.Cci.Pdb.PdbFunction..ctor(ManProcSym proc, BitAccess bits)
at Microsoft.Cci.Pdb.PdbFunction.LoadManagedFunctions(BitAccess bits, UInt32 limit, Boolean readStrings)
at Microsoft.Cci.Pdb.PdbFile.LoadFuncsFromDbiModule(BitAccess bits, DbiModuleInfo info, IntHashTable names, ArrayList funcList, Boolean readStrings, MsfDirectory dir, Dictionary`2 nameIndex, PdbReader reader)
at Microsoft.Cci.Pdb.PdbFile.LoadFunctions(Stream read, Dictionary`2& tokenToSourceMapping, String& sourceServerData)
at Mono.Cecil.Pdb.PdbReader.PopulateFunctions()
at Mono.Cecil.Pdb.PdbReader.ProcessDebugHeader(ImageDebugDirectory directory, Byte[] header)
at Mono.Cecil.ModuleDefinition.ProcessDebugHeader()
at Mono.Cecil.ModuleDefinition.ReadSymbols(ISymbolReader reader)
at Mono.Cecil.ModuleReader.ReadSymbols(ModuleDefinition module, ReaderParameters parameters)
at Mono.Cecil.ModuleReader.CreateModuleFrom(Image image, ReaderParameters parameters)
at Mono.Cecil.ModuleDefinition.ReadModule(Stream stream, ReaderParameters parameters)
at Mono.Cecil.ModuleDefinition.ReadModule(String fileName, ReaderParameters parameters)
at Xamarin.Forms.Build.Tasks.XamlCTask.Compile()
at Xamarin.Forms.Build.Tasks.XamlCTask.Execute()
at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()
at Microsoft.Build.BackEnd.TaskBuilder.<ExecuteInstantiatedTask>d__1.MoveNext() MyFirstProject
Before adding this "Xamarin.Forms.Maps" NuGet package, my application working but as I have added this suddenly application stops running and getting error.
Anybody could help me what causes this type of issue?
This kind of issue may also come if by mistake you have any syntactical error like in my case: two text cells were present in the ListView -
I went through other posts for this issue and found the same issue occurred due to the presence of syntactical errors, which VS doesn't report directly. So look for this, otherwise, reinstall the compatible version of
xamarin.forms
-> clean solutions -> rebuild by reopening VS.I am getting this error with
Xamarin.Mac
inVisual Studio for Mac
. Iunloded
theXamarin.Mac
Project. Than remove it fromsolution
. Finally delete thexamarin.Mac
folder from the solution folder. Atlastdeleted
thepackages
folder from the solution folder. Remove allnuget packages
fromxamarin forms
project. Now I again add thenuget packages
to xamarin forms project. AddedXamarin.Mac
project to the solution and make necessarymodifications
. This results in a successfulbuild
. Though my problem was withxamarin.mac
this process may solve problem with otherprojects
also.Delete your old package
/[your project root]/packages/Xamarin.Forms.[old version number]
.Updating Xamarin.Forms to the latest version on both android and iOS project and reopened the project worked for me.
When We Add ContentPage Page in Xamarin.Forms. and in that page we add more then one ContentPage.Content in same page. Then also we get this type of the error.
This issue arise, if your Xamarin.Form version is not compatible/matching with your NuGet package which you have installed.
So, I have just updated Xamarin.Forms for both xx.Droid and PCL and make the match the dependencies with NuGet package.
Now it is working fine. Hope so this will work for you.