Skip to content

Instantly share code, notes, and snippets.

@slodge
Created September 25, 2013 17:59
Show Gist options
  • Select an option

  • Save slodge/6703482 to your computer and use it in GitHub Desktop.

Select an option

Save slodge/6703482 to your computer and use it in GitHub Desktop.
public class MiniSetup
{
public static readonly MiniSetup Instance = new MiniSetup();
public void EnsureInit()
{
if (MvxSimpleIoCContainer.Instance != null)
return;
var ioc = MvxSimpleIoCContainer.Initialise();
var builder = new MvxTouchBindingBuilder();
builder.DoRegistration();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment