0

Dears,

I developed wpf core 3.1 app and want to create installer file, so I use setup installer with visual studio 2019.

this tool create setup file correctly, but when install new setup I got my app as DLL not exe

can anyone help me to get exe file

thanks

shady youssery
  • 430
  • 2
  • 17
  • We use the installer project plugin to create distributables for our game suite. There's no difference between net core and net old other than you won't find the core framework available to choose as a dependency. – Andy Jun 29 '20 at 10:55
  • Depending on how you "publish" the application, you may get a dll instead of a exe. You then call 'dotnet to launch it. What does your publish profile look like? – Rob Goodwin Jun 29 '20 at 12:17
  • you can use [1 file which contains everything](https://dotnetcoretutorials.com/2019/06/20/publishing-a-single-exe-file-in-net-core-3-0/) and copy it to other devices – magicandre1981 Jun 29 '20 at 13:40

1 Answers1

0

thanks guys, I solve this issue with add the output of publish files in setup project and create setup file direct

shady youssery
  • 430
  • 2
  • 17