├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ask-a-question.md │ └── bug_report.md ├── dependabot.yml ├── policies │ └── resourceManagement.yml └── workflows │ ├── auto-merge-dependabot.yml │ └── msbuild.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── GraphTutorial ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── CalendarPage.xaml ├── CalendarPage.xaml.cs ├── GraphDateTimeTimeZoneConverter.cs ├── GraphTutorial.csproj ├── GraphTutorial.sln ├── HomePage.xaml ├── HomePage.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── NewEventPage.xaml ├── NewEventPage.xaml.cs ├── OAuth.resw.example ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── LICENSE ├── README.md └── SECURITY.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GraphTutorial/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/App.xaml -------------------------------------------------------------------------------- /GraphTutorial/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/App.xaml.cs -------------------------------------------------------------------------------- /GraphTutorial/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/StoreLogo.png -------------------------------------------------------------------------------- /GraphTutorial/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /GraphTutorial/CalendarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/CalendarPage.xaml -------------------------------------------------------------------------------- /GraphTutorial/CalendarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/CalendarPage.xaml.cs -------------------------------------------------------------------------------- /GraphTutorial/GraphDateTimeTimeZoneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/GraphDateTimeTimeZoneConverter.cs -------------------------------------------------------------------------------- /GraphTutorial/GraphTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/GraphTutorial.csproj -------------------------------------------------------------------------------- /GraphTutorial/GraphTutorial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/GraphTutorial.sln -------------------------------------------------------------------------------- /GraphTutorial/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/HomePage.xaml -------------------------------------------------------------------------------- /GraphTutorial/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/HomePage.xaml.cs -------------------------------------------------------------------------------- /GraphTutorial/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/MainPage.xaml -------------------------------------------------------------------------------- /GraphTutorial/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/MainPage.xaml.cs -------------------------------------------------------------------------------- /GraphTutorial/NewEventPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/NewEventPage.xaml -------------------------------------------------------------------------------- /GraphTutorial/NewEventPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/NewEventPage.xaml.cs -------------------------------------------------------------------------------- /GraphTutorial/OAuth.resw.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/OAuth.resw.example -------------------------------------------------------------------------------- /GraphTutorial/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Package.appxmanifest -------------------------------------------------------------------------------- /GraphTutorial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GraphTutorial/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/GraphTutorial/Properties/Default.rd.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sample-uwp/HEAD/SECURITY.md --------------------------------------------------------------------------------