Skip to content

Commit 4b14fd1

Browse files
author
Vladimir Enchev
committed
location module naming changed to use "-"
1 parent a19fbf8 commit 4b14fd1

File tree

6 files changed

+8
-12
lines changed

6 files changed

+8
-12
lines changed

BCL.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@
120120
<TypeScriptCompile Include="location\location.ios.ts">
121121
<DependentUpon>location.d.ts</DependentUpon>
122122
</TypeScriptCompile>
123-
<TypeScriptCompile Include="location\location_types.ts">
124-
<DependentUpon>location.d.ts</DependentUpon>
125-
</TypeScriptCompile>
126123
<TypeScriptCompile Include="Tests\file-system-tests.ts" />
127124
<TypeScriptCompile Include="Tests\http-tests.ts" />
128125
<TypeScriptCompile Include="Tests\image-tests.ts" />
@@ -196,16 +193,15 @@
196193
<Content Include="image\Readme.md" />
197194
<TypeScriptCompile Include="local-settings\index.ts" />
198195
<TypeScriptCompile Include="local-settings\local-settings.d.ts" />
199-
<TypeScriptCompile Include="location\location_common.ts">
200-
<DependentUpon>location.d.ts</DependentUpon>
201-
</TypeScriptCompile>
202196
<TypeScriptCompile Include="local-settings\local-settings.android.ts">
203197
<DependentUpon>local-settings.d.ts</DependentUpon>
204198
</TypeScriptCompile>
205199
<TypeScriptCompile Include="local-settings\local-settings.ios.ts">
206200
<DependentUpon>local-settings.d.ts</DependentUpon>
207201
</TypeScriptCompile>
208202
<TypeScriptCompile Include="local-settings\local-settings-common.ts" />
203+
<TypeScriptCompile Include="location\location-common.ts" />
204+
<TypeScriptCompile Include="location\location-types.ts" />
209205
<Content Include="_references.ts" />
210206
</ItemGroup>
211207
<ItemGroup>

Tests/location-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import TKUnit = require("Tests/TKUnit");
22
import locationModule = require("location/location");
3-
import types = require("location/location_types");
3+
import types = require("location/location-types");
44

55
var LocationManager = locationModule.LocationManager;
66
var Location = locationModule.Location;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
import types = require("location/location_types");
2+
import types = require("location/location-types");
33
import promises = require("promises/promises");
44
import locationModule = require("location/location");
55
import timer = require("timer/timer");

location/location.android.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import types = require("location/location_types");
1+
import types = require("location/location-types");
22
import appModule = require("application/application");
3-
import common = require("location/location_common");
3+
import common = require("location/location-common");
44
import merger = require("utils/module_merge");
55

66
// merge the exports of the types module with the exports of this file

location/location.ios.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import types = require("location/location_types");
2-
import common = require("location/location_common");
1+
import types = require("location/location-types");
2+
import common = require("location/location-common");
33
import merger = require("utils/module_merge");
44

55
// merge the exports of the types module with the exports of this file

0 commit comments

Comments
 (0)