diff --git a/.github/ISSUE_TEMPLATE/ask-a-question.md b/.github/ISSUE_TEMPLATE/ask-a-question.md
new file mode 100644
index 0000000..5fdae5a
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/ask-a-question.md
@@ -0,0 +1,14 @@
+---
+name: Ask a question
+about: Ask a question about Graph, adding features to this sample, etc.
+title: ''
+labels: question, needs triage
+assignees: ''
+
+---
+
+Thank you for taking an interest in Microsoft Graph development! Please feel free to ask a question here, but keep in mind the following:
+
+- This is not an official Microsoft support channel, and our ability to respond to questions here is limited. Questions about Graph, or questions about adding a new feature to the sample, will be answered on a best-effort basis.
+- Questions should be asked on [Stack Overflow](https://stackoverflow.com/questions/tagged/microsoft-graph).
+- Issues with Microsoft Graph itself should be handled through [support](https://developer.microsoft.com/graph/support).
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..83e3a9c
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,49 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: bug report, needs triage
+assignees: ''
+---
+
+### Where did you get the code?
+
+- [ ] Downloaded from GitHub
+- [ ] Downloaded from the [Microsoft Graph quick start tool](https://developer.microsoft.com/graph/quick-start)
+- [ ] Followed the tutorial from [Microsoft Graph tutorials](https://docs.microsoft.com/graph/tutorials)
+
+### Describe the bug
+
+A clear and concise description of what the bug is.
+
+### To Reproduce
+
+Steps to reproduce the behavior:
+
+1. Go to '...'
+1. Click on '....'
+1. Scroll down to '....'
+1. See error
+
+### Expected behavior
+
+A clear and concise description of what you expected to happen.
+
+### Screenshots
+
+If applicable, add screenshots to help explain your problem.
+
+### Desktop
+
+- OS: [e.g. iOS]
+- Browser [e.g. chrome, safari]
+- Version [e.g. 22]
+
+### Dependency versions
+
+- Authentication library (MSAL, etc.) version:
+- Graph library (Graph SDK, REST library, etc.) version:
+
+### Additional context
+
+Add any other context about the problem here.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..17305e4
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,43 @@
+# Contributing to Microsoft Graph training repositories
+
+Thank you for contributing to this project! Before submitting your pull request, be sure to consider the following.
+
+## Overview
+
+The code in this repository serves three purposes:
+
+- The Markdown files in the [tutorial](/tutorial) folder are published as a tutorial on the [Microsoft Graph tutorials](https://docs.microsoft.com/graph/tutorials) page.
+- The sample project in the [demo](/demo) folder is the source for a [Microsoft Graph quick start](https://developer.microsoft.com/graph/quick-start).**\***
+- The sample project in the demo folder is also downloadable directly from GitHub and should run as-is after some simple configuration.
+
+> **\*** Not all training repositories are available as quick starts (yet).
+
+This is important to keep in mind, because changes in one place *may* require changes in another, to keep things in sync. Whereever possible, the Markdown files refer to the source code files directly (using a custom `:::code` syntax), so that updating code in source will automatically update the code in Markdown.
+
+## Updating code
+
+The `:::code` syntax used in Markdown depends on specific comments in the source code file. These comments look like the following:
+
+```csharp
+//
+Console.WriteLine("Hello World!");
+//
+```
+
+If you update code between these "marker" comments, the Markdown files will automatically get those changes when published to the Microsoft Graph documentation site. If you update code outside of those comments, it's very likely that you'll need to update the corresponding Markdown.
+
+## Adding features
+
+While the enthusiasm is appreciated, please don't send pull requests to add new features to the sample. Because this repository is primarily a "build your first app" tutorial, the feature set is limited, by design.
+
+## Submitting pull requests
+
+Please submit all pull requests to the `master` branch.
+
+## When do changes get published?
+
+Publishing of updates to the [Microsoft Graph tutorials](https://docs.microsoft.com/graph/tutorials) site is not automatic. Changes must first be promoted to the `live` branch, then a build must be triggered by the site admins. This is typically done on an "as-needed" basis.
+
+## Code of conduct
+
+This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
diff --git a/demo/graphtutorial/.classpath b/demo/graphtutorial/.classpath
new file mode 100644
index 0000000..8448a68
--- /dev/null
+++ b/demo/graphtutorial/.classpath
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demo/graphtutorial/.gitignore b/demo/graphtutorial/.gitignore
index 1b6985c..d84a900 100644
--- a/demo/graphtutorial/.gitignore
+++ b/demo/graphtutorial/.gitignore
@@ -3,3 +3,4 @@
# Ignore Gradle build output directory
build
+bin/
diff --git a/demo/graphtutorial/.project b/demo/graphtutorial/.project
index 547c0f8..10bbc4b 100644
--- a/demo/graphtutorial/.project
+++ b/demo/graphtutorial/.project
@@ -5,6 +5,11 @@
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
org.eclipse.buildship.core.gradleprojectbuilder
@@ -12,6 +17,7 @@
+ org.eclipse.jdt.core.javanature
org.eclipse.buildship.core.gradleprojectnature
diff --git a/demo/graphtutorial/.settings/org.eclipse.jdt.core.prefs b/demo/graphtutorial/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..99b7c05
--- /dev/null
+++ b/demo/graphtutorial/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,4 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=14
+org.eclipse.jdt.core.compiler.compliance=14
+org.eclipse.jdt.core.compiler.source=14
diff --git a/demo/graphtutorial/src/test/java/graphtutorial/AppTest.java b/demo/graphtutorial/src/test/java/graphtutorial/AppTest.java
index 9f25ac0..81b4e21 100644
--- a/demo/graphtutorial/src/test/java/graphtutorial/AppTest.java
+++ b/demo/graphtutorial/src/test/java/graphtutorial/AppTest.java
@@ -3,8 +3,8 @@
*/
package graphtutorial;
-import org.junit.Test;
-import static org.junit.Assert.*;
+//import org.junit.Test;
+//import static org.junit.Assert.*;
public class AppTest {