Reputation: 10578
I got a Windows service installed on my development machine (that I made) and I want to interact with it. For a reason I don't know, each time I start the client, a WCF Service Host pop and said that the address is already in use ... which is true ... but how can I do to NOT start that Windows ?
Is it because my two projects (server and client) are in the same solution ?
Upvotes: 1
Views: 1164
Reputation: 16502
Yes, its because they are in the same solution. Right click on your WCF project > Properties > WCF Options > Uncheck Start "WCF Service Host when debugging another project in the same solution".
Upvotes: 3