@danielblomma/cortex-mcp 1.5.0 → 1.6.0
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielblomma/cortex-mcp",
|
|
3
3
|
"mcpName": "io.github.DanielBlomma/cortex",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.6.0",
|
|
5
5
|
"description": "Local, repo-scoped context platform for coding assistants. Semantic search, graph relationships, and architectural rule context.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Daniel Blomma",
|
|
@@ -20,7 +20,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
20
20
|
const __dirname = path.dirname(__filename);
|
|
21
21
|
const DEFAULT_DOTNET_COMMAND = "dotnet";
|
|
22
22
|
const DEFAULT_PROJECT_PATH = path.join(__dirname, "dotnet", "CSharpParser", "CSharpParser.csproj");
|
|
23
|
-
const DEFAULT_TARGET_FRAMEWORK = "
|
|
23
|
+
const DEFAULT_TARGET_FRAMEWORK = "net8.0";
|
|
24
24
|
|
|
25
25
|
let runtimeCache = null;
|
|
26
26
|
let publishCache = null;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
<PropertyGroup>
|
|
3
3
|
<OutputType>Exe</OutputType>
|
|
4
|
-
<TargetFramework>
|
|
4
|
+
<TargetFramework>net8.0</TargetFramework>
|
|
5
|
+
<RollForward>Major</RollForward>
|
|
5
6
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
6
7
|
<Nullable>enable</Nullable>
|
|
7
8
|
<LangVersion>latest</LangVersion>
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
<PropertyGroup>
|
|
3
3
|
<OutputType>Exe</OutputType>
|
|
4
|
-
<TargetFramework>
|
|
4
|
+
<TargetFramework>net8.0</TargetFramework>
|
|
5
|
+
<RollForward>Major</RollForward>
|
|
5
6
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
6
7
|
<Nullable>enable</Nullable>
|
|
7
8
|
<LangVersion>latest</LangVersion>
|
|
@@ -20,7 +20,7 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
20
20
|
const __dirname = path.dirname(__filename);
|
|
21
21
|
const DEFAULT_DOTNET_COMMAND = "dotnet";
|
|
22
22
|
const DEFAULT_PROJECT_PATH = path.join(__dirname, "dotnet", "VbNetParser", "VbNetParser.csproj");
|
|
23
|
-
const DEFAULT_TARGET_FRAMEWORK = "
|
|
23
|
+
const DEFAULT_TARGET_FRAMEWORK = "net8.0";
|
|
24
24
|
|
|
25
25
|
let runtimeCache = null;
|
|
26
26
|
let publishCache = null;
|