microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/pabot-httpcontext-botid

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/samples/A2ABot/A2ABot.csproj

26lines · modecode

1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net10.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <ProjectReference Include="..\..\src\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" />
11 </ItemGroup>
12
13 <ItemGroup>
14 <PackageReference Include="A2A" Version="1.0.0-preview2" />
15 <PackageReference Include="A2A.AspNetCore" Version="1.0.0-preview2" />
16 <PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
17 <PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-preview.251204.1" />
18 <!-- Force a unified Microsoft.Extensions.AI version. Microsoft.Agents.AI
19 preview needs APIs (e.g. FunctionApprovalRequestContent) added in
20 10.5+; without this pin the transitive resolution lands on 10.4.x
21 and you get TypeLoadException at first LLM call. -->
22 <PackageReference Include="Microsoft.Extensions.AI" Version="10.6.0" />
23 <PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="10.6.0" />
24 </ItemGroup>
25
26</Project>
27