-
Notifications
You must be signed in to change notification settings - Fork 0
/
CallingMeetingBot.csproj
30 lines (25 loc) · 1.15 KB
/
CallingMeetingBot.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.12.2" />
<PackageReference Include="Microsoft.Graph.Communications.Calls.Media" Version="1.2.0.1702" />
<PackageReference Include="Microsoft.Graph.Communications.Client" Version="1.2.0.1702" />
<PackageReference Include="Microsoft.Graph.Communications.Common" Version="1.2.0.1702" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.30.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Net.Http.Formatting.Extension" Version="5.2.3" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Manifest\" />
<Folder Include="Images\" />
</ItemGroup>
</Project>