-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfinityFlow.CSharp.Eval.csproj
More file actions
48 lines (43 loc) · 1.98 KB
/
Copy pathInfinityFlow.CSharp.Eval.csproj
File metadata and controls
48 lines (43 loc) · 1.98 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
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RollForward>Major</RollForward>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Set up the NuGet package to be an MCP server -->
<PackAsTool>true</PackAsTool>
<PackageType>McpServer</PackageType>
<!-- Set recommended package metadata -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageId>InfinityFlow.CSharp.Eval</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Authors>InfinityFlow</Authors>
<Company>InfinityFlow</Company>
<PackageTags>AI; MCP; server; stdio; csharp; eval; roslyn; scripting</PackageTags>
<Description>An MCP server that evaluates and executes C# scripts using Roslyn.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/InfinityFlowApp/csharp-mcp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Include additional files for browsing the MCP server. -->
<ItemGroup>
<None Include=".mcp\server.json" Pack="true" PackagePath="/.mcp/" />
<None Include="README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="ModelContextProtocol" />
<PackageReference Include="NuGet.Protocol" />
<PackageReference Include="NuGet.Resolver" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet.Packaging" />
<InternalsVisibleTo Include="InfinityFlow.CSharp.Eval.Tests" />
</ItemGroup>
</Project>