Click here to Skip to main content
Click here to Skip to main content

Compile VB.NET code without Microsoft.VisualBasic.dll

By , 1 Aug 2006
 

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)

About the Author

Rafael Mizrahi
Chief Technology Officer Feng-GUI
United States United States
Member
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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
NewsMicrosoft now released this feature in VB9 ORCASmemberRafael Mizrahi12 Jun '07 - 0:37 
Questionwhat happen when I use DirListBox in c#memberDo.It11 Apr '07 - 1:00 
GeneralYou people need to calm down [modified]memberLuharVB25 Jan '07 - 7:01 
AnswerRe: You people need to calm downmemberRafael Mizrahi25 Jan '07 - 7:26 
LuharVB, thank for your support Smile | :)
as a fighter against language racism, (and a programmer of more than 5 languages) I value VB and most of the languages by the purpose of requirements and not by prejudging.
thanks again.
Newsnovbruntimeref compiler optionmemberRafael Mizrahi4 Aug '06 - 0:10 
GeneralWrong reasonmemberjwelch23 Aug '06 - 4:42 
QuestionWhy?memberjwelch21 Aug '06 - 4:10 
GeneralRe: Why?memberAnthony Missico3 Aug '06 - 9:01 
AnswerRe: Why? [modified]memberMichel Posseth1 Aug '06 - 22:51 
General[Message Deleted]memberRafael Mizrahi1 Aug '06 - 23:07 
GeneralRe: Why?memberMichel Posseth1 Aug '06 - 23:36 
GeneralRe: Why? [modified]memberAnthony Missico3 Aug '06 - 9:06 
GeneralPrevent the reference being added to new projects ...memberDuncan Edwards Jones28 Jul '06 - 6:47 
GeneralRe: Prevent the reference being added to new projects ...memberdfinger1 Aug '06 - 1:38 
GeneralRe: Prevent the reference being added to new projects ...memberDaniel Finger1 Aug '06 - 2:28 
GeneralRe: Prevent the reference being added to new projects ...memberlpellerin6 Sep '06 - 3:37 
GeneralRe: Prevent the reference being added to new projects ...memberRafael Mizrahi6 Sep '06 - 21:04 
QuestionRe: Prevent the reference being added to new projects ...membernitkapy2k@gmail.com12 Mar '08 - 21:42 
GeneralRe: Prevent the reference being added to new projects ...memberRafael Mizrahi12 Mar '08 - 22:01 
GeneralRe: Prevent the reference being added to new projects ...membernitkapy2k@gmail.com13 Mar '08 - 4:29 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 1 Aug 2006
Article Copyright 2006 by Rafael Mizrahi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid