I created an MVC project in Visual Studio 2015 and when I compiled it I got this error:
Type name 'Web' does not exist in the type name 'System'
This was in the autogenerated models AccountViewModel and ManageViewModel. I'm surprised to see that there's an error considering that A: These are autogenerated and B: My other very similar projects compiled without this issue.
The code in which it is referencing is:
public class SendCodeViewModel
{
public string SelectedProvider { get; set; }
public ICollection<System.Web.Mvc.SelectListItem> Providers { get; set; }
public string ReturnUrl { get; set; }
public bool RememberMe { get; set; }
}
and
public class ConfigureTwoFactorViewModel
{
public string SelectedProvider { get; set; }
public ICollection<System.Web.Mvc.SelectListItem> Providers { get; set; }
}