Skip to content

Commit 4d12936

Browse files
committed
chore: update snapshot files
1 parent 63607c5 commit 4d12936

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

source/Nuke.GlobalTool.Tests/cake-scripts/paths.verified.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
@@ -40,9 +40,13 @@
4040
class Build : NukeBuild
4141
{
4242
AbsolutePath LocalPackagesDir => RootDirectory / ".." / "LocalPackages";
43+
4344
AbsolutePath SourceFolder => RootDirectory / "source";
45+
4446
AbsolutePath PublishDir => RootDirectory / "publish";
47+
4548
AbsolutePath SignToolPath => RootDirectory / "certificates" / "signtool.exe";
49+
4650
private string Convert(AbsolutePath file)
4751
{
4852
file = (AbsolutePath)file;

source/Nuke.GlobalTool.Tests/cake-scripts/targets.verified.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
@@ -46,6 +46,7 @@ class Build : NukeBuild
4646
System.Console.WriteLine();
4747
});
4848

49+
4950
Target B => _ => _
5051
.DependsOn(A)
5152
.DependentFor(A)
@@ -54,6 +55,7 @@ class Build : NukeBuild
5455
System.Console.WriteLine();
5556
});
5657

58+
5759
Target C_1 => _ => _
5860
.DependsOn(B)
5961
.OnlyWhenStatic(() => staticCondition)

source/Nuke.SourceGenerators.Tests/StronglyTypedSolutionGeneratorTest.Test#StronglyTypedSolutionGenerator.verified.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ internal class Solution : Nuke.Common.ProjectModel.Solution
3232
public Project Nuke_Utilities_Text_Yaml => SolutionFolder.GetProject("Nuke.Utilities.Text.Yaml");
3333
public Project Nuke_Utilities_IO_Compression => SolutionFolder.GetProject("Nuke.Utilities.IO.Compression");
3434
public _misc misc => new(SolutionFolder.GetSolutionFolder("misc"));
35+
3536
internal class _misc
3637
{
3738
private SolutionFolder SolutionFolder { get; }
3839

3940
public _misc(SolutionFolder solutionFolder) => SolutionFolder = solutionFolder;
4041
}
41-
}
42+
}

0 commit comments

Comments
 (0)