forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCafeBot.csproj
43 lines (38 loc) · 2.04 KB
/
CafeBot.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
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<CodeAnalysisRuleSet>BotBuilder.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.7" />
<PackageReference Include="Microsoft.Bot.Builder" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Configuration" Version="4.1.5" />
<PackageReference Include="AsyncUsageAnalyzers" Version="1.0.0-alpha003" PrivateAssets="all" />
<PackageReference Include="Microsoft.Bot.Connector" Version="4.1.5" />
<PackageReference Include="Microsoft.Bot.Schema" Version="4.1.5" />
<PackageReference Include="Microsoft.Recognizers.Text.Choice" Version="1.1.2" />
<PackageReference Include="Microsoft.Recognizers.Text.DataTypes.TimexExpression" Version="1.1.2" />
<PackageReference Include="Microsoft.Recognizers.Text.DateTime" Version="1.1.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta008" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Content Update="Dialogs\Welcome\Resources\welcomeCard.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Dialogs\WhatCanYouDo\Resources\whatCanYouDoCard.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Dialogs\WhoAreYou\Resources\getNameCard.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Dialogs\ChitChat\Resources\" />
<Folder Include="Dialogs\Help\" />
</ItemGroup>
</Project>