From 06c2cf31d48b59b8ab85328d088c0206a8026f87 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Mon, 18 Dec 2017 14:15:30 -0800 Subject: [PATCH] Hardcode Debug in test --- .../IntegrationTests/CleanProjectIntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/CleanProjectIntegrationTest.cs b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/CleanProjectIntegrationTest.cs index 46f456ff5c..345da5b9fc 100644 --- a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/CleanProjectIntegrationTest.cs +++ b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/CleanProjectIntegrationTest.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests [InitializeTestProject("SimpleMvc")] public async Task CleanProject_RunBuild() { - var result = await DotnetMSBuild("Restore;Build", "/p:RazorCompileOnBuild=true"); + var result = await DotnetMSBuild("Restore;Build", "/p:RazorCompileOnBuild=true;Configuration=Debug"); Assert.BuildPassed(result); Assert.FileExists(result, Path.Combine("bin", "Debug", "netcoreapp2.0", "SimpleMvc.dll"));