ananth_adroit
ananth_adroit

Reputation: 347

deployment of windows application

I am new to C#, and I've developed a windows application (c#) that uses a SQL Server database. I want to distribute my application to a client machine, but I'm not sure how to do this. I've searched on Google to try and find a solution, but nothing I wasn't able to find anything.

What's the correct way to package my application for installation on the client machine?

Upvotes: 0

Views: 322

Answers (3)

Wouter de Kort
Wouter de Kort

Reputation: 39898

If you want to deploy an WinForms application an easy way to do this is to use ClickOnce deployment. You can offer the ClickOnce deployment app to the client computers and also use it to distribute updates.

The following link explains ClickOnce

Upvotes: 2

Patrick Jones
Patrick Jones

Reputation: 1926

You might consider using a setup project, giving the end user the option to configure the app at installation time.

http://msdn.microsoft.com/en-us/library/wx3b589t.aspx

Upvotes: 1

Nick Rolando
Nick Rolando

Reputation: 26177

asp.net is for web development. You should probably look into WPF:

http://windowsclient.net/wpf/

Upvotes: 0

Related Questions