-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMCP_AdoNet_Server.csproj
More file actions
26 lines (22 loc) · 924 Bytes
/
MCP_AdoNet_Server.csproj
File metadata and controls
26 lines (22 loc) · 924 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>false</PublishAot>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNetEnv" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.Hosting"> <Version>9.0.4</Version>
</PackageReference>
<PackageReference Include="ModelContextProtocol" Version="0.1.0-preview.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Data.Odbc" Version="9.0.4" />
</ItemGroup>
<ItemGroup>
<Reference Include="OpenLink.Data.VirtuosoNET">
<HintPath>OpenLink.Data.VirtuosoNET.dll</HintPath>
</Reference>
</ItemGroup>
</Project>