从代码中读取项目设置
我们想知道是否可以从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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.