I have a WPF Caliburn.Micro application. Here is a part of my code:
protected override void OnViewLoaded( object view )
{
base.OnViewLoaded( view );
var firstDataEntryVM = new FirstDataEntryViewModel();
ActivateItem(firstDataEntryVM);
This causes
A first chance exception of type 'System.NullReferenceException' occurred in Caliburn.Micro.dll
Here is the call stack:
I downloaded source code of Caliburn.Micro.WPF and added it to the solution. But now I cannot run the application at all:
How can I debug it?
A couple of ways come to mind:
EDIT The source code for this project is available at CodePlex. Download the code and debug from Visual Studio!