Skip to content

Commit 57ee974

Browse files
committed
PathResolver clean-up
1 parent 32419d4 commit 57ee974

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Cli/PathResolver.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
using System;
1+
namespace Cleipnir.ResilientFunctions.Cli;
22

3-
namespace Cleipnir.ResilientFunctions.Cli;
4-
5-
public class PathResolver
3+
public static class PathResolver
64
{
75
public static RepoAndDotnetPaths ResolvePaths(OperatingSystem operatingSystem)
86
{
97
return operatingSystem switch
108
{
119
OperatingSystem.Windows =>
1210
new RepoAndDotnetPaths(
13-
RepoPath: @"../",
11+
RepoPath: "../",
1412
DotnetPath: @"C:\Program Files\dotnet\dotnet.exe"
1513
),
1614
OperatingSystem.Linux =>

0 commit comments

Comments
 (0)