Click here to Skip to main content
15,881,381 members
Articles / Programming Languages / Visual Basic

Compile VB.NET code without Microsoft.VisualBasic.dll

Rate me:
Please Sign up or sign in to vote.
2.97/5 (11 votes)
1 Aug 2006CPOL2 min read 105.5K   20   20
Compile VB.NET code without an implicit reference to Microsoft.VisualBasic.dll.

Introduction

Let's say you are developing a program using Visual Basic .NET (2003 or 2005), and you wish to make sure that your code is using "pure" .NET and is VB6 free.

Background

As you all know, Visual Basic .NET enables you to code using VB 6 legacy syntax and keywords. For example, we can use CInt, Mid, InStr etc. The implementation of the compatibility layer is at the Microsoft.VisualBasic.dll library.

Behind the scene

When compiling your program, using either the Visual Studio IDE or the vbc command line compiler, Microsoft.VisualBasic.dll is added as a reference, and there is no direct approach of removing this reference. The official (and quite not reasonable) solution to the problem is to add the -sdkpath command line option to the vbc (you cannot set this option in a VB Visual Studio project). Copy the .NET platform assemblies that are required by your project references, into a different directory, and build your program from the command line, having the -sdkpath pointing to that directory.

Behind the whole theater

There is an undocumented vbc command line option -novbruntimeref, which you can use (at your own risk :), as an alternative to -sdkpath. Adding -novbruntimeref excludes the implicit addition of the Microsoft.VisualBasic.dll reference. For example, compiling with the -novbruntimeref option will fail if you will use Mid instead of Substring.

Now, your compilation is VB6 free. And don't get me wrong, VB was a great friend of mine since VB3, and some of my best friends are ... well, you got the point.

Should I stop using the Microsoft.VisualBasic namespace?

Yes and No.

No - Productivity. If you wish to parse strings using the VB6 Mid instead of Substring, it's your call. After all, this layer was made for enabling you to import VB6 applications into .NET, seamlessly, without code changes.

Yes - Compatibility. For example, VB6 collections are 0 based for read, and -1 based for insertion. Upgraded application that use VB collections through inconsistent implementations of IList may experience some bugs.

Both points are very important. The choice is all yours.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Feng-GUI
United States United States
Rafael Mizrahi is a CTO at Feng-GUI

He is also a hacker contributor at the mono project, and a GarageGeeks member.

Rafael Mizrahi personal blog -
http://rafaelmizrahi.blogspot.com

Comments and Discussions

 
GeneralRe: Prevent the reference being added to new projects ... Pin
Daniel Finger1-Aug-06 1:38
Daniel Finger1-Aug-06 1:38 
GeneralRe: Prevent the reference being added to new projects ... Pin
Daniel Finger1-Aug-06 2:28
Daniel Finger1-Aug-06 2:28 
GeneralRe: Prevent the reference being added to new projects ... Pin
lpellerin6-Sep-06 3:37
lpellerin6-Sep-06 3:37 
GeneralRe: Prevent the reference being added to new projects ... Pin
Rafael Mizrahi6-Sep-06 21:04
Rafael Mizrahi6-Sep-06 21:04 
You are correct. VS2005 IDE solved this problem.

QuestionRe: Prevent the reference being added to new projects ... Pin
nitkapy2k@gmail.com12-Mar-08 21:42
nitkapy2k@gmail.com12-Mar-08 21:42 
GeneralRe: Prevent the reference being added to new projects ... Pin
Rafael Mizrahi12-Mar-08 22:01
Rafael Mizrahi12-Mar-08 22:01 
GeneralRe: Prevent the reference being added to new projects ... Pin
nitkapy2k@gmail.com13-Mar-08 4:29
nitkapy2k@gmail.com13-Mar-08 4:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.