-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathAgentMCP.Console.csproj
More file actions
29 lines (24 loc) · 1.2 KB
/
AgentMCP.Console.csproj
File metadata and controls
29 lines (24 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.20.0" />
<PackageReference Include="DotNetEnv" Version="3.1.1" />
<PackageReference Include="ModelContextProtocol" Version="1.2.0" />
<PackageReference Include="System.Linq.Async" Version="7.0.0" />
<PackageReference Include="Azure.AI.Projects.OpenAI" Version="2.0.0-beta.1" />
<PackageReference Include="Azure.AI.Agents.Persistent" Version="1.2.0-beta.10" />
<PackageReference Include="Azure.AI.Projects" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="10.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Your_Microsoft.Agents.AI.AzureAI.Persistent_Project_Path" />
<ProjectReference Include="Your_Microsoft.Agents.AI.Foundry_Project_Path" />
<ProjectReference Include="Your_Microsoft.Agents.AI_Project_Path" />
</ItemGroup>
</Project>