wizard : adds ethereum

- allows to perform lookups on nameservice.
- allows to register on nameservice.

Change-Id: I81a790cebc91ed5c27c828fda0f5f6eadbc82c1a
Tuleap: #790
diff --git a/MainPage.xaml.cpp b/MainPage.xaml.cpp
index e9805bb..191002e 100644
--- a/MainPage.xaml.cpp
+++ b/MainPage.xaml.cpp
@@ -85,11 +85,11 @@
                        Platform::Object^>(this, &MainPage::DisplayProperties_DpiChanged));

 

     visibilityChangedEventToken = Window::Current->VisibilityChanged +=

-        ref new WindowVisibilityChangedEventHandler(this, &MainPage::Application_VisibilityChanged);

+                                      ref new WindowVisibilityChangedEventHandler(this, &MainPage::Application_VisibilityChanged);

     applicationSuspendingEventToken = Application::Current->Suspending +=

-        ref new SuspendingEventHandler(this, &MainPage::Application_Suspending);

+                                          ref new SuspendingEventHandler(this, &MainPage::Application_Suspending);

     applicationResumingEventToken = Application::Current->Resuming +=

-        ref new EventHandler<Object^>(this, &MainPage::Application_Resuming);

+                                        ref new EventHandler<Object^>(this, &MainPage::Application_Resuming);

 }

 

 void

@@ -404,9 +404,9 @@
     newSession->Reason = ExtendedExecutionReason::SavingData;

     newSession->Description = "Extended Execution";

     sessionRevokedToken = (newSession->Revoked += ref new TypedEventHandler<Object^,

-        ExtendedExecutionRevokedEventArgs^>(this, &MainPage::SessionRevoked));

+                           ExtendedExecutionRevokedEventArgs^>(this, &MainPage::SessionRevoked));

     return create_task(newSession->RequestExtensionAsync())

-        .then([=](ExtendedExecutionResult result){

+    .then([=](ExtendedExecutionResult result) {

         try {

             switch (result)

             {