microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/samples/CustomHosting/CustomHosting.csproj
13lines · 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 | <ProjectReference Include="..\..\src\Microsoft.Teams.Apps\Microsoft.Teams.Apps.csproj" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | </Project> |
| 14 | |