microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-release-process

Branches

Tags

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

Clone

HTTPS

Download ZIP

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