Skip to content

Commit

Permalink
chore(deps): update dependency verify.xunit to v23.2.2 (#867)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency verify.xunit to v23.2.2

* Update global.json

* Update dependant Packages

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Chris Pulman <chris.pulman@yahoo.com>
  • Loading branch information
renovate[bot] and ChrisPulman committed Mar 14, 2024
1 parent 0ab0f52 commit bdad65b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</ItemGroup>
<ItemGroup Condition="!$(IsTestProject) AND !$(IsBenchmarkProject)">
<PackageReference Include="stylecop.analyzers" Version="1.2.0-beta.556" PrivateAssets="all" />
<PackageReference Include="Roslynator.Analyzers" Version="4.10.0" PrivateAssets="All" />
<PackageReference Include="Roslynator.Analyzers" Version="4.11.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="!$(IsTestProject) AND !$(IsBenchmarkProject)">
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" Link="stylecop.json" />
Expand Down
8 changes: 4 additions & 4 deletions src/DynamicData.Tests/DynamicData.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<NoWarn>$(NoWarn);CS0618;CA1801;CA1812;CA1816;CA1063;CS8767;CS8602;CS8618;IDE1006</NoWarn>
<XunitVersion>2.6.6</XunitVersion>
<XunitVersion>2.7.0</XunitVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DynamicData\DynamicData.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Bogus" Version="35.4.1" />
<PackageReference Include="Bogus" Version="35.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.console" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7" />
<PackageReference Include="Verify.Xunit" Version="23.1.0" />
<PackageReference Include="Verify.Xunit" Version="23.5.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.Reactive.Testing" Version="6.0.0" />
<PackageReference Include="PublicApiGenerator" Version="11.1.0" />
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/DynamicData/Cache/Internal/BatchIf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void ResumeAction()
return;
}
var resultingBatch = new ChangeSet<TObject, TKey>(batchedChanges.Select(cs => cs.Count).Sum());
var resultingBatch = new ChangeSet<TObject, TKey>(batchedChanges.Sum(cs => cs.Count));
foreach (var cs in batchedChanges)
{
resultingBatch.AddRange(cs);
Expand Down
3 changes: 1 addition & 2 deletions src/global.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"sdk": {
"version": "8.0.201",
"rollForward": "latestMinor",
"allowPrerelease": true
"rollForward": "latestMinor"
},
"msbuild-sdks": {
"MSBuild.Sdk.Extras": "3.0.44"
Expand Down

0 comments on commit bdad65b

Please sign in to comment.