Compiling a .vbproj or .csproj project file without Visual Studio

前端 未结 6 2018
梦谈多话
梦谈多话 2020-12-29 23:47

Is there a way to compile a .vbproj or .csproj project file directly, just like Visual Studio does?

When you compile in Visual Studio, the \"output\" window shows th

6条回答
  •  鱼传尺愫
    2020-12-30 00:33

    MSBuild is the easiest way to go. For instance:

    msbuild /property:Configuration=Release MyFile.vbproj
    

提交回复
热议问题