-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDotNetDevMCP.CodeIntelligence.csproj
More file actions
44 lines (35 loc) · 1.7 KB
/
DotNetDevMCP.CodeIntelligence.csproj
File metadata and controls
44 lines (35 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>DotNetDevMCP.CodeIntelligence</RootNamespace>
<AssemblyName>DotNetDevMCP.CodeIntelligence</AssemblyName>
<Description>Code intelligence layer for DotNetDevMCP (based on SharpTools)</Description>
</PropertyGroup>
<ItemGroup>
<!-- Roslyn / Code Analysis -->
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="5.0.0" />
<!-- Decompilation -->
<PackageReference Include="ICSharpCode.Decompiler" Version="9.1.0.7988" />
<!-- Git Integration -->
<PackageReference Include="LibGit2Sharp" Version="0.32.0" />
<!-- Diff -->
<PackageReference Include="DiffPlex" Version="1.9.0" />
<!-- File System -->
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.2" />
<!-- MCP Protocol -->
<PackageReference Include="ModelContextProtocol" Version="0.4.0-preview.3" />
<!-- NuGet -->
<PackageReference Include="NuGet.Protocol" Version="8.0.0" />
<!-- Reflection -->
<PackageReference Include="System.Reflection.Metadata" Version="10.0.0" />
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../DotNetDevMCP.Core/DotNetDevMCP.Core.csproj" />
</ItemGroup>
</Project>