I created a Portable Class Library since I want to share this with my web site as well as Windows Store Apps. So I created a simple Portable class library project named TaxCalc and added one classs with one simple method. This project compiled. I then went to my ASP.Net web site and added a reference to TaxCalc. TaxCalc shows up under the references correctly. On the C# codebehind of a web page, I declare my namespaces and I tried adding using TaxCalc; But I get an error saying not found. What am I doing wrong? I never used the portable class library before. Any idea what I'm missing?
↧