microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/pabot-httpcontext-botid

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/test/ABSTokenServiceClient/ABSTokenServiceClient.csproj

26lines · modecode

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