ASP.NET 服务器控件 - 如何添加 AssemblyInfo 文件
我在一些在线教程中注意到,当添加新的 ASP.NET 服务器控件时,它会自动包含 Properties 文件夹(包含 AssemblyInfo.cs)和 References 文件夹。
在创建 C# 服务器控件时,这对我来说效果很好,但在 VB.NET 中,我只得到一个模板 .vb 文件和一个项目文件。
这是为什么?如何获取 AssemblyInfo.vb 文件?
I've noticed on a few tutorials online that when a new ASP.NET Server Control is added, it automatically includes Properties folder (containing AssemblyInfo.cs) and a References folder.
This works fine for me when creating a C# Server Control, but in VB.NET I just get a template .vb file and a Project file.
Why is this and how can I get an AssemblyInfo.vb file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为每个项目创建AssemblyInfo.vb 文件。默认情况下,它不会显示在解决方案/项目资源管理器中。
要在 Visual Studio 中查看此文件和其他文件,请单击项目 >> 显示所有文件菜单项。
AssemblyInfo.vb file is created for every project. By default it is not displayed in the Solution/Project Explorer.
To view this file and others in Visual Studio click Project >> Show All Files menu items.