Sasan
Sasan

Reputation: 614

How to create custom dependency software for project setup?


I recently build a project with C# .Net 4.5 and now I need to creating setup package for release but before install project must have installed SQL Server Express 2012 LocalDB in destination system.
I tried to use Setup Factory for create dependency module but it has just own software for example: .Net 3.5 4 4.5 and so on.
what should I do for install a software for example SQL Server Express 2012 LocalDB before installed my project?

Upvotes: 0

Views: 1632

Answers (2)

Sasan
Sasan

Reputation: 614

I've already done your suggestion, I put #SUFDIR#\Dependencies\sqlLocalDB\SqlLocaLDB.MSI to name -> properties->files but it didn't works.

But Advanced Installer 11.7.1 solved my problem, I recommended to use this software for create setup.

Upvotes: 2

Arash.Zandi
Arash.Zandi

Reputation: 1627

I had same problem but Solved. in setup factory go dependencies->Advanced->create new module type name and click ok.

Right click on new module name -> properties->files

click to new (sqaure with plus mark)->[...]

add your custom dependencies like SQL Server Express 2012 LocalDB and other

Upvotes: 0

Related Questions