microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/samples/McpServer/McpServer.csproj
19lines · 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 | <PackageReference Include="ModelContextProtocol.AspNetCore" Version="1.2.0" /> |
| 11 | <PackageReference Include="Azure.Identity" Version="1.17.0" /> |
| 12 | </ItemGroup> |
| 13 | |
| 14 | <ItemGroup> |
| 15 | <ProjectReference Include="..\..\src\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" /> |
| 16 | <PackageReference Include="Microsoft.Teams.Cards" Version="2.0.6" /> |
| 17 | </ItemGroup> |
| 18 | |
| 19 | </Project> |
| 20 | |