generated from dotnet/new-repo
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More closely emulate NuGet package import and add DebugType tests
- Loading branch information
1 parent
8010934
commit b195e98
Showing
4 changed files
with
48 additions
and
29 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
tests/DotNet.ReproducibleBuilds.Tests/FileSystemInfoExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace DotNet.ReproducibleBuilds.Tests; | ||
|
||
internal static class FileSystemInfoExtensions | ||
{ | ||
public static string Combine(this FileSystemInfo info, params string[] paths) | ||
{ | ||
return Path.Combine([info.FullName, ..paths]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters