FlashDevelop 中单独的调试/发布输出

发布于 2024-11-15 12:42:32 字数 105 浏览 4 评论 0原文

我想要有单独的输出目录用于调试和发布版本。但是,我在 FlashDevelop 中没有看到任何合适的选项。这件事可以实现吗?如果可以的话,该怎么做?如果不是,如何确定当前版本是编译为调试还是发布?

I want to have separate output directories for debug and release builds. However, I don't see any proper option in FlashDevelop. Is this thing achievable, and if so, how to do this? If not, how to determine if current build is compiled as debug or release?

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

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-11-22 12:42:32

如果您在输出路径(项目属性)中添加“-debug”,它将在发布版本中删除。

  • 在发布模式下,bin/app-debug.swfbin-debug/app.swf
  • 将生成为 bin/app.swf

If you add "-debug" in the output path (Project propoerties) it will be removed in release builds.

  • bin/app-debug.swf or bin-debug/app.swf
  • will be generated as bin/app.swf in Release mode
眼角的笑意。 2024-11-22 12:42:32

是的,这是可能的。转到项目->属性->构建。在构建后命令行上,您可以定义构建完成后将发生的情况。您应该制作一个 *.bat 将构建移动到相应的文件夹,或者直接执行命令。

例如,此命令将构建的 *.swf 文件移动到调试或发布文件夹,具体取决于当前构建。

cmd.exe /c "xcopy /Y $(OutputDir)\$(OutputName) $(OutputDir)\$(BuildConfig)\"

如果该目录不存在,它将创建它。

希望这有帮助

Yes, it's possible. Go to Project->Properties->Build. On the Post-Build Command Line, you can define what will happen after the build is complete. You should make a *.bat that will move the build to the corresponding folder, or execute the command directly.

For example, this command moves the built *.swf file to a debug or release folder, depending on the current build.

cmd.exe /c "xcopy /Y $(OutputDir)\$(OutputName) $(OutputDir)\$(BuildConfig)\"

If the directory doesn't exists, it will create it.

Hope this helps

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