Added Configuration to TestApplicationEnvironment

This commit is contained in:
David Fowler 2014-07-10 10:00:14 -07:00
parent 6afcadd66a
commit fbd2c4a08e
1 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,14 @@ namespace Microsoft.AspNet.TestHost.Tests
get { return Environment.CurrentDirectory; }
}
public string Configuration
{
get
{
return "debug";
}
}
public FrameworkName TargetFramework
{
get { return new FrameworkName(".NETFramework", new Version(4, 5)); }