├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ask-a-question.md │ └── bug_report.md ├── dependabot.yml └── workflows │ ├── auto-merge-dependabot.yml │ └── dotnet.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app-auth ├── GraphAppOnlyTutorial │ ├── GraphAppOnlyTutorial.csproj │ ├── GraphHelper.cs │ ├── Program.cs │ ├── Settings.cs │ └── appsettings.json ├── README.md └── RegisterAppForAppOnlyAuth.ps1 ├── qs.json ├── stylecop.json └── user-auth ├── GraphTutorial ├── GraphHelper.cs ├── GraphTutorial.csproj ├── Program.cs ├── Settings.cs └── appsettings.json ├── README.md ├── RegisterAppForUserAuth.ps1 └── version /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app-auth/GraphAppOnlyTutorial/GraphAppOnlyTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/GraphAppOnlyTutorial/GraphAppOnlyTutorial.csproj -------------------------------------------------------------------------------- /app-auth/GraphAppOnlyTutorial/GraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/GraphAppOnlyTutorial/GraphHelper.cs -------------------------------------------------------------------------------- /app-auth/GraphAppOnlyTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/GraphAppOnlyTutorial/Program.cs -------------------------------------------------------------------------------- /app-auth/GraphAppOnlyTutorial/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/GraphAppOnlyTutorial/Settings.cs -------------------------------------------------------------------------------- /app-auth/GraphAppOnlyTutorial/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/GraphAppOnlyTutorial/appsettings.json -------------------------------------------------------------------------------- /app-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/README.md -------------------------------------------------------------------------------- /app-auth/RegisterAppForAppOnlyAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/app-auth/RegisterAppForAppOnlyAuth.ps1 -------------------------------------------------------------------------------- /qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/qs.json -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/stylecop.json -------------------------------------------------------------------------------- /user-auth/GraphTutorial/GraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/GraphTutorial/GraphHelper.cs -------------------------------------------------------------------------------- /user-auth/GraphTutorial/GraphTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/GraphTutorial/GraphTutorial.csproj -------------------------------------------------------------------------------- /user-auth/GraphTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/GraphTutorial/Program.cs -------------------------------------------------------------------------------- /user-auth/GraphTutorial/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/GraphTutorial/Settings.cs -------------------------------------------------------------------------------- /user-auth/GraphTutorial/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/GraphTutorial/appsettings.json -------------------------------------------------------------------------------- /user-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/README.md -------------------------------------------------------------------------------- /user-auth/RegisterAppForUserAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-dotnet/HEAD/user-auth/RegisterAppForUserAuth.ps1 -------------------------------------------------------------------------------- /user-auth/version: -------------------------------------------------------------------------------- 1 | 1.3 2 | --------------------------------------------------------------------------------