diff --git a/8.0/Apps/GameOfLife/GameOfLife.sln b/8.0/Apps/GameOfLife/GameOfLife.sln index 3737f2863..a21b402a6 100644 --- a/8.0/Apps/GameOfLife/GameOfLife.sln +++ b/8.0/Apps/GameOfLife/GameOfLife.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 25.0.1706.8 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34525.116 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameOfLife", "GameOfLife\GameOfLife.csproj", "{236EDA58-32B7-4789-8327-FCF9016E8621}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameOfLife", "GameOfLife\GameOfLife.csproj", "{236EDA58-32B7-4789-8327-FCF9016E8621}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -13,6 +13,7 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {236EDA58-32B7-4789-8327-FCF9016E8621}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {236EDA58-32B7-4789-8327-FCF9016E8621}.Debug|Any CPU.Build.0 = Debug|Any CPU + {236EDA58-32B7-4789-8327-FCF9016E8621}.Debug|Any CPU.Deploy.0 = Debug|Any CPU {236EDA58-32B7-4789-8327-FCF9016E8621}.Release|Any CPU.ActiveCfg = Release|Any CPU {236EDA58-32B7-4789-8327-FCF9016E8621}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection diff --git a/8.0/Apps/GameOfLife/GameOfLife/AboutPage.xaml.cs b/8.0/Apps/GameOfLife/GameOfLife/AboutPage.xaml.cs index fb74ffb42..a256bc1d0 100644 --- a/8.0/Apps/GameOfLife/GameOfLife/AboutPage.xaml.cs +++ b/8.0/Apps/GameOfLife/GameOfLife/AboutPage.xaml.cs @@ -2,10 +2,10 @@ public partial class AboutPage : ContentPage { - public AboutPage() - { - InitializeComponent(); - } + public AboutPage() + { + InitializeComponent(); + } async void OnHyperlinkTapped(object sender, EventArgs args) { @@ -14,7 +14,7 @@ async void OnHyperlinkTapped(object sender, EventArgs args) } async void OnCloseButtonClicked(object sender, EventArgs e) - { - await Navigation.PopModalAsync(); - } + { + await Navigation.PopModalAsync(); + } } diff --git a/8.0/Apps/GameOfLife/GameOfLife/GameOfLife.csproj b/8.0/Apps/GameOfLife/GameOfLife/GameOfLife.csproj index 2416af79b..47863a098 100644 --- a/8.0/Apps/GameOfLife/GameOfLife/GameOfLife.csproj +++ b/8.0/Apps/GameOfLife/GameOfLife/GameOfLife.csproj @@ -38,9 +38,6 @@ 6.5 - - false - @@ -62,7 +59,7 @@ - + diff --git a/8.0/Apps/GameOfLife/GameOfLife/MauiProgram.cs b/8.0/Apps/GameOfLife/GameOfLife/MauiProgram.cs index e1aec64c8..a5b4f0764 100644 --- a/8.0/Apps/GameOfLife/GameOfLife/MauiProgram.cs +++ b/8.0/Apps/GameOfLife/GameOfLife/MauiProgram.cs @@ -4,22 +4,22 @@ namespace GameOfLife; public static class MauiProgram { - public static MauiApp CreateMauiApp() - { - var builder = MauiApp.CreateBuilder(); - builder - .UseMauiApp() - .ConfigureFonts(fonts => - { - fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); - fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); - }); + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder + .UseMauiApp() + .ConfigureFonts(fonts => + { + fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); + fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); + }); #if DEBUG - builder.Logging.AddDebug(); + builder.Logging.AddDebug(); #endif - return builder.Build(); - } + return builder.Build(); + } }