location module naming changed to use "-"

This commit is contained in:
Vladimir Enchev
2014-05-15 09:50:41 +03:00
parent a19fbf85a6
commit 4b14fd1a19
6 changed files with 8 additions and 12 deletions

View File

@ -120,9 +120,6 @@
<TypeScriptCompile Include="location\location.ios.ts">
<DependentUpon>location.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="location\location_types.ts">
<DependentUpon>location.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="Tests\file-system-tests.ts" />
<TypeScriptCompile Include="Tests\http-tests.ts" />
<TypeScriptCompile Include="Tests\image-tests.ts" />
@ -196,9 +193,6 @@
<Content Include="image\Readme.md" />
<TypeScriptCompile Include="local-settings\index.ts" />
<TypeScriptCompile Include="local-settings\local-settings.d.ts" />
<TypeScriptCompile Include="location\location_common.ts">
<DependentUpon>location.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="local-settings\local-settings.android.ts">
<DependentUpon>local-settings.d.ts</DependentUpon>
</TypeScriptCompile>
@ -206,6 +200,8 @@
<DependentUpon>local-settings.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="local-settings\local-settings-common.ts" />
<TypeScriptCompile Include="location\location-common.ts" />
<TypeScriptCompile Include="location\location-types.ts" />
<Content Include="_references.ts" />
</ItemGroup>
<ItemGroup>

View File

@ -1,6 +1,6 @@
import TKUnit = require("Tests/TKUnit");
import locationModule = require("location/location");
import types = require("location/location_types");
import types = require("location/location-types");
var LocationManager = locationModule.LocationManager;
var Location = locationModule.Location;

View File

@ -1,5 +1,5 @@

import types = require("location/location_types");
import types = require("location/location-types");
import promises = require("promises/promises");
import locationModule = require("location/location");
import timer = require("timer/timer");

View File

@ -1,6 +1,6 @@
import types = require("location/location_types");
import types = require("location/location-types");
import appModule = require("application/application");
import common = require("location/location_common");
import common = require("location/location-common");
import merger = require("utils/module_merge");
// merge the exports of the types module with the exports of this file

View File

@ -1,5 +1,5 @@
import types = require("location/location_types");
import common = require("location/location_common");
import types = require("location/location-types");
import common = require("location/location-common");
import merger = require("utils/module_merge");
// merge the exports of the types module with the exports of this file