Skip to content

Commit

Permalink
SDK Adapters: include schemas guaranteing no duplicates in package (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosscastro authored Apr 14, 2021
1 parent 828f08c commit 3fd2a3e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@
<Description>Library for connecting bots with Facebook.</Description>
<Summary>This library implements C# classes for the Facebook adapter.</Summary>
<PackageTags>msbot-component;msbot-adapter</PackageTags>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>Full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' == '' " Version="$(LocalPackageVersion)" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' != '' " Version="$(ReleasePackageVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>Library for connecting bots with Slack.</Description>
<Summary>This library implements C# classes for the Slack adapter.</Summary>
<PackageTags>msbot-component;msbot-adapter</PackageTags>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -26,6 +27,11 @@
<NoWarn>$(NoWarn);CS8002;CS1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="SlackAPI" Version="1.1.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>Library for connecting bots with Twilio SMS API.</Description>
<Summary>This library implements C# classes for Twilio adapter.</Summary>
<PackageTags>msbot-component;msbot-adapter</PackageTags>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -26,6 +27,11 @@
<NoWarn>$(NoWarn),CS8002</NoWarn>
</PropertyGroup>

<ItemGroup>
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Twilio" Version="5.37.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' == '' " Version="$(LocalPackageVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>Library for connecting bots with Webex Teams API.</Description>
<Summary>This library implements C# classes for the Webex Adapter</Summary>
<PackageTags>msbot-component;msbot-adapter</PackageTags>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -25,6 +26,11 @@
<NoWarn>$(NoWarn);CS8002;</NoWarn>
</PropertyGroup>

<ItemGroup>
<Content Include="**/*.schema" />
<Content Include="**/*.uischema" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Thrzn41.WebexTeams" Version="1.6.2" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Condition=" '$(ReleasePackageVersion)' == '' " Version="$(LocalPackageVersion)" />
Expand Down

0 comments on commit 3fd2a3e

Please sign in to comment.