microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c96a4c27a3db1c1e1353a3b35a18ad4038c048b2

Branches

Tags

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

Clone

HTTPS

Download ZIP

Tests/Microsoft.Teams.Common.Tests/Microsoft.Teams.Common.Tests.csproj

25lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net9.0</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 <IsPackable>false</IsPackable>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="coverlet.collector" Version="6.0.2" />
12 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
13 <PackageReference Include="xunit" Version="2.9.2" />
14 <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
15 </ItemGroup>
16
17 <ItemGroup>
18 <Using Include="Xunit" />
19 </ItemGroup>
20
21 <ItemGroup>
22 <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Common\Microsoft.Teams.Common.csproj" />
23 </ItemGroup>
24
25</Project>
26