Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/AssemblyAndConfigFile.cs
T
2018-05-05 16:21:00 -07:00

19 lines
526 B
C#

using System.IO;
namespace Xunit.Runner.Wpf.ViewModel
{
public class AssemblyAndConfigFile
{
public string AssemblyFileName { get; }
public string? ConfigFileName { get; }
public AssemblyAndConfigFile(string assemblyFileName, string? configFileName)
{
this.AssemblyFileName = Path.GetFullPath(assemblyFileName);
if (configFileName != null)
{
this.ConfigFileName = Path.GetFullPath(configFileName);
}
}
}
}