Skip to content

Commit d30a839

Browse files
Updated dependencies and coverage bits
1 parent 6bb90e8 commit d30a839

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

Common.Build.props

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
<Microsoft_Extensions_DependencyInjection_Version>2.0.0</Microsoft_Extensions_DependencyInjection_Version>
1414
<Newtonsoft_Version>11.0.2</Newtonsoft_Version>
1515
<SourceLink_Version>2.8.3</SourceLink_Version>
16-
<System_Reactive_Version>4.0.0</System_Reactive_Version>
16+
<System_Reactive_Version>4.1.2</System_Reactive_Version>
1717
<MediatR_Version>5.0.1</MediatR_Version>
1818
<MediatR_Extensions_DependencyInjection_Version>5.0.2</MediatR_Extensions_DependencyInjection_Version>
1919
<Autofac_Version>4.8.1</Autofac_Version>
20-
<Autofac_Extensions_DependencyInjection_Version>4.2.2</Autofac_Extensions_DependencyInjection_Version>
21-
<Microsoft_NET_Test_Sdk_Version>15.7.2</Microsoft_NET_Test_Sdk_Version>
22-
<xunit_Version>2.3.1</xunit_Version>
23-
<FluentAssertions_Version>5.4.1</FluentAssertions_Version>
20+
<Autofac_Extensions_DependencyInjection_Version>4.3.1</Autofac_Extensions_DependencyInjection_Version>
21+
<Microsoft_NET_Test_Sdk_Version>15.9.0</Microsoft_NET_Test_Sdk_Version>
22+
<xunit_Version>2.4.1</xunit_Version>
23+
<FluentAssertions_Version>5.5.3</FluentAssertions_Version>
2424
<NSubstitute_Version>3.1.0</NSubstitute_Version>
2525
<Serilog_Extensions_Logging_Version>2.0.2</Serilog_Extensions_Logging_Version>
26-
<Serilog_Sinks_XUnit_Version>1.0.5</Serilog_Sinks_XUnit_Version>
26+
<Serilog_Sinks_XUnit_Version>1.0.6</Serilog_Sinks_XUnit_Version>
2727
<XunitXml_TestLogger_Version>2.0.0</XunitXml_TestLogger_Version>
28-
<coverlet_Version>2.0.1</coverlet_Version>
28+
<coverlet_Version>2.4.0</coverlet_Version>
2929
</PropertyGroup>
3030
</Project>

test/Directory.Build.props

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@
66
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88

9-
<!-- <CollectCoverage>true</CollectCoverage> -->
10-
<CoverletOutputFormat>json,lcov,cobertura</CoverletOutputFormat>
11-
<CoverletOutputDirectory>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('Common.Build.props', '$(MSBuildThisFileDirectory)../'))))/coverage/</CoverletOutputDirectory>
12-
<CoverletOutputName>$(MSBuildProjectName)-$(TargetFramework)</CoverletOutputName>
9+
<DebugType>full</DebugType>
10+
<DebugSymbols>true</DebugSymbols>
11+
<CollectCoverage>true</CollectCoverage>
12+
<CoverletOutputFormat>json,lcov,cobertura,opencover</CoverletOutputFormat>
13+
<CoverletName>$(MSBuildProjectName.Replace('.', '-'))</CoverletName>
14+
<CoverletOutput Condition="'$(CoverageDirectory)'==''">$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('Common.Build.props', '$(MSBuildProjectDirectory)'))))/coverage/$(CoverletName)/</CoverletOutput>
15+
<CoverletOutput Condition="'$(CoverageDirectory)'!=''">$(CoverageDirectory)/$(CoverletName)</CoverletOutput>
1316
</PropertyGroup>
1417
</Project>

0 commit comments

Comments
 (0)