用于 Windows-2000 的 VB.Net 程序
新手问题 - 如何设置 VB.NET 程序以便其在 W2K 上运行?我知道我只能使用 .Net 2.0 或更早版本。有没有一种简单的方法来限制使用/引用哪个.net版本? (我的 XP 开发计算机上有 .Net 3.5)无法将目标计算机更新到 XP、Vista、Windows 7。
Newbie question - How do I set up a VB.NET program so it will run on W2K ? I understand I can only use .Net 2.0 or older. Is there an easy way to limit which .net version is used/referenced ? (I have .Net 3.5 on my XP development computer) Updating target computers to XP, Vista, Windows 7 is NOT an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让您的 Visual Studio VB.NET 项目面向您安装在 2000 工作站上的 .NET Framework 运行时版本。
使用 Visual Studio 2008,您可以选择以 .NET 2.0、3.0 或 3.5 为目标。
对于 VB.NET 项目,(至少)有两种方法可以执行此操作:
首先,在创建项目时。在“新建项目”对话框中,屏幕右上角有一个下拉菜单,您可以从中指定项目的目标框架版本。
其次,您可以通过右键单击项目并选择“属性”来更改版本。单击左侧的“编译”选项卡,然后单击“高级编译选项...”按钮。将出现“高级编译器选项”对话框,您可以在对话框底部的下拉菜单中选择框架版本。 (在 C# 项目中执行此操作当然要容易得多!)
Have your Visual Studio VB.NET project target the .NET Framework runtime version you install on your 2000 workstation.
With Visual Studio 2008 you can choose to target .NET 2.0, 3.0 or 3.5.
There are (at least) two ways to do this for a VB.NET project:
First, when you create a project. On the New Project dialog, there's a drop down on the top right-hand side of the screen from which you can specify the project's target Framework version.
Second, you can change the version by right clicking the project and selecting Properties. Click the Compile tab on the left and then click the 'Advanced Compile Options...' button. The 'Advanced Compiler Options' dialog appears and you can select the framework version on the pulldown on the bottom of the dialog. (it's certainly much easier to do this in a C# project!)