React to `IAssemptyEnvironment` breaking change
This commit is contained in:
parent
81f8b3edfb
commit
b908a7ef6a
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue