devenv 命令行构建环境变量/参数

发布于 2024-12-11 19:30:06 字数 430 浏览 0 评论 0原文

我目前正在使用一个脚本来构建我的项目,该脚本类似于

devenv.exe mySolution.sln /Rebuild "Release|Win32" /Project "my project"

This is work out Great,我希望对其进行扩展。我想要做的是传递一个环境变量或某种开关来指定语言。换句话说,我想传递一个项目设置作为我的命令的参数。

任何帮助将不胜感激。

仅供参考:我已经阅读了 http://msdn。 microsoft.com/en-us/library/xee0c8y7(v=vs.80).aspx 我找不到任何有用的东西

I am currently using a script to build my project, the script is something like

devenv.exe mySolution.sln /Rebuild "Release|Win32" /Project "my project"

This is working out great, and I am hoping to expand on it. What I want to do is pass an environment variable or some kind of switch to specify the language. In other words, I would like pass a project setting as a parameter of my command.

Any help would be greatly appreciated.

FYI: I have already read http://msdn.microsoft.com/en-us/library/xee0c8y7(v=vs.80).aspx and I couldn't find anythign useful

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尽揽少女心 2024-12-18 19:30:06

不幸的是事情并不那么灵活。

  • msbuild
  • NAnt.exe (以 CruiseControl 闻名)
  • 有经典的 nmake
  • cmake 旨在从平台生成特定于平台的解决方案/makesfiles独立的
  • 存在许多插件(ed?)来从 Visual Studio 项目创建 make 文件。

以上所有人员都更适合该工作

Unfortunately things are not so flexible.

  • msbuild
  • or NAnt.exe (of CruiseControl fame)
  • there is the classic nmake
  • cmake aims to generate platform specific solutions/makesfiles from platform independent ones
  • A number of plugins exist(ed?) to create make files from Visual Studio projects.

All of the above are better suited to that job

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文