简体   繁体   中英

How to run visual studio build in azure devops

在此处输入图像描述 I want to build my solution file in azure devops. I have added this to build pipeline, I see this step doesn't succeed. It tells " MSBUILD: error MSB1008: Only one project can be specified." I suspect I am making some mistake in specifyning msbuild args

msbuild $(Build.SourcesDirectory)\ansysfnonet\ansysfnonet.vs2017.sln /t:$(Build.SourcesDirectory)\ansysfnonet\ansysfnonet.csproj:Rebuild;

I tried specify only proj file as msbuild arg it didn't work for me

I tried without specifying msbuild it throws me whole lot of errors.

Someone please help me, why I am failing in this step and how to solve this error.

Thanks在此处输入图像描述

You don't need to specify an msbuild command line in the MSBuild Arguments field. You need to specify any additional MSBuild parameters beyond the defaults.

Clear that field. That should fix the problem you're encountering.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM