microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
aamirj/StackOverflowTest

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

39lines · modecode

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