microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Tests/Microsoft.Teams.Plugins.AspNetCore.Tests/Microsoft.Teams.Plugins.AspNetCore.Tests.csproj
32lines · modecode
| 1 | <!-- Copyright (c) Microsoft Corporation. All rights reserved.--> |
| 2 | <!-- Licensed under the MIT License.--> |
| 3 | |
| 4 | <Project Sdk="Microsoft.NET.Sdk"> |
| 5 | |
| 6 | <PropertyGroup> |
| 7 | <TargetFramework>net9.0</TargetFramework> |
| 8 | <ImplicitUsings>enable</ImplicitUsings> |
| 9 | <Nullable>enable</Nullable> |
| 10 | <IsPackable>false</IsPackable> |
| 11 | </PropertyGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <PackageReference Include="coverlet.collector" Version="6.0.2" /> |
| 15 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" /> |
| 16 | <PackageReference Include="Moq" Version="4.20.72" /> |
| 17 | <PackageReference Include="xunit" Version="2.9.2" /> |
| 18 | <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | <ItemGroup> |
| 22 | <Using Include="Xunit" /> |
| 23 | </ItemGroup> |
| 24 | |
| 25 | <ItemGroup> |
| 26 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore\Microsoft.Teams.Plugins.AspNetCore.csproj" /> |
| 27 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Api\Microsoft.Teams.Api.csproj" /> |
| 28 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" /> |
| 29 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Common\Microsoft.Teams.Common.csproj" /> |
| 30 | </ItemGroup> |
| 31 | |
| 32 | </Project> |
| 33 | |