-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleBot.csproj
37 lines (30 loc) · 1022 Bytes
/
SampleBot.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DeploymentTemplates\**" />
<Content Remove="DeploymentTemplates\**" />
<EmbeddedResource Remove="DeploymentTemplates\**" />
<None Remove="DeploymentTemplates\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE.md" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\logo.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.8.0" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>