microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
22df127116ef02cc5a31f714736cc25de03d7f9a

Branches

Tags

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

Clone

HTTPS

Download ZIP

Tests/Microsoft.Teams.Extensions/Microsoft.Teams.Extensions.Graph.Tests/Microsoft.Teams.Extensions.Graph.Tests.csproj

26lines · 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="Moq" Version="4.20.72" />
14 <PackageReference Include="xunit" Version="2.9.2" />
15 <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
16 </ItemGroup>
17
18 <ItemGroup>
19 <Using Include="Xunit" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <ProjectReference Include="..\..\..\Libraries\Microsoft.Teams.Extensions\Microsoft.Teams.Extensions.Graph\Microsoft.Teams.Extensions.Graph.csproj" />
24 </ItemGroup>
25
26</Project>
27