using Ara3D.Logging; using Ara3D.Speckle.Data; using Ara3D.Utils; namespace Ara3D.IfcParser.Test { public static class Config { public static ILogger CreateLogger() => new Logger(LogWriter.ConsoleWriter, ""); public static FilePath AC20Haus => InputFolder.RelativeFile("AC20-FZK-Haus.ifc"); public static DirectoryPath InputFolder => PathUtil.GetCallerSourceFolder().RelativeFolder("..", "test-files"); public static IReadOnlyList Files => InputFolder.GetFiles("*.ifc").ToList(); // TODO: replace this with your own project id locally public static string TestProjectId = "5ff38fb6b1"; public static string TestProjectUrl = SpeckleUtils.ProjectUrl(TestProjectId); } }