Skip to content

Commit 3021131

Browse files
authored
Merge pull request #4152 from GitTools/dependabot/nuget/src/analyzers-6e32ee7cee
(deps): Bump NUnit.Analyzers from 4.2.0 to 4.3.0 in /src in the analyzers group across 1 directory
2 parents ad76a5f + 70ee4e0 commit 3021131

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Directory.Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PackageVersion Include="Microsoft.Win32.Registry" Version="6.0.0-preview.5.21301.5" />
3333
<PackageVersion Include="NSubstitute" Version="5.1.0" />
3434
<PackageVersion Include="NUnit" Version="4.1.0" />
35-
<PackageVersion Include="NUnit.Analyzers" Version="4.2.0" />
35+
<PackageVersion Include="NUnit.Analyzers" Version="4.3.0" />
3636
<PackageVersion Include="NUnit3TestAdapter" Version="4.6.0" />
3737
<PackageVersion Include="Shouldly" Version="4.2.1" />
3838
<PackageVersion Include="System.Text.Json" Version="8.0.4" />

src/GitVersion.MsBuild.Tests/Tasks/GenerateGitVersionInformationTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public void GenerateGitVersionInformationTaskShouldCreateFileWhenRunWithMsBuildA
245245
result.Output.ShouldContain($"{outputProperty}: {generatedFilePath}");
246246

247247
var fileContent = File.ReadAllText(generatedFilePath);
248-
TestContext.WriteLine(fileContent);
248+
TestContext.Out.WriteLine(fileContent);
249249
fileContent.ShouldMatch(string.Format(regexPattern, nameof(GitVersionVariables.Major), "1"));
250250
fileContent.ShouldMatch(string.Format(regexPattern, nameof(GitVersionVariables.Minor), "2"));
251251
fileContent.ShouldMatch(string.Format(regexPattern, nameof(GitVersionVariables.Patch), "4"));

0 commit comments

Comments
 (0)