How do I make a build system for Sublime Text 2 to build msbuild?

后端 未结 4 1176
遇见更好的自我
遇见更好的自我 2020-12-23 00:16

I would like to use Sublime Text 2 to build my Visual Studio 2010 solutions.

So far I have this:

Menu item Tools > Build System > New Build System...

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-23 00:41

    The error message is because you did not specify what you wanted to build. See the MSBuild Command Line Reference. At the very least you need to specify a project file:

    MSBuild MySolution.sln
    MSBuild MyProject.csproj
    MSBUild MyMSBuildScript.proj
    

提交回复
热议问题