From 4ebacda62d14814af3f83e24bbadc8433d9cb966 Mon Sep 17 00:00:00 2001 From: Matt Cooley Date: Tue, 4 Jan 2022 08:07:24 -0800 Subject: [PATCH] Update build year in settings page to 2022 (#1770) --- src/Calculator/Views/Settings.xaml.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Calculator/Views/Settings.xaml.cs b/src/Calculator/Views/Settings.xaml.cs index b2a54d0..196ee4c 100644 --- a/src/Calculator/Views/Settings.xaml.cs +++ b/src/Calculator/Views/Settings.xaml.cs @@ -23,9 +23,7 @@ namespace CalculatorApp { public sealed partial class Settings : UserControl { - // CSHARP_MIGRATION: TODO: - // BUILD_YEAR was a C++/CX macro and may update the value from the pipeline - private const string BUILD_YEAR = "2021"; + private const string BUILD_YEAR = "2022"; public event Windows.UI.Xaml.RoutedEventHandler BackButtonClick;