-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathBot.Builder.Community.Components.Storage.csproj
52 lines (47 loc) · 2.46 KB
/
Bot.Builder.Community.Components.Storage.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)../', 'Bot.Builder.Community.sln'))\CommonTargets\library.shared.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RepositoryUrl>https://github.com/Stevenic/botbuilder-community-dotnet/tree/develop/libraries/Bot.Builder.Community.Components.Storage</RepositoryUrl>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseUrl />
<PackageLicenseExpression></PackageLicenseExpression>
<Description>Composer actions for reading and writing objects directly to the bots configured storage provider.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/Stevenic/botbuilder-community-dotnet/tree/develop/libraries/Bot.Builder.Community.Components.Storage</PackageProjectUrl>
<Version>1.0.2-preview</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>msbot-component;msbot-action</PackageTags>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bot.Builder" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Connector" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Builder.Dialogs.Adaptive" Version="$(Bot_Builder_Version)" />
</ItemGroup>
<ItemGroup>
<Content Include="**/*.dialog" />
<Content Include="**/*.lg" />
<Content Include="**/*.lu" />
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
<Content Include="**/*.qna" />
</ItemGroup>
<ItemGroup>
<None Remove="Schemas\BotBuilderCommunity.StorageDeleteItem.schema" />
<None Remove="Schemas\BotBuilderCommunity.StorageDeleteItem.uischema" />
<None Remove="Schemas\BotBuilderCommunity.StorageReadItem.schema" />
<None Remove="Schemas\BotBuilderCommunity.StorageReadItem.uischema" />
<None Remove="Schemas\BotBuilderCommunity.StorageWriteItem.schema" />
<None Remove="Schemas\BotBuilderCommunity.StorageWriteItem.uischema" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\package-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>