React to `IAssemptyEnvironment` breaking change

This commit is contained in:
Doug Bunting 2015-07-20 17:24:13 -07:00
parent 81f8b3edfb
commit b908a7ef6a
1 changed files with 10 additions and 0 deletions

View File

@ -50,5 +50,15 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
{
get { return _originalAppEnvironment.RuntimeFramework; }
}
public object GetData(string name)
{
return _originalAppEnvironment.GetData(name);
}
public void SetData(string name, object value)
{
_originalAppEnvironment.SetData(name, value);
}
}
}