-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBot.Builder.Community.Adapters.Infobip.Messages.csproj
More file actions
104 lines (88 loc) · 4.69 KB
/
Bot.Builder.Community.Adapters.Infobip.Messages.csproj
File metadata and controls
104 lines (88 loc) · 4.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)../', 'Bot.Builder.Community.sln'))\CommonTargets\library.shared.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>7.3</LangVersion>
<!-- Package Information -->
<PackageId>Bot.Builder.Community.Adapters.Infobip.Messages</PackageId>
<Title>Bot Builder Community - Infobip Messages API Adapter</Title>
<Description>Adapter for v4 of the Bot Builder .NET SDK for connecting bots with Infobip Messages API. Supports all current and future channels (WhatsApp, SMS, MMS, Viber, LINE, etc.) with interactive messaging features like buttons, lists, templates, media attachments, and delivery reports.</Description>
<Summary>Infobip Messages API adapter for Bot Framework v4 with multi-channel support and interactive messaging capabilities.</Summary>
<!-- URLs and Links -->
<PackageProjectUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/tree/master/libraries/Bot.Builder.Community.Adapters.Infobip.Messages</PackageProjectUrl>
<RepositoryUrl>https://github.com/BotBuilderCommunity/botbuilder-community-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Package Metadata -->
<PackageTags>microsoft;bot;adapter;infobip;messages;whatsapp;sms;mms;viber;line;rcs;botframework;botbuilder;bots;interactive;templates;multimedia</PackageTags>
<PackageReleaseNotes>
v1.0.0:
- Initial release with comprehensive Infobip Messages API support
- Multi-channel messaging (WhatsApp, SMS, MMS, Viber, LINE, RCS, etc.)
- Interactive messaging features (buttons, lists, carousels)
- WhatsApp Business API template support
- Media message handling (images, documents, videos, audio)
- Location sharing and contact management
- Delivery and seen report tracking
- Callback data for message tracking
- Advanced features (entity/app ID tracking, validity periods, URL shortening)
- Regional compliance options (India DLT, Turkey IYS)
- Comprehensive configuration and testing support
</PackageReleaseNotes>
<!-- Build Configuration -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<!-- Version Information -->
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageVersion>1.0.0</PackageVersion>
<!-- Additional Metadata -->
<Authors>Bot Builder Community</Authors>
<Company>Bot Builder Community</Company>
<Product>Bot Builder Community Extensions</Product>
<Copyright>© Bot Builder Community. All rights reserved.</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<!-- Build Warnings -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
<NoWarn>$(NoWarn);CS1591</NoWarn> <!-- Missing XML documentation -->
</PropertyGroup>
<!-- Package Content -->
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.Bot.Builder" Version="$(Bot_Builder_Version)" />
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="$(Bot_Builder_Version)" />
</ItemGroup>
<!-- Project References -->
<ItemGroup>
<ProjectReference Include="..\Bot.Builder.Community.Adapters.Infobip.Core\Bot.Builder.Community.Adapters.Infobip.Core.csproj" />
</ItemGroup>
<!-- Conditional Compilation -->
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DefineConstants>TRACE</DefineConstants>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<!-- Source Link Support -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>