-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceDeskChatBot.csproj
More file actions
24 lines (24 loc) · 1020 Bytes
/
ServiceDeskChatBot.csproj
File metadata and controls
24 lines (24 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<UserSecretsId>e7d200cf-e017-467c-a078-5942651d0916</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Bots\EchoBot.cs" />
<Compile Remove="Bots\GreetingBot.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.11.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.5.1" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.5.1" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.5.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>