19 lines
595 B
XML
19 lines
595 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>
|
|
Provides a way to register webhook endpoints that should be invoked when certain event occur.
|
|
</Description>
|
|
<PackageTags>elsa, module, webhooks</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Elsa.Workflows.Runtime\Elsa.Workflows.Runtime.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |