* Directory.Packages.props should mandate used versions * Add NuGet audit mode setting to show any problems during restore * System.Text.Json should be 8.0.4 which is patched against security vulnerabilities * Fix build GH Actions generation Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>
|
|
Provides HTTP activities to listen for and send out HTTP requests.
|
|
</Description>
|
|
<PackageTags>elsa module http activities</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentStorage" />
|
|
</ItemGroup>
|
|
|
|
<!--Overridden for vulnerability reasons with dependencies referencing older versions.-->
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Text.Json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Elsa.Liquid\Elsa.Liquid.csproj" />
|
|
<ProjectReference Include="..\Elsa.Workflows.Runtime.ProtoActor\Elsa.Workflows.Runtime.ProtoActor.csproj" />
|
|
<ProjectReference Include="..\Elsa.SasTokens\Elsa.SasTokens.csproj" />
|
|
<ProjectReference Include="..\Elsa.Tenants\Elsa.Tenants.csproj" />
|
|
<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" />
|
|
</ItemGroup>
|
|
</Project>
|