diff --git a/BCL.csproj b/BCL.csproj
index 5a12d08d0..988af8b4f 100644
--- a/BCL.csproj
+++ b/BCL.csproj
@@ -84,10 +84,16 @@
application.d.ts
+
+ console-native.d.ts
+
+
+ console-native.d.ts
+
console.d.ts
-
+
declarations.d.ts
@@ -104,11 +110,17 @@
+
+ image-native.d.ts
+
+
+ image-native.d.ts
+
image.d.ts
-
+
location.d.ts
@@ -160,12 +172,6 @@
timer.d.ts
-
- console-helper.d.ts
-
-
- console-helper.d.ts
-
file-system.d.ts
@@ -181,12 +187,6 @@
http-request.d.ts
-
- image-impl.d.ts
-
-
- image-impl.d.ts
-
diff --git a/console/console-helper.android.ts b/console/console-native.android.ts
similarity index 100%
rename from console/console-helper.android.ts
rename to console/console-native.android.ts
diff --git a/console/console-helper.d.ts b/console/console-native.d.ts
similarity index 100%
rename from console/console-helper.d.ts
rename to console/console-native.d.ts
diff --git a/console/console-helper.ios.ts b/console/console-native.ios.ts
similarity index 100%
rename from console/console-helper.ios.ts
rename to console/console-native.ios.ts
diff --git a/console/console.ts b/console/console.ts
index 74365afeb..a97eb33f9 100644
--- a/console/console.ts
+++ b/console/console.ts
@@ -1,4 +1,4 @@
-import helperModule = require("console/console-helper");
+import helperModule = require("console/console-native");
export class Console {
private _timers: any;
diff --git a/image/image-impl.android.ts b/image/image-native.android.ts
similarity index 100%
rename from image/image-impl.android.ts
rename to image/image-native.android.ts
diff --git a/image/image-impl.d.ts b/image/image-native.d.ts
similarity index 100%
rename from image/image-impl.d.ts
rename to image/image-native.d.ts
diff --git a/image/image-impl.ios.ts b/image/image-native.ios.ts
similarity index 100%
rename from image/image-impl.ios.ts
rename to image/image-native.ios.ts
diff --git a/image/image.ts b/image/image.ts
index 2f9439918..8893bf2ff 100644
--- a/image/image.ts
+++ b/image/image.ts
@@ -1,5 +1,5 @@
import app = require("application/application");
-import impl = require("image/image-impl");
+import impl = require("image/image-native");
import promises = require("promises/promises");
import http = require("http/http");