-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathElsa.Testing.Shared.csproj
More file actions
24 lines (20 loc) · 986 Bytes
/
Copy pathElsa.Testing.Shared.csproj
File metadata and controls
24 lines (20 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>
Provides common utilities that are helpful when writing tests against Elsa Workflows functionality.
</Description>
<PackageTags>elsa, unit testing</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="xunit.assert" />
<PackageReference Include="xunit.extensibility.core" />
<PackageReference Include="NSubstitute" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\modules\Elsa.Expressions.CSharp\Elsa.Expressions.CSharp.csproj" />
<ProjectReference Include="..\..\modules\Elsa.Expressions.JavaScript\Elsa.Expressions.JavaScript.csproj" />
<ProjectReference Include="..\..\modules\Elsa.Expressions.Liquid\Elsa.Expressions.Liquid.csproj" />
<ProjectReference Include="..\..\modules\Elsa\Elsa.csproj" />
</ItemGroup>
</Project>