pratik
pratik

Reputation: 4479

.net windows application with sql database + create a setup

I have created one windows application in .net 2.0 and it uses SQL database in back end.

I want to create a setup file for this application so that I can install it and run it on any machine which does not have either .NET framework or SQL Server.

Please give me some useful link for this.

Upvotes: 0

Views: 967

Answers (1)

David
David

Reputation: 218798

http://www.google.com/search?q=visual+studio+web+setup+project+tutorial

The SQL Server part is going to be the tricky part. You're not going to be able to package SQL Server with your project. Maybe SQL Lite? I haven't used it, but adjust the above search accordingly and see what you can find.

Upvotes: 1

Related Questions