2022-04-12 13:55:35 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-12-22 14:40:31 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-04-12 13:55:35 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-23 13:49:46 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
2023-03-02 20:21:50 +00:00
|
|
|
<PackageReference Include="Moq" Version="4.18.4" />
|
2023-02-23 13:49:46 +00:00
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
2022-04-12 13:55:35 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2023-02-23 13:49:46 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
2022-04-12 13:55:35 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-03-02 20:21:50 +00:00
|
|
|
<ItemGroup>
|
2023-03-03 09:40:53 +00:00
|
|
|
<ProjectReference Include="..\..\..\src\modules\Elsa.JavaScript\Elsa.JavaScript.csproj" />
|
2023-03-02 20:21:50 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-12 13:55:35 +00:00
|
|
|
</Project>
|