diff --git a/CrossPlatformModules.csproj b/CrossPlatformModules.csproj
index 16f5e7368..ce25ffaa0 100644
--- a/CrossPlatformModules.csproj
+++ b/CrossPlatformModules.csproj
@@ -693,11 +693,6 @@
-
-
- main-page.xml
-
-
@@ -1198,7 +1193,6 @@
-
@@ -1326,7 +1320,6 @@
-
Designer
@@ -2018,11 +2011,6 @@
PreserveNewest
-
-
- PreserveNewest
-
-
@@ -2205,7 +2193,7 @@
False
-
+
\ No newline at end of file
diff --git a/apps/template-hello-world/app.css b/apps/template-hello-world/app.css
deleted file mode 100644
index 341995193..000000000
--- a/apps/template-hello-world/app.css
+++ /dev/null
@@ -1,16 +0,0 @@
-.title {
- font-size: 30;
- horizontal-align: center;
- margin:20;
-}
-
-button {
- font-size: 42;
- horizontal-align: center;
-}
-
-.message {
- font-size: 20;
- color: #284848;
- horizontal-align: center;
-}
diff --git a/apps/template-hello-world/app.ts b/apps/template-hello-world/app.ts
deleted file mode 100644
index 142aa1ad2..000000000
--- a/apps/template-hello-world/app.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import application = require("application");
-
-// Remove this in the AppBuilder templates
-application.cssFile = "./app.css"
-
-application.start({ moduleName: "main-page" });
\ No newline at end of file
diff --git a/apps/template-hello-world/main-page.ts b/apps/template-hello-world/main-page.ts
deleted file mode 100644
index 3d1e03da4..000000000
--- a/apps/template-hello-world/main-page.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import observable = require("data/observable");
-import pages = require("ui/page");
-import vmModule = require("./main-view-model");
-
-// Event handler for Page "loaded" event attached in main-page.xml
-export function pageLoaded(args: observable.EventData) {
- // Get the event sender
- var page = args.object;
- page.bindingContext = vmModule.mainViewModel;
-}
\ No newline at end of file
diff --git a/apps/template-hello-world/main-page.xml b/apps/template-hello-world/main-page.xml
deleted file mode 100644
index a87b76484..000000000
--- a/apps/template-hello-world/main-page.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apps/template-hello-world/main-view-model.ts b/apps/template-hello-world/main-view-model.ts
deleted file mode 100644
index 57d56c697..000000000
--- a/apps/template-hello-world/main-view-model.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-import observable = require("data/observable");
-
-export class HelloWorldModel extends observable.Observable {
- private counter: number;
- constructor() {
- super();
-
- // Initialize default values.
- this.counter = 42;
- this.set("message", this.counter + " taps left");
- }
-
- public tapAction() {
- this.counter--;
- if (this.counter <= 0) {
- this.set("message", "Hoorraaay! You unlocked the NativeScript clicker achievement!");
- }
- else {
- this.set("message", this.counter + " taps left")
- }
- }
-}
-export var mainViewModel = new HelloWorldModel();
-
-// Equivalent JS code:
-//var observable = require("data/observable");
-//
-//var counter = 42;
-//
-//var mainViewModel = new observable.Observable();
-//mainViewModel.set("message", counter + " taps left");
-//mainViewModel.tapAction = function () {
-// counter--;
-// if (counter <= 0) {
-// mainViewModel.set("message", "Hoorraaay! You unlocked the NativeScript clicker achievement!");
-// }
-// else {
-// mainViewModel.set("message", counter + " taps left");
-// }
-//};
-//exports.mainViewModel = mainViewModel;
\ No newline at end of file
diff --git a/apps/template-hello-world/package.json b/apps/template-hello-world/package.json
deleted file mode 100644
index 31b5cfd85..000000000
--- a/apps/template-hello-world/package.json
+++ /dev/null
@@ -1,2 +0,0 @@
-{ "name" : "template-hello-world",
- "main" : "app.js" }
diff --git a/tsconfig.json b/tsconfig.json
index 493b49479..caf8977c6 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -136,9 +136,6 @@
"apps/tab-view-demo/mainPage.ts",
"apps/template-blank/app.ts",
"apps/template-blank/main-page.ts",
- "apps/template-hello-world/app.ts",
- "apps/template-hello-world/main-page.ts",
- "apps/template-hello-world/main-view-model.ts",
"apps/template-master-detail/app.ts",
"apps/template-master-detail/details-page.ts",
"apps/template-master-detail/main-page.ts",