Error:
C:\\WebApp\\WebApp.csproj : error : The SDK \'Microsoft.NET.Sdk.Web\' specified could not be found. C:\\WebApp\\WebApp.csproj
I stumbled upon this issue a number of times recently. Here's a brief list of the workaround I found (one of them always worked until now):
Create a Global.json file: Add a new global.json file to your project's root with the following content (replace the .NET Core version build with the one you want to run the project with):
{ "sdk": { "version": "2.0.5" } }
Rename the SDK reference: Open your .proj file and replace with .
Add the MSBuildSDKsPath Environment Variable: The dotnet CLI sets the MSBuildSDKsPath environment variable when invoking MSBuild: however, a December 2016 patch changed the CLI behaviour so that it will respect an existing environment variable, if it has already been set: this will allow the developer to “force” the CLI to use a specific SDK.
C:\Program Files\dotnet and C:\Program Files (x86)\dotnet are in the PATH environment variable.For additional info regarding the issue and other viable fixes check out this blog post that I wrote on this topic.