I am building a project using batch scripts that uses msbuild.exe. I performed two builds: a manual one and automated one.
The manual build resulted to this folder structure:
+ project
+ obj
+ Debug
+ Release
Meanwhile in automated build:
+ project
+ obj
+ Release
Can anyone explain how they got that difference? I am suspecting nuget restoration is the culprit for this but I don't have a proof for this or something.
As @vasily.sib suggested, this is just the script content:
cd msbuild_path
msbuild.exe project_path\project.sln /t:Clean;Build /p:Configuration=Release;Platform="Any CPU"