Creating an executable

  • Thread starter Thread starter Jon Paskett
  • Start date Start date
Every time you compile, you create an executable ( Well Portable Executable
(PE) ) which contains Intermediate Language (IL) and MetaData about the
program. This runs on the Common Language Runtime (CLR), and JIT;ed into
machine code at execution time.

So if you were looking for a stand alone .Exe, there isnt one.

HTH
 
Jon Paskett said:
Where is there a walkthru for creating an exe?

What sort of "exe" do you want to create?

Console Application?
Windows Forms Application?
Windows Service?
(many, many others ... )

Regards,
Phill W.
 
Jon,

Jon Paskett said:
Where is there a walkthru for creating an exe?

What tools do you want to use? The command line compiler "vbc.exe"? Visual
Studio .NET?
 
Thanks all,

I found the walk thru in Visual Studio .Net; deploying a Windows
Application. It got me started.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top