gitextract_138d49e_/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── project.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── setup.md ├── templates/ │ ├── dotnet-blazor-server-app-microsoft-graph/ │ │ ├── .vscode/ │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── App.razor │ │ ├── BlazorSample.csproj │ │ ├── Data/ │ │ │ ├── WeatherForecast.cs │ │ │ └── WeatherForecastService.cs │ │ ├── Pages/ │ │ │ ├── Counter.razor │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── FetchData.razor │ │ │ ├── Index.razor │ │ │ ├── ShowProfile.razor │ │ │ └── _Host.cshtml │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── Shared/ │ │ │ ├── LoginDisplay.razor │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ ├── NavMenu.razor.css │ │ │ └── SurveyPrompt.razor │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── setup.ps1 │ │ ├── setup.sh │ │ └── wwwroot/ │ │ └── css/ │ │ ├── open-iconic/ │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font/ │ │ │ └── fonts/ │ │ │ └── open-iconic.otf │ │ └── site.css │ ├── dotnet-console-app-microsoft-graph/ │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── README.md │ │ ├── dotnet-console-microsoft-graph.csproj │ │ ├── setup.ps1 │ │ └── setup.sh │ ├── dotnet-core-mvc-web-app-microsoft-graph/ │ │ ├── NETCoreMVCwithMSGraph/ │ │ │ ├── .config/ │ │ │ │ └── dotnet-tools.json │ │ │ ├── Controllers/ │ │ │ │ └── HomeController.cs │ │ │ ├── Models/ │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── NETCoreMVCwithMSGraph.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties/ │ │ │ │ ├── launchSettings.json │ │ │ │ ├── serviceDependencies.json │ │ │ │ └── serviceDependencies.local.json │ │ │ ├── Views/ │ │ │ │ ├── Home/ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ └── site.css │ │ │ ├── js/ │ │ │ │ └── site.js │ │ │ └── lib/ │ │ │ ├── bootstrap/ │ │ │ │ ├── LICENSE │ │ │ │ └── dist/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.rtl.css │ │ │ │ └── js/ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.esm.js │ │ │ │ └── bootstrap.js │ │ │ ├── jquery/ │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist/ │ │ │ │ └── jquery.js │ │ │ ├── jquery-validation/ │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist/ │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery-validation-unobtrusive/ │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ ├── NETCoreMVCwithMSGraph.sln │ │ └── README.md │ ├── dotnet-maui-app-microsoft-graph/ │ │ ├── MAUIwithMSGRaph/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AppShell.xaml │ │ │ ├── AppShell.xaml.cs │ │ │ ├── GraphService.cs │ │ │ ├── MAUIwithMSGRaph.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── MauiProgram.cs │ │ │ ├── Platforms/ │ │ │ │ ├── Android/ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── MainApplication.cs │ │ │ │ │ └── Resources/ │ │ │ │ │ └── values/ │ │ │ │ │ └── colors.xml │ │ │ │ ├── MacCatalyst/ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Program.cs │ │ │ │ ├── Tizen/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── tizen-manifest.xml │ │ │ │ ├── Windows/ │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ └── app.manifest │ │ │ │ └── iOS/ │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ └── Program.cs │ │ │ ├── Properties/ │ │ │ │ └── launchSettings.json │ │ │ └── Resources/ │ │ │ ├── Raw/ │ │ │ │ └── AboutAssets.txt │ │ │ └── Styles/ │ │ │ ├── Colors.xaml │ │ │ └── Styles.xaml │ │ ├── MAUIwithMSGRaph.sln │ │ ├── README.md │ │ ├── setup.ps1 │ │ └── setup.sh │ └── dotnet-uwp-app-microsoft-graph/ │ ├── README.md │ ├── UWP-app-MSGraph/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── TokenProvider.cs │ │ └── UWP-app-MSGraph.csproj │ ├── UWP-app-MSGraph.sln │ ├── setup.ps1 │ └── setup.sh └── top-scenarios.md