17 lines
287 B
C#
17 lines
287 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace FdtSharpWithTests
|
|
{
|
|
internal static class Utilities
|
|
{
|
|
public static string GetBinaryLocation(string name)
|
|
{
|
|
return Path.Combine(BinariesDirectory, name);
|
|
}
|
|
|
|
private static readonly string BinariesDirectory = "../../Trees";
|
|
}
|
|
}
|
|
|