MvvmCross. It is not possible to add a custom dll reference to MvvmCross.Core library project -


i'm trying add dll mvvmcross.core library project. included namespaces cannot resolved reason, when i'm trying refer namespaces 1 of viewmodels. in object viewer can see included namespaces.

when refer same dll mvvmcross.droid project not see problem.

unfortunate not have source code need refer dll.

i have tried both on vs2013 , xamarin studio

is mvvmcross.core project portable class library? if won't able reference it.

what can create platform specific project, mything.droid, , reference .dll. in mvvmcross.core project, create interface, imythingservice. in mything.droid create, mythingservice implements imythingservice , stuff want. can reference imythingservice , call dostuff() mvvmcross.core project.

you can use plugin model provided mvvmcross accomplish this.

public class mythingservice : imythingservice     {         public void dostuff()         {         }     }      public interface imythingservice     {         void dostuff();     } 

Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -