-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBot.Builder.Community.Components.Dialogs.Input.csproj
More file actions
42 lines (35 loc) · 1.88 KB
/
Bot.Builder.Community.Components.Dialogs.Input.csproj
File metadata and controls
42 lines (35 loc) · 1.88 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)../', 'Bot.Builder.Community.sln'))\CommonTargets\library.shared.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>A collection of custom input for Bot Framework Composer</Description>
<Company>Bot Builder Community</Company>
<PackageLicenseUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/tree/master/libraries/Bot.Builder.Community.Components.Dialogs.Input</PackageProjectUrl>
<Version>0.0.1</Version>
<FileVersion>1.0.0</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageIcon>package-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageTags>composer;botframework;botbuilder;msbot-component;msbot-action</PackageTags>
<NoWarn>$(NoWarn);NU5104</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="2.7.1" />
<PackageReference Include="Microsoft.Bot.Builder" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Declarative" Version="$(Bot_Builder_Version)" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\package-icon.png" Link="package-icon.png">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
</ItemGroup>
</Project>