Again a new addition to the VSAE build errors KB.
Problem
You compile a VSAE project and you get the compile error below:
Severity Code Description Project File Line Suppression State Error Verification of Monitor Configuration with MonitorType schema for Monitor OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage failed. : Could not load management pack [ID=System.AdminItem.Library, KeyToken=31bf3856ad364e35, Version=7.5.8500.0]. The management pack was not found in the store. An object of class ManagementPack with name System.AdminItem.Library was not found. (Path = OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage) OpsLogix.IMP.VMWare.VirtualMachine.Monitoring Monitoring\Monitors\OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage.mpx 4 |
Investigation
Hue ? Could not load management pack System.AdminItem.Library ?
But I don’t use this one at all. So you could add this MP to the references and end up with a new error saying :
Verification of Monitor Configuration with MonitorType schema for Monitor OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage failed.: Could not load management pack [ID=System.Software.Library, KeyToken=31bf3856ad364e35, Version=7.5.8501.0]. The management pack was not found in the store.An object of class ManagementPack with name System.Software.Library was not found. (Path = OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage) |
Again we add the missing MP : System.Software.Library
And now we get
Verification of Monitor Configuration with MonitorType schema for Monitor OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage failed. : Could not load management pack [ID=Microsoft.SystemCenter.NTService.Library, KeyToken=31bf3856ad364e35, Version=7.0.9538.0]. The management pack was not found in the store. An object of class ManagementPack with name Microsoft.SystemCenter.NTService.Library was not found. (Path = OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage) OpsLogix.IMP.VMWare.VirtualMachine.Monitoring Monitoring\Monitors\OpsLogix.IMP.VMWare.VirtualMachine.Monitoring.Monitor.VM.CPUUsage.mpx |
So again we could add the MP ref but I can tell you now already that this won’t help at all. The compiler is just trying to search through known types to see if it can map a property.
Just jump to the solution because it very simple….
Solution
Just double check if the class properties you refer are correctly spelled (case sensitive!) . In this case the names were not correct.
Also it could be that it couldn’t find the property at all. Same error is displayed.
Hope this helps.
Happy Scomming
Michel Kamp
One Response to “Failed VSAE build with message: Could not load management pack System.AdminItem.Library”