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/test/Microsoft.Teams.Bot.Compat.UnitTests/Microsoft.Teams.Bot.Compat.UnitTests.csproj

35lines · modecode

1
2<Project Sdk="Microsoft.NET.Sdk">
3
4 <PropertyGroup>
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="coverlet.collector" Version="6.0.4" />
13 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
14 <PackageReference Include="Moq" Version="4.20.72" />
15 <PackageReference Include="xunit" Version="2.9.3" />
16 <PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
17 <PackageReference Include="AdaptiveCards" Version="3.1.0" />
18 </ItemGroup>
19
20 <ItemGroup>
21 <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Compat\Microsoft.Teams.Bot.Compat.csproj" />
22 <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Apps\Microsoft.Teams.Bot.Apps.csproj" />
23 </ItemGroup>
24
25 <ItemGroup>
26 <Using Include="Xunit" />
27 </ItemGroup>
28
29 <ItemGroup>
30 <None Update="TestData\*.json">
31 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
32 </None>
33 </ItemGroup>
34
35</Project>
36