microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-release-process

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/test/TeamsApisDemo/TeamsApisDemo.csproj

24lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <OutputType>Exe</OutputType>
5 <TargetFramework>net8.0</TargetFramework>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <Nullable>enable</Nullable>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
12 </ItemGroup>
13
14 <ItemGroup>
15 <ProjectReference Include="..\..\src\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" />
16 </ItemGroup>
17
18 <ItemGroup>
19 <None Update="appsettings.json">
20 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
21 </None>
22 </ItemGroup>
23
24</Project>
25