Home > database >  Visual Studio Setup Project Prerequisites are not installing
Visual Studio Setup Project Prerequisites are not installing

Time:10-15

I hope you all are well!

Visual Studio 2017 - WIN-FORM - C#

I added a Setup Project to my app. I also selected as prerequisites SQL Server 2019 Express LocalDB:

enter image description here

The installer installs the app just fine but does not install the prerequisites SQL Server 2019 Express LocalDB. There are no popup error messages displayed or any in the Event Viewer.

If I download SqlLocalDB, I install it just fine and my app works. But I would like to have it install during the setup installation if it is needed (auto detect).

I tried on various computers and it also doesn't install SqlLocalDB.

I cannot find anything on the Internet that would explain why setup is not installing the prerequisites.

Any suggestion is appreciated.

Regards,

CodePudding user response:

Setup projects are no more supported starting from VS 2019. So if it's a new project - you might want to try WiX toolset project. There you can add checking of prerequisites to be installed on the MSI level, or you can create your Bootstrapper bundle, which will contain installation for both SQL Server and your own app

CodePudding user response:

The issue was that I was using the .MSI instead of the .EXE file to install the app. Using the .EXE did in indeed prompt the user to installSqlLocalDB.

Solution here:

  • Related