Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - Publish .exe

Tags:

c#

build

exe

I am just about done with my first Visual C#.net application, and I'm trying to publish it.

When I go to Project > Publish, all I seem to be able to make is a set of folders and files containing:

  • Application Files (File folder)
  • setup (Application) APP NAME
  • (ClickOnce Application)

Is there any way that I can specify my deployment as a single file that contains all of the required install data?

like image 808
Josh Avatar asked Oct 28 '25 23:10

Josh


1 Answers

do not use Publish, use the File -> new project -> Setup Wizard to create a setup.exe file which will install your windows application.

like image 75
Davide Piras Avatar answered Oct 30 '25 13:10

Davide Piras