diff --git a/continuous-deployment/README.md b/continuous-deployment/README.md
index 83daea4..ca2e8ff 100644
--- a/continuous-deployment/README.md
+++ b/continuous-deployment/README.md
@@ -4,7 +4,8 @@ In this lab, you have an example MVC application, committed to a Git repository
### Pre-requisites: ###
- Complete [Continuous Integration](../continuous-integration/README.md) lab.
-
+- Having your subscription linked with your own Azure Active Directory instance
+ Check the [Course Pre-Requisites #1](../README.md#course-pre-requisites)
### Tasks Overview: ###
diff --git a/feature-flag/README.md b/feature-flag/README.md
index eed4925..fc8fe8e 100644
--- a/feature-flag/README.md
+++ b/feature-flag/README.md
@@ -108,7 +108,7 @@ Based on [this](https://microsoft.github.io/PartsUnlimited/apm/200.6x-APM-Featur
public void ConfigureServices(IServiceCollection services)
{
// Set provider config so file is read from content root path
- var provider = new AppSettingsProvider { Configuration = (IConfiguration)Configuration };
+ var provider = new AppSettingsProvider { Configuration = (IConfigurationRoot)Configuration };
// Add your feature here
services.AddSingleton(new CheckPhoneNumber { ToggleValueProvider = provider });
@@ -164,6 +164,7 @@ Based on [this](https://microsoft.github.io/PartsUnlimited/apm/200.6x-APM-Featur
1. Enter phone number 123-123-5678, submit and notice the page refreshes without error
1. Push your code changes and let your pipeline do it's job
+ - Note (optional): You can override the feature toggle setting value defined in the appsettings.json file by using the Azure Web App settings screen (Azure portal > your Web app > Settings > Configuration panel). Open your production Web app configuration panel and try adding a new Application Setting called FeatureToggle:CheckPhoneNumber then assign it with either true or false. Hit the Save button and refresh the Contact page in your Production environment to check the feature toggle in action.
## Next steps
diff --git a/getting-started/README.md b/getting-started/README.md
index 183eefb..a494780 100644
--- a/getting-started/README.md
+++ b/getting-started/README.md
@@ -6,7 +6,9 @@ In this lab, we will be installing the required development components and verif
[Azure Portal](https://portal.azure.com)
2. An active Azure DevOps account.
[Sign up for Visual Studio Team Services](https://azure.microsoft.com/en-us/services/devops/)
-
+3. Having your subscription linked with your own Azure Active Directory instance
+ Check the [Course Pre-Requisites #1](../README.md#course-pre-requisites)
+
## Set up your machine ##
1. Install [Visual Studio 2017](http://go.microsoft.com/fwlink/?LinkId=517106)
Select ASP.NET and web development and Azure development tools on the installer.
diff --git a/source/deploy/azuredeploy.json b/source/deploy/azuredeploy.json
index 847628f..9e3018d 100644
--- a/source/deploy/azuredeploy.json
+++ b/source/deploy/azuredeploy.json
@@ -19,7 +19,7 @@
"2"
],
"defaultValue": "0"
- },
+ }
},
"resources": [
{
@@ -62,8 +62,7 @@
"webSocketsEnabled": true,
"alwaysOn": true,
"remoteDebuggingEnabled": true,
- "remoteDebuggingVersion": "VS2013",
-
+ "remoteDebuggingVersion": "VS2017",
"defaultDocuments": [
"index.html",
"hostingstart.html"