microsoft/teams.net

Public

mirrored from https://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/src/Microsoft.Teams.Bot.Core/Microsoft.Teams.Bot.Core.csproj

30lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFrameworks>net8.0;net10.0</TargetFrameworks>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <InternalsVisibleTo Include="Microsoft.Teams.Bot.Core.UnitTests" />
12 <InternalsVisibleTo Include="Microsoft.Teams.Bot.Apps" />
13 </ItemGroup>
14 <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
15 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.22" />
16 <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.22" />
17 <PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.1" />
18 </ItemGroup>
19 <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
20 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.2" />
21 <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.2" />
22 </ItemGroup>
23 <ItemGroup>
24 <PackageReference Include="Microsoft.Identity.Web.UI" Version="4.3.0" />
25 <PackageReference Include="Microsoft.Identity.Web.AgentIdentities" Version="4.3.0" />
26 </ItemGroup>
27 <ItemGroup>
28 <Using Include="System.Text.Json.Serialization" />
29 </ItemGroup>
30</Project>
31