MSBUILD : error MSB1008: Only one project can be specified

前端 未结 18 1013
眼角桃花
眼角桃花 2021-01-30 09:39

Why am I getting the following Build error?

C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\msbuild.exe C:\\Code\\EduBenesysNET\\EduBenesysNET\\EduBenesysNET.vbproj /t:pu         


        
18条回答
  •  甜味超标
    2021-01-30 10:17

    On Git Bash I had to specify the parameters with double slashes like:

    MSBuild.exe "Path\to\Solution.sln" //p:Platform="x86" //p:Configuration=Release //p:AppxBundlePlatforms="x86" 
    

提交回复
热议问题