Reputation: 149
I want to install my c# windows application on a client place which does not have .NET framework or SQL server. What files do I need to install in order for the application to work with database and how to create a package?
Upvotes: 1
Views: 1087
Reputation: 39898
You can use ClickOnce deployment for this. With ClickOnce you will give the client an install package that can check for prerequisites and install them if neccesarry. The .NET framework and SqlServer express can be installed this way.
Check the following link for more info: ClickOnce
Upvotes: 0
Reputation: 44595
Create a setup project from Visual Studio and specify in the prerequisitesto include .NET framework and SQL Server Express. these packages will then be included in the setup or I think you can also specify to download automatically on setup execution.
Upvotes: 4