forked from OfficeDev/Microsoft-Teams-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TeamsVirtualAssistant.csproj
57 lines (52 loc) · 2.84 KB
/
TeamsVirtualAssistant.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<NoWarn>NU1701</NoWarn>
<RootNamespace>Microsoft.Teams.Apps.VirtualAssistant</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="1.2.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
<PackageReference Include="Microsoft.Azure.CognitiveServices.ContentModerator" Version="2.0.0" />
<PackageReference Include="Microsoft.Azure.CognitiveServices.Language" Version="1.0.1-preview" />
<PackageReference Include="Microsoft.Bot.Builder" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.AI.QnA" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.ApplicationInsights" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Builder.LanguageGeneration" Version="4.7.2-preview" />
<PackageReference Include="Microsoft.Bot.Configuration" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Connector" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Schema" Version="4.7.2" />
<PackageReference Include="Microsoft.Bot.Solutions" Version="0.8.0-preview2" />
</ItemGroup>
<ItemGroup>
<None Update="Responses\MainResponses.de-de.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Responses\MainResponses.es-es.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Responses\MainResponses.fr-fr.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Responses\MainResponses.it-it.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Responses\MainResponses.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Responses\MainResponses.zh-cn.lg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>