从代码中读取项目设置

发布于 2024-11-27 02:39:30 字数 63 浏览 0 评论 0原文

我们想知道是否可以从projectfile.vbproj.user 文件中读取值或使用它将值编译到二进制文件中。

We would like to know if it is possible to read values from the projectfile.vbproj.user file or use it to compile values into the binaries.

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

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

发布评论

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

评论(1

戈亓 2024-12-04 02:39:30

vbproj.user 文件包含 Visual Studio 的首选项,并且不构成已编译应用程序的一部分。

如果您想以这种方式从中提取值,则需要在构建期间解析它并生成一个包含在应用程序中的文件。

您可以考虑使用 T4 template 来解析文件并为您生成 VB 类。

但首先要考虑这是否是正确的做法。该文件的目的是保留开发时设置,而不是运行时设置。

The vbproj.user file contains preferences for Visual Studio and doesn't form part of the compiled application.

If you want to extract values from it in this way, you need to parse it during the build and generate a file that is included in your application.

You could consider using a T4 template to parse the file and generate a VB class for you.

But consider if it's the right thing to do in the first place. The intent of the file is to persist development-time settings, not runtime ones.

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