我正在使用Visual Studio 2010 SP1。
我首先尝试的是:
- 从开始菜单打开 Visual Studio 控制台工具
- 导航到项目文件夹(其中已经包含一个可执行文件)
- 跑:
msbuild myproject.sln or msbuild myproject.sln /p:Configuration=Release
- 这构建成功,但我找不到要运行的可执行文件
- 我尝试的第二件事是上面的步骤 1 和 2
- 跑步:
devenv myproject.sln /Build and devenv myproject.sln /Run
- 这有点工作,但它似乎打开了 IDE 来运行构建
- 重点是完全避免使用 ide。
现在,如何在不打开 IDE 的情况下构建和运行解决方案?
- - - - - - - - - - - - - 固定的 - - - - - - - - - - - - --------
问题是我在错误的地方寻找可执行文件(菜鸟错误)。我最终使用了这个批处理文件:
msbuild myproj.sln /p:configuration=Release
cd (("Path to executable" usually in the Debug/Release Folder))
myExecutableName
cd (("Path to original folder"))