I have a project in .NET 2.0 (let's call it Project A). I wanted to use WCF, so I created another project (in .NET 3.0, let's call it Project B) where I put all WCF logic, so all I do in my Project A is calling some method from class from Project B. When I add reference to Project B, Project A does not see it and I get warnings:
The primary reference "Project B/Some.dll" could not be resolved because it has an indirect dependency on the framework assembly "System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=XXX" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0".
How can I make this work?