sane
sane

Reputation: 31

How do I create an .exe file in Visual Studio?

I cant wrap my head around this. If I try to build I just get a dll, but I want a exe!

Upvotes: 2

Views: 7329

Answers (2)

Lex F.
Lex F.

Reputation: 51

Try using "Advanced Installer" to create a .exe or .msi installer that creates a .exe launcher. I hope this helped!

Upvotes: 0

SteveCinq
SteveCinq

Reputation: 1973

If you have created a project using type Class Library, you will get a dll. Try creating a new project of type, for example, Windows Form App. When you compile it, you will end up with an exe file.

The Microsoft documentation has all the info you need.

Upvotes: 4

Related Questions