How do you precompile WCF code so that the WCF code can’t be seen by anyone who has access to the WCF code.
it’s possible to this with ASP.NET code by using the “precompilation” feature. basically, what the precompilation feature does is enable the developper to deploy “binaries” to IIS instead of a folder containing source code.
can this be done with WCF too ?
I think you may be confused about something.
A WCF project is always “pre-compiled”, unless you go out of your way to be unusual. The source files do not need to be deployed in order for the service to operate.
What leads you to believe that your source code needs to be deployed?