microsoft/teams.net

Public

mirrored from https://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/src/Microsoft.Teams.Apps.BotBuilder/Microsoft.Teams.Apps.BotBuilder.csproj

29lines · modecode

1<!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
2<!-- Licensed under the MIT License.-->
3
4<Project Sdk="Microsoft.NET.Sdk">
5
6 <PropertyGroup>
7 <TargetFrameworks>net8.0;net10.0</TargetFrameworks>
8 <ImplicitUsings>enable</ImplicitUsings>
9 <Nullable>enable</Nullable>
10 </PropertyGroup>
11
12 <PropertyGroup>
13 <PackageId>Microsoft.Teams.Apps.BotBuilder</PackageId>
14 <PackageDescription>Bridge to support smooth migration from BotFramework SDK into Teams SDK.</PackageDescription>
15 <PackageTags>microsoft;teams;msteams;copilot;apps;bots</PackageTags>
16 </PropertyGroup>
17
18 <ItemGroup>
19 <InternalsVisibleTo Include="Microsoft.Teams.Apps.BotBuilder.UnitTests" />
20 <InternalsVisibleTo Include="IntegrationTests" />
21 </ItemGroup>
22
23 <ItemGroup>
24 <PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.3" />
25 </ItemGroup>
26 <ItemGroup>
27 <ProjectReference Include="..\Microsoft.Teams.Core\Microsoft.Teams.Core.csproj" />
28 </ItemGroup>
29</Project>