From fbd2c4a08ea86ab1374e2668c1a881f7d9d577f4 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 10 Jul 2014 10:00:14 -0700 Subject: [PATCH] Added Configuration to TestApplicationEnvironment --- .../TestApplicationEnvironment.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/Microsoft.AspNet.TestHost.Tests/TestApplicationEnvironment.cs b/test/Microsoft.AspNet.TestHost.Tests/TestApplicationEnvironment.cs index 14495b9fdb..800570f20a 100644 --- a/test/Microsoft.AspNet.TestHost.Tests/TestApplicationEnvironment.cs +++ b/test/Microsoft.AspNet.TestHost.Tests/TestApplicationEnvironment.cs @@ -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)); }