Fixing a bug I had in the Muxer where I was going to high in the folder structure and missing the version part of it.

This commit is contained in:
Livar Cunha 2016-11-23 11:04:33 -08:00
parent d5f7efbe86
commit 99f30b3ea8

View file

@ -15,7 +15,7 @@ namespace Microsoft.DotNet.Cli.Utils
{
get
{
var depsFile = new FileInfo(Path.GetDirectoryName(GetDataFromAppDomain("FX_DEPS_FILE")));
var depsFile = new FileInfo(GetDataFromAppDomain("FX_DEPS_FILE"));
return depsFile.Directory.Name;
}
}