10 lines
190 B
C#
Executable File
10 lines
190 B
C#
Executable File
namespace dotless.Core.Input
|
|
{
|
|
public class RelativePathResolver : IPathResolver
|
|
{
|
|
public string GetFullPath(string path)
|
|
{
|
|
return path;
|
|
}
|
|
}
|
|
} |