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
|
|
|
|
|
2025-03-18 14:44:54 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-transfer_phone_call.json" />
|
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-hangup_phone_call.json" />
|
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-text_message.json" />
|
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-outbound_phone_call.json" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-11-19 19:05:12 +00:00
|
|
|
|
<ItemGroup>
|
2025-03-19 19:37:08 +00:00
|
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-leave_voicemail.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2025-03-17 22:09:02 +00:00
|
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-twilio-transfer_phone_call.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-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>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|