WCF : How to disable WCF Test Client

前端 未结 8 1674
悲哀的现实
悲哀的现实 2020-12-24 02:31

I created a new WCF Application. It has a svc file & a code behind, When I try to debug (F5) then I see the following.

  1. If svc file is open & press F5 t
8条回答
  •  旧巷少年郎
    2020-12-24 03:10

    Open your project properties, go to the Debug tab, under start options you will see something like /client:"WcfTestClient.exe"

    delete that line.

    For a WCF Service Application and WCF Workflow Service Application you need to modify the .csproj.user file. A full write up can be found here.

    The key part is

        
          False
        
    

提交回复
热议问题