microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9ff4cc9ffdd70d648d230dded20a13cd26d78c57

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore.BotBuilder/Microsoft.Teams.Plugins.AspNetCore.BotBuilder.csproj

36lines · modecode

1<!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
2<!-- Licensed under the MIT License.-->
3
4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <PackageId>Microsoft.Teams.Plugins.AspNetCore.BotBuilder</PackageId>
7 <PackageDescription>Teams AspNetCore BotBuilder Plugin</PackageDescription>
8 <PackageProjectUrl>https://microsoft.github.io/teams-ai</PackageProjectUrl>
9 <PackageTags>microsoft;teams;msteams;copilot;ai;plugins;aspnetcore;botbuilder</PackageTags>
10 </PropertyGroup>
11
12 <PropertyGroup>
13 <TargetFrameworks>net8.0;net9.0</TargetFrameworks>
14 <ImplicitUsings>enable</ImplicitUsings>
15 <Nullable>enable</Nullable>
16 <LangVersion>latest</LangVersion>
17 <GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
18 <NoWarn>CS8618,CS0067</NoWarn>
19 </PropertyGroup>
20
21 <ItemGroup>
22 <FrameworkReference Include="Microsoft.AspNetCore.App" />
23 </ItemGroup>
24
25 <ItemGroup>
26 <PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.23.0" />
27 </ItemGroup>
28
29 <ItemGroup>
30 <ProjectReference Include="..\Microsoft.Teams.Plugins.AspNetCore\Microsoft.Teams.Plugins.AspNetCore.csproj" />
31
32 <ProjectReference Include="..\..\Microsoft.Teams.Api\Microsoft.Teams.Api.csproj" />
33 <ProjectReference Include="..\..\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" />
34 </ItemGroup>
35
36</Project>
37