The test coverage here actually proves that for Liquid expressions,
the issue has already been fixed as part of other work. Specifically
it was fixed in 2a22a328c4 in the
class StringExtensions.cs
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Elsa</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofixture" Version="4.16.0" />
|
|
<PackageReference Include="Autofixture.AutoMoq" Version="4.16.0" />
|
|
<PackageReference Include="autofixture.xunit2" Version="4.16.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="XunitXml.TestLogger" Version="3.0.66" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="3.0.3">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../../../src/core/Elsa.Abstractions/Elsa.Abstractions.csproj" />
|
|
<ProjectReference Include="../../shared/Elsa.Testing.Shared/Elsa.Testing.Shared.csproj" />
|
|
<ProjectReference Include="..\..\..\src\activities\Elsa.Activities.Http\Elsa.Activities.Http.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|