0

I'm developing a WCF Service with VS 2012

I'm using IIS Express.

If I run the service the WCF Test Client appears automatically.

I don´t find anything in the VS Options that allow me to turn the Test Client off.

How can I do that?

Rafael
  • 2,413
  • 4
  • 32
  • 54

1 Answers1

0

Project > Right Click > Properties > Debug > Command line Argument

Delete /client:WcfTestClient.exe

enter image description here

Ziaullah Khan
  • 2,020
  • 17
  • 20
  • Sorry, I don't understand. I don't find it. Is it in VS2012? – Rafael Mar 02 '14 at 20:24
  • right click the project go to properties. should see this window. – Ziaullah Khan Mar 03 '14 at 18:01
  • I checked and this line-argument is not there. My solution is composed of: A class library containing the actual service. A Web Site that hosts the service, and a Console Application that consumes the service. I´m studying WCF Services. I don´t see the line argument /client:"WcfTestClient.exe" anywhere – Rafael Mar 03 '14 at 19:55
  • Although I didn´t see it in my actual poroject, I saw it in other projects. Maybe my actual project isn´t a standard one. But I learnt how it´s done anyway. – Rafael Mar 04 '14 at 18:12