microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
samples/migration-bot

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/test/Microsoft.Teams.Bot.Apps.UnitTests/Microsoft.Teams.Bot.Apps.UnitTests.csproj

31lines · 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 <IsPackable>false</IsPackable>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="coverlet.collector" Version="8.0.1">
12 <PrivateAssets>all</PrivateAssets>
13 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
14 </PackageReference>
15 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
16 <PackageReference Include="xunit" Version="2.9.3" />
17 <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
18 <PrivateAssets>all</PrivateAssets>
19 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20 </PackageReference>
21 </ItemGroup>
22
23 <ItemGroup>
24 <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Apps\Microsoft.Teams.Bot.Apps.csproj" />
25 </ItemGroup>
26
27 <ItemGroup>
28 <Using Include="Xunit" />
29 </ItemGroup>
30
31</Project>