microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/test/IntegrationTests/IntegrationTests.csproj
28lines · modecode
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <IsPackable>false</IsPackable> |
| 8 | <NoWarn>$(NoWarn);ExperimentalTeamsTargeted;ExperimentalTeamsReactions</NoWarn> |
| 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="xunit" Version="2.9.3" /> |
| 15 | <PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" /> |
| 16 | <PackageReference Include="MartinCostello.Logging.XUnit" Version="0.7.0" /> |
| 17 | </ItemGroup> |
| 18 | |
| 19 | <ItemGroup> |
| 20 | <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Apps\Microsoft.Teams.Bot.Apps.csproj" /> |
| 21 | <ProjectReference Include="..\..\src\Microsoft.Teams.Bot.Compat\Microsoft.Teams.Bot.Compat.csproj" /> |
| 22 | </ItemGroup> |
| 23 | |
| 24 | <ItemGroup> |
| 25 | <Using Include="Xunit" /> |
| 26 | </ItemGroup> |
| 27 | |
| 28 | </Project> |
| 29 | |