microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

Samples/Samples.BotBuilder/Samples.BotBuilder.csproj

23lines · modeblame

dda763b0Kavin1 years ago1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3<PropertyGroup>
4<TargetFramework>net9.0</TargetFramework>
5<Nullable>enable</Nullable>
6<ImplicitUsings>enable</ImplicitUsings>
7</PropertyGroup>
8
9<ItemGroup>
10<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.23.0" />
11<PackageReference Include="Microsoft.Bot.Builder" Version="4.23.0" />
12</ItemGroup>
13
14<ItemGroup>
15<ProjectReference Include="..\..\Libraries\Microsoft.Teams.Api\Microsoft.Teams.Api.csproj" />
16<ProjectReference Include="..\..\Libraries\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" />
17
18<ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore\Microsoft.Teams.Plugins.AspNetCore.csproj" />
19<ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore.DevTools\Microsoft.Teams.Plugins.AspNetCore.DevTools.csproj" />
20<ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore.BotBuilder\Microsoft.Teams.Plugins.AspNetCore.BotBuilder.csproj" />
21</ItemGroup>
22
23</Project>