diff --git a/src/Calculator/Views/TitleBar.xaml.cpp b/src/Calculator/Views/TitleBar.xaml.cpp index a80868f..497c916 100644 --- a/src/Calculator/Views/TitleBar.xaml.cpp +++ b/src/Calculator/Views/TitleBar.xaml.cpp @@ -29,8 +29,11 @@ namespace CalculatorApp Loaded += ref new RoutedEventHandler(this, &TitleBar::OnLoaded); Unloaded += ref new RoutedEventHandler(this, &TitleBar::OnUnloaded); - +#ifdef IsStoreBuild AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"AppName"); +#else + AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"DevAppName"); +#endif //IsStoreBuild } void TitleBar::OnLoaded(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ /*e*/)