Hide the annoying WCF Test Client

WCF Test Client

The WCF Test Client can be quite a useful tool when developing .Net web services using Visual Studio, however sometimes you don’t need it automatically launching when you start your project … it gets quite annoying!

 

WCF Test Client Screenshot

 

How can I disable it?

You can disable it through the *.csproj.user file of your web service project.

First, close your solution in Visual Studio. Then add the entry EnableWcfTestClientForSVC into your *.csproj.user file. Then re-open your solution, the WCF Test Client shouldn’t launch anymore when you start your Visual Studio project.

  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{45456-65df-df5s-9384-4546464599}">
        <WebProjectProperties>
		  <EnableWcfTestClientForSVC>False</EnableWcfTestClientForSVC>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
Shane Bartholomeusz

One thought on “Hide the annoying WCF Test Client

Leave a Reply