From bf84c7a97680457edd97d3f37b3b103765149434 Mon Sep 17 00:00:00 2001 From: atanasovg Date: Fri, 16 May 2014 15:41:57 +0300 Subject: [PATCH] Added support for .impl suffix for files where we have same d.ts and ts names - e.g. file-system.d.ts & file-system.ts. Updated the BuildTasks.dll with the new logic. --- BCL.csproj | 6 +++--- file-system/{file-system.ts => file-system.impl.ts} | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) rename file-system/{file-system.ts => file-system.impl.ts} (98%) 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;