-
Notifications
You must be signed in to change notification settings - Fork 5
/
Iciclecreek.AdaptiveExpressions.Python.csproj
46 lines (41 loc) · 1.95 KB
/
Iciclecreek.AdaptiveExpressions.Python.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>4.20.0</Version>
<AssemblyVersion>4.20.0.0</AssemblyVersion>
<Description>Adds Python functions to AdaptiveExpressions</Description>
<Company>Iciclecreek</Company>
<Authors>Tom Laird-McConnell</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/tomlm/iciclecreek.bot/tree/master/source/Libraries/Iciclecreek.AdaptiveExpressions.Python</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/tomlm/iciclecreek.bot/master/icon.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<PackageTags>bot,adaptive,python,msbot-component,msbot-function</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/tomlm/iciclecreek.bot</RepositoryUrl>
<Copyright></Copyright>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
<None Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Content Include="**/*.dialog" />
<Content Include="**/*.lg" />
<Content Include="**/*.lu" />
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
<Content Include="**/*.qna" />
<Content Include="**/*.yaml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IronPython" Version="2.7.11" />
<PackageReference Include="IronPython.StdLib" Version="2.7.11" />
<PackageReference Include="Microsoft.Bot.Builder" Version="4.20.0" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Declarative" Version="4.20.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.22" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>