build .net solution from batch file

前端 未结 3 1628
说谎
说谎 2021-02-02 15:36

I have a solution file comprising of 15 projects using a few third party dll references. I want to be able to build the solution from a batch file. What is the best way to do th

3条回答
  •  余生分开走
    2021-02-02 16:23

    Run msbuild - for example:

    msbuild MySolution.sln /p:Configuration=Release /p:Platform="Any CPU"
    

提交回复
热议问题