Publish WPF project with database in SQL Server

1

Good, I have a project that I did in visual studio (WPF) and that is already "finished", this project connects to a database I did with SQL Server Management, my question is how can I "publish" or create an .exe file of this application to be able to install it on another pc and how can I "transfer" the database to that other pc so that it can work correctly, this is already a lot of thanks!

    
asked by Roberto Antonio Rico Palma 17.01.2018 в 19:09
source

1 answer

1

You can create the Configuration Project in the menu

Archive- > New - > Project - > Another Project Type - > Configuration and Implementation - > Visual Studio Installer - > Configuration Project.

Then, in Solution Explorer, you can add an existing project. After adding your project, you can add the output of your program in the File System window you right-click on Application Folder - > Add - > Project output ..., so select your ComboBox Project project.

After adding the output of your project, you can build your configuration project and have your configuration file in your configuration project. For more information you can consult:

Steps to create the configuration and the implementation

Installation

    
answered by 19.01.2018 / 16:13
source