2022-01-04 08:42:12 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2022-11-19 21:30:43 +00:00
|
|
|
<Import Project="..\..\..\common.props" />
|
|
|
|
|
<Import Project="..\..\..\configureawait.props" />
|
2022-11-03 20:40:23 +00:00
|
|
|
|
2022-01-04 08:42:12 +00:00
|
|
|
<PropertyGroup>
|
2022-12-22 14:40:31 +00:00
|
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
2022-11-03 20:40:23 +00:00
|
|
|
<Description>
|
|
|
|
|
Provides HTTP activities to listen for and send out HTTP requests.
|
|
|
|
|
</Description>
|
2022-11-11 20:25:14 +00:00
|
|
|
<PackageTags>elsa module http activities</PackageTags>
|
2022-01-04 08:42:12 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-12-22 14:55:20 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="7.0.1" />
|
2022-11-19 21:30:43 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.2.2" />
|
2022-12-22 14:55:20 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
2022-05-26 10:47:31 +00:00
|
|
|
</ItemGroup>
|
2022-11-03 20:40:23 +00:00
|
|
|
|
2022-05-26 10:47:31 +00:00
|
|
|
<ItemGroup>
|
2022-11-19 21:30:43 +00:00
|
|
|
<ProjectReference Include="..\Elsa.Workflows.Core\Elsa.Workflows.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Elsa.Workflows.Management\Elsa.Workflows.Management.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Elsa.Workflows.Runtime\Elsa.Workflows.Runtime.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Elsa.JavaScript\Elsa.JavaScript.csproj" />
|
2022-01-04 08:42:12 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|