I create universal project type in vs 2013 for 8.1. In windows phone project i added reference to WriteableBitmapEx via nuget. In references i see WriteableBitmapEx.WinRT. I write code which creates WriteableBitmap from content (use image in project with Content and Dont copy properties). Next i create Image and set source to WriteableBitmap and add image in LayoutRoot grid. In emulator i see this image, thats ok! Next i call DrawLine method from WriteableBitmap and call WriteableBitmap.Invalidate(). I dont see my line...why?
1) Why reference name ends with .WinRT, is this normal? 2) Why invalidate method not work?
NOTE: in windows phone 8 project (not universal) all works properly! And reference name not ends with .WinRT.
Help me please!