forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoreBot.Tests.csproj
41 lines (33 loc) · 1.58 KB
/
CoreBot.Tests.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Dialogs\TestData\FlightFromCdgToJfk.json" />
<None Remove="Dialogs\TestData\FlightFromMadridToChicago.json" />
<None Remove="Dialogs\TestData\FlightFromParisToNewYork.json" />
<None Remove="Dialogs\TestData\FlightToMadrid.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Dialogs\TestData\FlightFromCdgToJfk.json" />
<EmbeddedResource Include="Dialogs\TestData\FlightFromMadridToChicago.json" />
<EmbeddedResource Include="Dialogs\TestData\FlightFromParisToNewYork.json" />
<EmbeddedResource Include="Dialogs\TestData\FlightToMadrid.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.1" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.8.0" />
<PackageReference Include="Microsoft.Bot.Builder.Testing" Version="4.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\13.core-bot\CoreBot.csproj" />
</ItemGroup>
</Project>