Visual Studio 构建项目和 运行 post 构建事件
Visual Studio Build Project and run on post build event
我有一个项目,我们称之为 "MyLib.lib"。我有另一个项目测试该项目的所有功能。让我们称之为 "TestMyLib.exe".
我想让它在构建 MyLib.lib 时运行 TestMyLib.exe 作为 post 构建步骤。
所以通常我会添加一个运行 TestMyLib.exe 的 post 构建事件。问题是这个项目也需要构建并且依赖于 MyLib.lib.
所以我有一点循环依赖问题。
I would like to know how to build TestMyLib.exe after MyLib.lib is
built and then run TestMyLib.exe. Both projects are in the same
solution.
msbuild TestMyLib.vcxproj /p:Configuration=$(Configuration) /p:Platform=$(Platform)
在 post 构建事件中的命令行上。
我有一个项目,我们称之为 "MyLib.lib"。我有另一个项目测试该项目的所有功能。让我们称之为 "TestMyLib.exe".
我想让它在构建 MyLib.lib 时运行 TestMyLib.exe 作为 post 构建步骤。
所以通常我会添加一个运行 TestMyLib.exe 的 post 构建事件。问题是这个项目也需要构建并且依赖于 MyLib.lib.
所以我有一点循环依赖问题。
I would like to know how to build TestMyLib.exe after MyLib.lib is built and then run TestMyLib.exe. Both projects are in the same solution.
msbuild TestMyLib.vcxproj /p:Configuration=$(Configuration) /p:Platform=$(Platform)
在 post 构建事件中的命令行上。