If it generates something like
public Umbraco.Web.Models.ImageCropDataSet Cropper
{
}
And my Namespaces contains following: Opten.xyz**.Umbraco.Web.**Models
I get an error:
The type or namespace name 'Web' does not exist in the namespace xyz.Umbraco (are you missing an assembly reference)?
So we have do add manually global:: everytime we rebuild it.
public global::Umbraco.Web.Models.ImageCropDataSet Cropper
{
}