Skip to content

Commit ab1a56e

Browse files
committed
Fix precompiled search path for release config
1 parent 87d8e1d commit ab1a56e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/CSharpPrecompiledTestFixture.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ namespace Microsoft.Azure.WebJobs.Script.Tests.Integration.WebHostEndToEnd
66
{
77
public class CSharpPrecompiledEndToEndTestFixture : EndToEndTestFixture
88
{
9+
#if DEBUG
910
private const string TestPathTemplate = "..\\..\\{0}\\debug";
11+
#elif RELEASE
12+
private const string TestPathTemplate = "..\\..\\{0}\\release";
13+
#endif
14+
1015
private readonly IDisposable _dispose;
1116

1217
public CSharpPrecompiledEndToEndTestFixture(string testProjectName, IDictionary<string, string> envVars = null, string functionWorkerRuntime = "dotnet")

0 commit comments

Comments
 (0)