0

Is it possible to use VS 2010 to create a Setup project for a C# VS 2012 Windows Service? I clicked Add Project Output and in the popup there is no where i can attach the 2012 service project.

Is there any tutorial i can find where it shows how to do this ?

Thanks !

user636525
  • 3,180
  • 9
  • 38
  • 51

2 Answers2

0

VS2012 does not support the project setups that VS2010 has. you can however enable installsheild LE (Lite Edition) for VS2012 and do it this way:

How do i create an InstallShield LE project to install a windows service?

Community
  • 1
  • 1
Ahmed ilyas
  • 5,722
  • 8
  • 44
  • 72
  • Thank you ! I have seen some stackoverflow articles that suggested to use VS 2010 for setup. I will try InstallShield . – user636525 Sep 21 '13 at 00:16
0

I am not sure how involved your project is and what Framework it is targeting. You will not be able to use the Wizard, or add a 2012 Project Output in VS2010 because it will not recognize it. You should be able to create a blank installer and add the executable and all ancillary files to it, and it should work. I would be more likely to invest the time to learn WIX or another installer that will be supported.

Mark Hall
  • 53,938
  • 9
  • 94
  • 111