Visual Studio 2022 can't create exe with all dll's

Viewed 84

I have project in .NET 4.8 and i want to publish as one exe file (with all dll) and app.config. When i use VS 2017 i just choose publish and to file. But now i have Publish wizard which create installer (which install i don't know where). When I go to project properties this same wizard.

Edit: this issue absent for .net 6 app

Publish Wizard which I get:

Publish Wizard

P.S. I hope my english wasn't too terrible

1 Answers

Publishing in a single-file app isn't supported by .NET Framework 4.8. This is for .NET core and higher version of launguage.

Related