@@ -0,0 +1,19 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user