microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/move-activity-implementations

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/src/Microsoft.Bot.Core/Microsoft.Bot.Core.csproj

28lines · 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.Bot.Core.UnitTests" />
12 </ItemGroup>
13 <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
14 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.22" NoWarn="NU1605" />
15 <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.22" NoWarn="NU1605" />
16 </ItemGroup>
17 <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
18 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" NoWarn="NU1605" />
19 <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.0" NoWarn="NU1605" />
20 </ItemGroup>
21 <ItemGroup>
22 <PackageReference Include="Microsoft.Identity.Web.UI" Version="4.1.1" />
23 <PackageReference Include="Microsoft.Identity.Web.AgentIdentities" Version="4.1.1" />
24 </ItemGroup>
25 <ItemGroup>
26 <Using Include="System.Text.Json.Serialization" />
27 </ItemGroup>
28</Project>
29