Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Dec 21, 2024
1 parent 6a2db6e commit e530e91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/ReportGenerator.Core/Parser/Analysis/Class.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ internal Class(string name, Assembly assembly)
{
}


/// <summary>
/// Initializes a new instance of the <see cref="Class"/> class.
/// </summary>
/// <param name="name">The name of the class.</param>
/// <param name="rawName">The raw name of the class.</param>
/// <param name="assembly">The assembly.</param>
internal Class(string name, string rawName, Assembly assembly)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ internal class CoverageByTrackedMethod
{
/// <summary>
/// Gets or sets an array containing the coverage information by line number.
/// -1: Not coverable
/// 0: Not visited
/// >0: Number of visits
/// -1: Not coverable.
/// 0: Not visited.
/// >0: Number of visits.
/// </summary>
internal int[] Coverage { get; set; }

Expand Down

0 comments on commit e530e91

Please sign in to comment.