microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Tests/Microsoft.Teams.Cards.Tests/Microsoft.Teams.Cards.Tests.csproj
27lines · 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="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.Common\Microsoft.Teams.Common.csproj" /> |
| 24 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Cards\Microsoft.Teams.Cards.csproj" /> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | </Project> |
| 28 | |