2024-01-26 16:34:59 +00:00
|
|
|
<Project>
|
|
|
|
|
|
2025-09-13 11:05:52 +00:00
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"/>
|
2024-01-26 16:34:59 +00:00
|
|
|
|
2025-09-13 11:05:52 +00:00
|
|
|
<PropertyGroup>
|
2025-11-21 19:55:30 +00:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-09-13 11:05:52 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
2025-10-07 17:59:53 +00:00
|
|
|
<CollectCoverage Condition="'$(CollectCoverage)' == ''">true</CollectCoverage>
|
|
|
|
|
<CoverletOutputFormat Condition="'$(CoverletOutputFormat)' == ''">cobertura,lcov,opencover</CoverletOutputFormat>
|
|
|
|
|
<CoverletOutput Condition="'$(CoverletOutput)' == ''">$(MSBuildThisFileDirectory)../artifacts/coverage/$(MSBuildProjectName)/coverage</CoverletOutput>
|
|
|
|
|
<Threshold Condition="'$(Threshold)' == ''">10</Threshold>
|
|
|
|
|
<ThresholdType Condition="'$(ThresholdType)' == ''">line</ThresholdType>
|
|
|
|
|
<ThresholdStat Condition="'$(ThresholdStat)' == ''">total</ThresholdStat>
|
|
|
|
|
<Exclude>
|
|
|
|
|
[*Elsa.Testing.Shared*]*
|
|
|
|
|
</Exclude>
|
2025-09-13 11:05:52 +00:00
|
|
|
</PropertyGroup>
|
2024-01-26 16:34:59 +00:00
|
|
|
|
2025-09-13 11:05:52 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="GitHubActionsTestLogger"/>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing"/>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
|
|
|
|
|
<PackageReference Include="Moq"/>
|
|
|
|
|
<PackageReference Include="NSubstitute"/>
|
2025-10-07 17:59:53 +00:00
|
|
|
<PackageReference Include="coverlet.msbuild"/>
|
2025-11-12 12:59:36 +00:00
|
|
|
<PackageReference Include="coverlet.collector">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2025-09-13 11:05:52 +00:00
|
|
|
<PackageReference Include="xunit"/>
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="all"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Using Include="Xunit"/>
|
|
|
|
|
</ItemGroup>
|
2024-02-04 09:15:08 +00:00
|
|
|
|
2025-10-07 17:59:53 +00:00
|
|
|
</Project>
|