I was using microsoft/dotnet:1.1-sdk-msbuild before upgrade
Now, I've upgraded VS to preview version and upgraded my project to netcore2.0.
Fixed a few issues during upgrade.
Now I try to put microsoft/dotnet:2.0-sdk-msbuild
Expected behavior
Project should build
Actual behavior
Getting image not found error.
I tried removing -msbuild from tag but then image could load, dotnet restore ran successfully, but it couldn't build with errors like The type or namespace name 'System' could not be found. Actually, it can't find reference to any assembly i guess.
Steps to reproduce the issue
microsoft/dotnet:1.1-sdk-msbuild
before upgradenetcore2.0
.microsoft/dotnet:2.0-sdk-msbuild
Expected behavior
Project should build
Actual behavior
Getting image not found error.
I tried removing
-msbuild
from tag but then image could load,dotnet restore
ran successfully, but it couldn't build with errors likeThe type or namespace name 'System' could not be found
. Actually, it can't find reference to any assembly i guess.csproj file
Any suggestions ?