Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/AssemblyAndConfigFile.cs
T
2015-08-15 21:43:24 -07:00

19 lines
524 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);
}
}
}
}