Reputation: 85
I created one window form application in visual studio 2019. Now I can't find any solution regarding how to create installer for that window form application.
Upvotes: 7
Views: 33561
Reputation: 1147
On visual Studio 2019,
Go to Extensions > Manage Extensions > Online > Search, find, download, and install "Microsoft Visual Studio Installer Projects" extension.
Upvotes: 2
Reputation: 871
You must be install "Microsoft Visual Studio Installer Projects" extension from visual studio extensions menu. This process need after Visual Studio 2017.
Extension link: https://marketplace.visualstudio.com/items?itemName=VisualStudioClient.MicrosoftVisualStudio2017InstallerProjects
Upvotes: 7
Reputation: 2082
Using Visual Studio Installer (look @Hans Passant comment for the download).
I will make a simple tutorial:
1 - Right click on Solution of your project > Add > New Project > Write on SearchBar "Setup" > Setup Project > Next > Create;
2 - Application Folder > Add > Project Output > Primary Output;
3 - User's Desktop > Create New Shortcut to Primary Output;
4 - Rename your Shortcut for the name of your App;
5 - User's Program Menu > Create New Shortcut to Primary Output;
6 - Rename your Shortcut for the name of your App;
7 - Application Folder > Add all the files needed for the operation of the application.
Good points:
Upvotes: 13