Error: FxCop appears to have hung or deadlocked
- Hi,
We are using FxCop for Code Analysis.
When we build the project in visual studio 2008, we get the following build error saying "FxCop appears to have hung or deadlocked".- Changed TypeRoahn LuoMSFT, ModeratorWednesday, November 11, 2009 1:31 AMno more tips
All Replies
- Are you using stand-alone FxCop or Visual Studio code analysis? If the former, how is it being launched?
- Marked As Answer byKeval Shah Wednesday, November 04, 2009 4:24 PM
- Unmarked As Answer byKeval Shah Wednesday, November 04, 2009 4:24 PM
- Hello Keval,
Would you please provide us more information about the hung/deadlock? or provide us the detailed steps to reproduce the issue? We would be very happy to provide help with more information, hope you could understand.
Thanks a lot!
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback, please tell us.
Welcome to the All-In-One Code Framework! - Hello,
We are changing the issue type to General Discussion because you have not followed up with the necessary information. If you have more time to look at the issue and provide more information, please feel free to change the issue type back to Question by opening the Options list at the top of the post editor window, and changing the type. If the issue is resolved, we will appreciate it if you can share the solution so that the answer can be found and used by other community members having similar questions.
Thanks
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback, please tell us.
Welcome to the All-In-One Code Framework! Hi guys, I got same error message while build a project in Visual Studio 2005.
My Scenario: I'm trying to develop an application where user login by swipe a finger on embedded biometric device. I use classes from Microsoft.PointOfService namespace by adding its reference into project solution.
After receiving an error ask to create an instance of the device, I created the device instance as shown in below code-block:
public Form1(){
InitializeComponent();
PosExplorer DevExplore = new PosExplorer(this);
Device myBioDev = new Device("Biometric", "", "C:\\WINDOWS\\System32\\drivers\\tcusb.sys");
myBio = (Biometrics) DevExplore.CreateInstance(DevExplore.GetDevice(myBioDev.DevicePath));
...
}
However, if I try to build my project, it took about 2 minutes to respond and give following error messages:
- CA0503 : Additional code analysis warnings or errors cannot be displayed
- CA0001 : FxCop appears to have hung or deadlocked.
Any contribution will be much appreciated.
N.B:
- I didn't use FxCop intentionally (as for the case of Keval) because I didn't even know it
- The device-path (C:\\WINDOWS\\System32\\drivers\\tcusb.sys) is a path where my touch-chip driver is installed.


