Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/AssemblyAndConfigFile.cs
T
Dustin Campbell d4122f3a0c Correct namespaces to be pascal-cased
Conflicts:
	xunit.runner.wpf/ViewModel/MainViewModel.cs
2015-12-06 10:56:21 -08: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);
}
}
}
}