shariq_khan
shariq_khan

Reputation: 681

how to run visual studio project in other computer which does not have visual studio installed in it

i have made a visual studio project which is quite small. i want that it should be deployed in the customer's PC so i want to make a exe file of that. so that it should be installed and used correctly. how can i make an .exe or .msi file. i have just heard it some where i dont know how to. because i am a newbie i dont know much about visual studio i thougt it will help me to make exe file but after production i got i cant deploy my project as i have .cs files of forms. i am using visual studio 2010 ultimate and building project on c# language can i make .msi or .exe file so that it can be run in other computer also? and if yess then whats procedure

Upvotes: 0

Views: 7678

Answers (2)

kamran goher
kamran goher

Reputation: 1

  1. Install database on client computer.
  2. Install your project on computer.
  3. Make ODBC on computer.

    a. make DNS with sql server.

    b. make microsoft access driver.

Upvotes: 0

SLaks
SLaks

Reputation: 887215

When you compile your project, you will find .exe and (probably) .dll files in bin\Debug and bin\Release.

You can copy those files to a different computer and run the program, as long as it has the correct version of the .Net framework installed.

Upvotes: 4

Related Questions