Under TFS 2015 under command line step I have : C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.com
Under Arguments: "MuSolution.sln" /build $(BuildConfiguration)
Where Release is configured build into ..\bin\
and Debug is configured to ..\bin\Debug\
I checked and the
$(BuildConfiguration)
is release and it builds for release On Publish Build Artifacts step Root is specified as $SomeRootFolder\MySolution where the bin folder gets written to
Contents are:
/bin/**
/MySolutionApp/Web.config
/MySolutionApp/Global.asax
/MySolutionApp/ApplicationInsights.config
Artifact MySolution
Artifact Folder gets created with nothing there.
I have tried **\bin** but everything including Debug folder gets written.
I need to have Artifact in this layout:
MySolution\bin
/MySolution/Web.config
/MySolution/Global.asax
/MySolution/ApplicationInsights.config
Any help would be appreciated.