BotSharp/src/Plugins/BotSharp.Plugin.Twilio/BotSharp.Plugin.Twilio.csproj

41 lines
1.6 KiB
XML
Raw Normal View History

2025-03-10 15:10:22 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2023-11-09 20:02:57 +00:00
<PropertyGroup>
2024-02-08 23:22:43 +00:00
<TargetFramework>$(TargetFramework)</TargetFramework>
2023-11-09 20:02:57 +00:00
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2024-01-22 02:39:42 +00:00
<OutputPath>$(SolutionDir)packages</OutputPath>
2025-03-10 15:10:22 +00:00
<Nullable>enable</Nullable>
2023-11-09 20:02:57 +00:00
</PropertyGroup>
2024-12-04 22:12:02 +00:00
2024-11-19 19:05:12 +00:00
<ItemGroup>
2025-02-26 17:41:52 +00:00
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-hangup_phone_call.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2025-03-14 21:44:19 +00:00
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-text_message.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2025-02-26 17:41:52 +00:00
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-outbound_phone_call.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2024-11-19 19:05:12 +00:00
</ItemGroup>
2023-11-09 20:02:57 +00:00
<ItemGroup>
2025-03-01 19:44:52 +00:00
<PackageReference Include="StackExchange.Redis" />
<PackageReference Include="StrongGrid" />
<PackageReference Include="Twilio.AspNet.Common" />
<PackageReference Include="Twilio.AspNet.Core" />
2023-11-09 20:02:57 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2024-08-08 19:54:32 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-11-09 20:02:57 +00:00
</ItemGroup>
2025-03-15 02:06:40 +00:00
<ItemGroup>
<Folder Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\templates\" />
</ItemGroup>
2023-11-09 20:02:57 +00:00
</Project>