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.

This commit is contained in:
atanasovg
2014-05-16 15:41:57 +03:00
parent 8777ad7c5f
commit bf84c7a976
2 changed files with 3 additions and 6 deletions

View File

@@ -110,6 +110,9 @@
</TypeScriptCompile>
<TypeScriptCompile Include="file-system\file-system.d.ts" />
<TypeScriptCompile Include="file-system\file-system-access.d.ts" />
<TypeScriptCompile Include="file-system\file-system.impl.ts">
<DependentUpon>file-system.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="image-source\image-source-native.android.ts">
<DependentUpon>image-source-native.d.ts</DependentUpon>
</TypeScriptCompile>
@@ -170,9 +173,6 @@
<DependentUpon>timer.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="Tests\local-settings-tests.ts" />
<TypeScriptCompile Include="file-system\file-system.ts">
<DependentUpon>file-system.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="file-system\file-system-access.android.ts">
<DependentUpon>file-system-access.d.ts</DependentUpon>
</TypeScriptCompile>

View File

@@ -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;