Problem
The command dotnet build ...
fails when run from TFS 2015 build agent with the following errors:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets(262,5): Error : Object reference not set to an instance of an object.
C:\Program Files\dotnet\dotnet.exe compile-csc @(path to dotnet-compile.rsp) returned Exit Code 1
Steps to Reproduce
NT AUTHORITY\NETWORK SERVICE
(the default).Environment
dotnet --version
: 1.0.0-preview2-003121Visual Studio needs to be launched once on the machine running the build agent using the service account assigned to the build agent.
For example, to launch Visual Studio as NT AUTHORITY\NETWORK SERVICE
:
psexec -i -u "NT AUTHORITY\NETWORK SERVICE" "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"
(PsExec can be downloaded here.)
The login to Visual Studio Online can be skipped.
After Visual Studio launches, the TFS build will succeed.
Edit 1
After further investigation, it appears you also need to create a new .NET Core Web Application project (File -> New -> Project...
) and build it, once Visual Studio starts.