microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/sub-pr-338

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/samples/Proactive/Proactive.csproj

17lines · modecode

1<Project Sdk="Microsoft.NET.Sdk.Worker">
2
3 <PropertyGroup>
4 <TargetFramework>net8.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <IsPackable>false</IsPackable>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
12 </ItemGroup>
13
14 <ItemGroup>
15 <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Core\Microsoft.Teams.Bot.Core.csproj" />
16 </ItemGroup>
17</Project>
18