msbuild -p:outputdir=c:\mydir being ignored

后端 未结 4 857
星月不相逢
星月不相逢 2021-02-03 17:05

I\'m running msbuild from the command line with the following:

msbuild mysolution.sln -p:outputdir=c:\\mydir

When I run this, the outputdir is

4条回答
  •  悲哀的现实
    2021-02-03 17:47

    You should use OutputPath and more important you should use the right syntax :

    msbuild mysolution.sln /p:OutputPath=c:\mydir
    

提交回复
热议问题