microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Samples/Deprecated.Controllers/Deprecated.Controllers.csproj
18lines · modecode
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <Nullable>enable</Nullable> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | </PropertyGroup> |
| 8 | |
| 9 | <ItemGroup> |
| 10 | <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.2" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore.DevTools\Microsoft.Teams.Plugins.AspNetCore.DevTools.csproj" /> |
| 15 | <ProjectReference Include="..\..\Libraries\Microsoft.Teams.Plugins\Microsoft.Teams.Plugins.AspNetCore\Microsoft.Teams.Plugins.AspNetCore.csproj" /> |
| 16 | </ItemGroup> |
| 17 | |
| 18 | </Project> |
| 19 | |