I am new on Windows Phone development. I m using ExifLib in my code. When i am debug my project it runs good. But when I am trying to release it is always gives my that error, Error 1 The type or namespace name 'ExifLib' could not be found (are you missing a using directive or an assembly reference?)
How can I solve it or release my project?
JpegInfo info = ExifReader.ReadJpeg(picturestrem, filename);
above line gives me an error on JpegInfo and ExifReader.ReadJpeg
Make sure that you have added ExifLib.dll
in your release mode. And make sure you have used namespace
.
using Windows.Storage;
using ExifLib;