How do I target a specific .NET project within a Solution using MSBuild from VS2010?

后端 未结 3 2182
Happy的楠姐
Happy的楠姐 2020-12-14 09:39

I have an MSBuild command line that can build an entire solution. It looks something like this:

msbuild SomeSolution.sln /p:Configuration:CustomDebug;Platform=Our

3条回答
  •  隐瞒了意图╮
    2020-12-14 10:28

    You can use the following commandline for building your project using msbuild from commandline

    msbuild Solution.sln /p:Configuration=Release;Platform=x86 /t:ProjectName:Rebuild
    

提交回复
热议问题