Skip to content

Instantly share code, notes, and snippets.

@dustin-graham
Last active August 29, 2015 13:56

Revisions

  1. dustin-graham revised this gist Feb 27, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions App.cs
    Original file line number Diff line number Diff line change
    @@ -1,13 +1,13 @@
    using System;
    using Cirrious.MvvmCross.ViewModels;

    namespace MyRep
    namespace MyRep.Core
    {
    public class App : MvxApplication
    {
    public App ()
    {
    RegisterAppStart (new AddressQueryViewModel ());
    RegisterAppStart (new MvxAppStart<AddressQueryViewModel>());
    }
    }
    }
  2. dustin-graham created this gist Feb 26, 2014.
    14 changes: 14 additions & 0 deletions App.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    using System;
    using Cirrious.MvvmCross.ViewModels;

    namespace MyRep
    {
    public class App : MvxApplication
    {
    public App ()
    {
    RegisterAppStart (new AddressQueryViewModel ());
    }
    }
    }