Skip to content

Commit e62bcb8

Browse files
authored
Rename OpenDream.sln to OpenDream.slnx (#25)
1 parent 1b1df96 commit e62bcb8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opendream",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"displayName": "OpenDream Dev Tools",
55
"icon": "OD.png",
66
"description": "Developer tools for OpenDream",
@@ -38,7 +38,7 @@
3838
"opendream.sourcePath": {
3939
"type": "string",
4040
"default": null,
41-
"description": "Path to your copy of the OpenDream source code. This should be the top level folder containing OpenDream.sln. Leave empty to use pre-compiled binaries instead."
41+
"description": "Path to your copy of the OpenDream source code. This should be the top level folder containing OpenDream.slnx. Leave empty to use pre-compiled binaries instead."
4242
},
4343
"opendream.hotReload": {
4444
"type": "boolean",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ async function getOpenDreamInstallation(): Promise<OpenDreamInstallation | undef
296296
function isOpenDreamSource(path: string): Promise<boolean> {
297297
return new Promise((resolve, reject) => {
298298
try {
299-
const exists = fs.existsSync(`${path}/OpenDream.sln`);
299+
const exists = fs.existsSync(`${path}/OpenDream.slnx`);
300300
resolve(exists);
301301
} catch (error) {
302302
reject(error);

0 commit comments

Comments
 (0)