Hi Cabin,
Sorry there is no easy clean way to do that :(
As a workaround you can create a method that returns a RecordExpectations instance with default behavior that you want
private RecordExpectations CreateRecorder()
{
RecordExpectations recorder = RecorderManager.StartRecording();
recorder.DefaultBehavior.AutomaticFieldMocking = false;
return recorder;
}
Than replace the creation of RecordExpectations and use it like this:
using (RecordExpectations recorder = CreateRecorder())
{
// ...
}
You can write a visual studio macro that will do the replace automatically.