microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
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 | |