2022-01-04 08:42:12 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2023-09-17 20:35:13 +00:00
|
|
|
<Import Project="..\..\..\packages.props" />
|
2022-11-03 20:40:23 +00:00
|
|
|
|
2022-01-04 08:42:12 +00:00
|
|
|
<PropertyGroup>
|
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>
|
|
|
|
|
|
2023-11-27 10:26:16 +00:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0'">
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="7.0.14"/>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0"/>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0"/>
|
|
|
|
|
<PackageReference Include="AspNetCore.Authentication.ApiKey" Version="7.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0"/>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0"/>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0"/>
|
|
|
|
|
<PackageReference Include="AspNetCore.Authentication.ApiKey" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-01-04 08:42:12 +00:00
|
|
|
<ItemGroup>
|
2023-09-16 10:02:51 +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-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>
|
2023-09-16 10:02:51 +00:00
|
|
|
<ProjectReference Include="..\Elsa.Liquid\Elsa.Liquid.csproj"/>
|
2023-09-24 22:38:06 +00:00
|
|
|
<ProjectReference Include="..\Elsa.SasTokens\Elsa.SasTokens.csproj" />
|
2023-09-16 10:02:51 +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>
|