Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

compile vb.net code to dll

Status
Not open for further replies.

adugenet

Technical User
Feb 24, 2007
48
US
can someone help me how I can to compile my simple code using SDK Command Prompt.thanks
 
Hi, depending on your structure, something like this:
Code:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\vbc /t:library /out:.\Generic1.dll /r:system.dll /nologo OraIstore.vb
Note:all one line....

In my system that compiles the .vb code into a dll called Generic1 in the same directory as the .vb code..you can then move it as needed..

[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Hi,
Just a follow up..That code compiles the.vb as a Library..You needs may vary.

Read the docs on using the .NET compilers
( vbc, vcc, aspnet_compiler)

and what parameters each require/use..



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top