All I did was disable support for Silverlight 5 in my PCL project.
Visual Studio 2015.1 then informed me that it decided to support ASP.NET Core 5.0 as well (which I don't want or need) added crap like project.json
to the project and the code using IConvertible
stopped compiling due to The type or namespace name 'IConvertible' could not be found
error.
How can I fix this mess? I want to be able to use both IConvertible
and Parallel.For
.