-
Notifications
You must be signed in to change notification settings - Fork 1
/
BikeMikeBot.csproj
31 lines (27 loc) · 1.11 KB
/
BikeMikeBot.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>latest</LangVersion>
<UserSecretsId></UserSecretsId>
<Authors>BikeMike</Authors>
<Product>BikeMike</Product>
<PackageId>BikeMike</PackageId>
<AssemblyName>BikeMike</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Azure.Search" Version="10.0.0" />
<PackageReference Include="Microsoft.Bot.Builder.Azure" Version="4.5.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.5.2" />
<PackageReference Include="Microsoft.Bot.Builder.StreamingExtensions" Version="4.5.1-preview1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3-beta1" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings - Copy.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>