diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite
index c9b8cea..1d1065f 100644
Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ
diff --git a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md
index 4141093..7a0ba54 100644
--- a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md
+++ b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md
@@ -49,12 +49,14 @@ The drive you'll need to share depends on where you place your source code.
 <img src="img/firewall-rule-for-eshop.png"> 
 
 ### .NET Core SDK setup
+You need the .NET Core SDK so you can run the .NET Core CLI with commands like "dotnet build", "dotnet publish", etc.
+
 Install the .NET Core SDK from here 
 https://www.microsoft.com/net/download/core#/current
 (Current/x64 .NET Core 1.1 SDK Installer, usually)
 
 Run the setup like in the following screenshot:
-<img src="img/netcore-sdk-installer.png"> 
+<img src="img/netcore-sdk-11-installer.png"> 
 
 ### Node, Bower and Gulp installation
 (These steps about installing bower and gulp might not be needed anymore as these are being triggered from the .csproj file in the MVC project at the  "PrepublishScript" section).  <p>
@@ -87,8 +89,8 @@ https://github.com/dotnet/eShopOnContainers/wiki/06.-Setting-the-Web-SPA-applica
 
 These steps are easily performed by running a convenient script already created for you. As mentioned, it is internally using the .NET Core CLI (dotnet).
 - Open a PowerShell window in Windows. Make sure that you have permission to run scripts by running the following command:
-  - **Set-ExecutionPolicy Unrestricted -Scope LocalMachine** 
-<img src="img/cli-windows/powershell-set-execution-policy.png">
+    `Set-ExecutionPolicy Unrestricted -Scope LocalMachine`
+    <img src="img/cli-windows/powershell-set-execution-policy.png">
 
 - There is a Power-Shell script that you will find in the <u>root directory of the solution</u> named <b>build-bits.ps1</b> which is responsible for building the .NET applications and copy the binaries into multiple publish folder.