mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-25 06:32:51 +08:00
11 lines
238 B
C#
11 lines
238 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Ocelot.AcceptanceTests
|
|
{
|
|
public static class TestConfiguration
|
|
{
|
|
public static string ConfigurationPath => Path.Combine(AppContext.BaseDirectory, "configuration.json");
|
|
}
|
|
}
|