This exception is thrown in the method
public Stream GetFileData(AppFileInfo fileInfo) { var path = Path.Combine(TestConfigPath, fileInfo.RelativePath, fileInfo.FileName); return File.OpenRead(path); }
And in the exception is the path:
D: \ CS \ BCDemo.sln
I need a way
D: \ TestRemoteConfigsCS \ BCDemo \ CS \ BCDemo.sln path = CS \ BCDemo.sln
and should be
D: \ TestRemoteConfigsCS \ BCDemo \ CS \ BCDemo.sln
private string TestConfigPath { get { return Path.Combine(@"D:\TestRemoteConfigs", _configInfo.Url); } } }
path
variableTestConfigPath
- whatTestConfigPath
it return? - Denis Bubnov