microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
devtools-port-no-auth

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Samples/Samples.Dialogs/Samples.Dialogs.csproj

28lines · modeblame

4e77a5ccAamir Jawaid9 months ago1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3<PropertyGroup>
c3acedabKavin4 months ago4<TargetFramework>net10.0</TargetFramework>
4e77a5ccAamir Jawaid9 months ago5<Nullable>enable</Nullable>
6<ImplicitUsings>enable</ImplicitUsings>
c3acedabKavin4 months ago7<LangVersion>latest</LangVersion>
4e77a5ccAamir Jawaid9 months ago8<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
9</PropertyGroup>
10
11<ItemGroup>
12<EmbeddedResource Include="Web/**" />
13<Content Remove="Web/**" />
14</ItemGroup>
15
16<ItemGroup>
17<ProjectReference Include="../../Libraries/Microsoft.Teams.Api/Microsoft.Teams.Api.csproj" />
18<ProjectReference Include="../../Libraries/Microsoft.Teams.Apps/Microsoft.Teams.Apps.csproj" />
19<ProjectReference Include="../../Libraries/Microsoft.Teams.Extensions/Microsoft.Teams.Extensions.Hosting/Microsoft.Teams.Extensions.Hosting.csproj" />
20<ProjectReference Include="../../Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore.DevTools/Microsoft.Teams.Plugins.AspNetCore.DevTools.csproj" />
21</ItemGroup>
22
23<ItemGroup>
c3acedabKavin4 months ago24<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
25<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
4e77a5ccAamir Jawaid9 months ago26</ItemGroup>
27
28</Project>