diff --git a/BCL.csproj b/BCL.csproj
index c0baf8b47..89e8cb413 100644
--- a/BCL.csproj
+++ b/BCL.csproj
@@ -110,6 +110,9 @@
+
+ file-system.d.ts
+
image-source-native.d.ts
@@ -170,9 +173,6 @@
timer.d.ts
-
- file-system.d.ts
-
file-system-access.d.ts
diff --git a/file-system/file-system.ts b/file-system/file-system.impl.ts
similarity index 98%
rename from file-system/file-system.ts
rename to file-system/file-system.impl.ts
index a5ebe9d4d..09d26bef1 100644
--- a/file-system/file-system.ts
+++ b/file-system/file-system.impl.ts
@@ -49,9 +49,6 @@ var createFolder = function (info: { path: string; name: string; }) {
};
export class FileSystemEntity {
- /**
- * Gets the Folder object representing the parent of this entity. Will be null for a root folder like Documents or Temporary.
- */
get parent(): Folder {
var onError = function (error) {
throw error;