如何使用 fsc.exe (F#) 或 csc.exe (C#) 包含 app.config 文件?

发布于 2024-11-08 16:14:21 字数 272 浏览 0 评论 0原文

我有一个使用 app.config 文件的控制台应用程序,但是我不知道如何将其包含在命令行参数中,以便当我使用 fsc.exe 以编程方式编译它时输出将创建 Program.exe.config。现在我的解决方法是将 app.config 重命名为 Program.exe.config 并将其复制到与 Program.exe 相同的输出位置。我需要的是 fsc.exe 命令行参数来执行此操作,但是我怀疑 csc.exe 的功能与 fsc.exe 的功能相同或非常接近,因此,如果您知道 csc.exe 中的内容,我会尝试一下。

I have a console application that uses an app.config file however I can't figure out how to include that in the command line parameters so that the output will create the Program.exe.config when I compile it programmatically with fsc.exe. Right now my workaround is just to rename app.config to Program.exe.config and copy it to the same output location as Program.exe. What I need is the fsc.exe command line arguments to do this, however I suspect that csc.exe will have something identical or quite close to what fsc.exe does, so if you know what it is in csc.exe I'll try it out.

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

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

发布评论

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

评论(1

北方的巷 2024-11-15 16:14:21

我认为 F# 编译器没有任何内置支持将 app.config 复制到输出目录。只需复制&重命名文件应该可以解决问题 - 没有什么更复杂的事情发生。

如果您想自动完成此操作,您可以添加一个构建后事件,如下所示:

copy $(ProjectDir)app.config $(TargetDir)$(TargetFileName).config

I don't think the F# compiler has any built in support for copying app.config to the output directory. Simply copying & renaming the file should do the trick - there is nothing more complicated going on.

If you want to get this done automatically, you can add a post-build event like this:

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