-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNotificationBot.csproj
30 lines (25 loc) · 1.2 KB
/
NotificationBot.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>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\Lab.Swashbuckle.AspNetCore6.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Content Include="Pages\Index.cshtml.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\PublishProfiles\cleantestbot - Web Deploy.pubxml.user" />
<None Include="Properties\PublishProfiles\FolderProfile.pubxml.user" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bot.Builder" Version="4.19.3" />
<PackageReference Include="Microsoft.Bot.Schema" Version="4.19.3" />
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="6.0.16" />
<PackageReference Include="Microsoft.Graph.Communications.Client" Version="1.2.0.5304" />
<PackageReference Include="Microsoft.Identity.Web" Version="1.26.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
</ItemGroup>
</Project>