1686f08040
Release pipeline / Get version (push) Has been cancelled
Release pipeline / Get Chart Name (push) Has been cancelled
Release pipeline / tests (push) Has been cancelled
Release pipeline / builds (push) Has been cancelled
Release pipeline / builds-ghcr (push) Has been cancelled
Release pipeline / test-deployments (push) Has been cancelled
Release pipeline / deploy (push) Has been cancelled
Release pipeline / Helm chart oci (push) Has been cancelled
Release pipeline / npm (push) Has been cancelled
Release pipeline / snyk (push) Has been cancelled
19 lines
751 B
C#
19 lines
751 B
C#
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<FilePath> 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);
|
|
}
|
|
}
|