I've just upgraded from Visual Studio 2013 Pro to Visual Studio to 2015 (Enterprise), and when I compile my solution, I'm getting the following error:
error CS0012: The type 'ConnectionStringSettings' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
Is there anything I missed during the installation process? Do I have to manually add a reference to my projects from now on?
UPDATE: yes it does work after adding a reference to System.Configuration to the projects, but the question is more why do I need to do it in Visual Studio 2015 (it used to work without a reference in Visual Studio 2013)
UPDATE: To explain the context: I work in a team where developers work with various versions of Visual Studio (2012 onwards). If developers who work with Visual Studio < 2015 forget to manually add that reference, they won't get a compilation error, but the ones on VS2015 will. So it's important for the team to understand what's happening here :)