So I often write code where I have a model class and usually use the shortcut 'Ctrl + .' to give me the option to add a field or property to the class that I have typed out that does not yet exist. IN VS 2010,2012,2013 etc it would create a public property I.E.
public decimal? adRevenuePercentPartnerSold { get; set; }
Where as now it creates it with an internal set
public decimal? adRevenuePercentPartnerSold { get; internal set; }
This drives me crazy as when I test an MVC action the property never gets set from a post so I always have to go in and fix each property it creates.