ctxo-mcp 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{cli-router-NPFFQFTM.js → cli-router-22BBOBP7.js} +10 -3
- package/dist/cli-router-22BBOBP7.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +3 -1
- package/tools/ctxo-roslyn/Program.cs +637 -0
- package/tools/ctxo-roslyn/ctxo-roslyn.csproj +14 -0
- package/dist/cli-router-NPFFQFTM.js.map +0 -1
|
@@ -1262,8 +1262,15 @@ function findFiles(dir, ext, maxDepth, currentDepth = 0) {
|
|
|
1262
1262
|
function findCtxoRoslynProject() {
|
|
1263
1263
|
const candidates = [
|
|
1264
1264
|
join4(import.meta.dirname, "../../../../tools/ctxo-roslyn"),
|
|
1265
|
-
|
|
1266
|
-
join4(
|
|
1265
|
+
// local dev (src/adapters/language/roslyn -> tools/)
|
|
1266
|
+
join4(import.meta.dirname, "../../../tools/ctxo-roslyn"),
|
|
1267
|
+
// built dist (dist/adapters/language/roslyn -> tools/)
|
|
1268
|
+
join4(process.cwd(), "node_modules/ctxo-mcp/tools/ctxo-roslyn"),
|
|
1269
|
+
// npm install in project
|
|
1270
|
+
join4(process.cwd(), "node_modules/ctxo/tools/ctxo-roslyn"),
|
|
1271
|
+
// alt package name
|
|
1272
|
+
join4(process.cwd(), "tools/ctxo-roslyn")
|
|
1273
|
+
// local repo root
|
|
1267
1274
|
];
|
|
1268
1275
|
for (const candidate of candidates) {
|
|
1269
1276
|
const csproj = join4(candidate, "ctxo-roslyn.csproj");
|
|
@@ -3375,4 +3382,4 @@ Usage:
|
|
|
3375
3382
|
export {
|
|
3376
3383
|
CliRouter
|
|
3377
3384
|
};
|
|
3378
|
-
//# sourceMappingURL=cli-router-
|
|
3385
|
+
//# sourceMappingURL=cli-router-22BBOBP7.js.map
|