-
Notifications
You must be signed in to change notification settings - Fork 5
/
Covid19Bot.csproj
executable file
·36 lines (29 loc) · 1.02 KB
/
Covid19Bot.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
<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.AI.Luis" Version="4.8.0" />
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.8.0" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.8.0" />
</ItemGroup>
<ItemGroup>
<Content Remove="cards\Covid19Status.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="cards\Covid19Status.json" />
</ItemGroup>
<ItemGroup>
<Content Remove="cards\GlobalStatus.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="cards\GlobalStatus.json" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>