-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdaptiveCardsHelpBot.csproj
53 lines (47 loc) · 2.5 KB
/
AdaptiveCardsHelpBot.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<CodeAnalysisRuleSet>AdaptiveCardsHelpBot.ruleset</CodeAnalysisRuleSet>
<UserSecretsId>0b26e559-2a1e-4768-88e1-f9b98f282f7b</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
<PackageReference Include="Microsoft.Azure.CognitiveServices.ContentModerator" Version="0.12.1-preview" />
<PackageReference Include="Microsoft.Azure.CognitiveServices.Language" Version="1.0.1-preview" />
<PackageReference Include="Microsoft.Bot.Builder" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Builder.AI.Luis" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Configuration" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Connector" Version="4.0.7" />
<PackageReference Include="Microsoft.Bot.Schema" Version="4.0.7" />
<PackageReference Include="Microsoft.Graph" Version="1.10.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta008">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services" />
</ItemGroup>
<ItemGroup>
<None Update="*.bot">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Update="StaticCards\Hosts\BotFramework\Versions.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="StaticCards\Hosts\OutlookActionableMessages\Versions.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="StaticCards\Hosts\Timeline\Versions.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="PostDeployScripts\IncludeSources.targets" Condition="Exists('PostDeployScripts\IncludeSources.targets')" />
<Import Project="..\PostDeployScripts\IncludeSources.targets" Condition="Exists('..\PostDeployScripts\IncludeSources.targets')" />
</Project>