Recurring issues in Visual Studio projects

Common issues and solutions to errors I come across in Visual Studio on a semi-regular basis:

Problem:
"Could not find a part of the path … bin\roslyn\csc.exe"
Solution:
Run this in Package Manager Console:
Update-Package Microsoft.CodeDom.Providers.DotNetCompilerPlatform -r

Problem:
"Creation of the virtual directory http://localhost:12345/ failed with the error: Cannot create the Web site"
Solution:
Update .csproj file and set the following:
<UseIISExpress>true</UseIISExpress>
In the <VisualStudio> element, set the following:
<IISUrl>http://localhost:1234</IISUrl>

Problem:
"Could not load file or assembly [assembly name] or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference"
Solution:
If it’s a nuget package, check version of the assembly in packages.config, web.config and “References” section in solution explorer, one of them is probably wrong. Try reinstalling or updating the nuget package.

Problem:
"Creation of the virtual directory [site url] failed with the error : Unable to access the IIS metabase"
Solution:
Restart Visual Studio as Administrator

Problem:
"HTTP Error 500.19 - Internal Server Error” in projects that use ASP.NET core and have a <aspNetCore> item in the web.config
Solution:
Add “Development time IIS support” from in the Visual Studio installer, in “ASP.NET and Web Development” optional features section.

Problem:
When trying to process JSON data from an API that uses ASP.NET, you receive a “Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: <. Path ‘', line 0, position 0.“
Solution:
Newtonsoft is expecting to process JSON and getting a response starting with < instead (i.e. it’s XML). The API you’re calling has probably failed and is throwing back an ASP.NET YSOD page containing HTML. See if you can hit the API directly some other way and check the error message. In my case the server was missing some IIS features and installing them fixed the problem.

Problem:
A .NET Core project won’t open, with the error “Project file is incomplete. Expected imports are missing"
Solution:
Open a terminal, navigate to the project directory and run these commands:
dotnet nuget locals -c all
dotnet clean
dotnet build
If that doesn’t work: try “dotnet run” and watch the output, you might have the wrong version installed
If all that doesn’t help either, it seems like this issue might occur from corrupted or missing .NET Core SDK installs. Uninstall it, ensure uninstalled versions are physically deleted from C:\Program Files\dotnet\sdk, and reinstall the version/s you need. Also make sure you don’t have multiple installs of VS.


TODO:
"Can’t create the virtual directory http://customdomain.local failed with the error: Cannot create the Web site"
Can’t run .NET Core projects:
Install at least .NET Core SDK 2.2