* Incremental work on Telnyx integration * Incremental port of Telnyx activities * Fix polymorphic JSON serialization for webhook data * Fix IsFirstPass logic * Fix trigger base to prevent activity auto completion * Temporarily disable persistent snapshotting provider for testing * Fix namespaces * Add method to register activities in bulk using marker type * Fix Telnyx refit client setup * Register all Telnyx activities by default * Incremental work on webhook driven resumption and correlation * Incremental work on post-bookmark signaling * Fix bookmark resolution * Include correlation ID with bookmark * Fix Telnyx resumption input * Replace bookmark persisted signal with handler * Fix SpeakText completion * Add flow outcomes to SpeakText activity * Update GatherUsingSpeak and GatherUsingaudio * Refactor "is first pass" concept * Fix WebhookEvent activity * Add HTTP absolute URL provider * Formatting and small changes * Various API enhancements
25 lines
810 B
XML
25 lines
810 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\..\common.props" />
|
|
<Import Project="..\..\..\configureawait.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Description>
|
|
Provides a JavaScript expression provider.
|
|
</Description>
|
|
<PackageTags>elsa module expressions scripting javascript</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Elsa.Expressions\Elsa.Expressions.csproj" />
|
|
<ProjectReference Include="..\Elsa.Mediator\Elsa.Mediator.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Core\Elsa.Workflows.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jint" Version="3.0.0-preview-328" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|