microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
next/oauth-card-null-ref-bug

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/samples/PABot/PABot.csproj

28lines · 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 <Content Remove="Properties\launchSettings.TEMPLATE.json" />
11 </ItemGroup>
12
13 <ItemGroup>
14 <PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.3" />
15 <PackageReference Include="Microsoft.Graph" Version="5.101.0" />
16 </ItemGroup>
17
18 <ItemGroup>
19 <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Compat\Microsoft.Teams.Bot.Compat.csproj" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <None Update="Properties\launchSettings.json">
24 <CopyToOutputDirectory>Never</CopyToOutputDirectory>
25 </None>
26 </ItemGroup>
27
28</Project>
29