From 8c6fa446716325a9af74377a83f3366c90f75885 Mon Sep 17 00:00:00 2001 From: voiceofwisdom Date: Fri, 31 Jul 2015 08:31:13 -0500 Subject: [PATCH] Removes mono debug file after cache is saved. --- src/app/FakeLib/FSIHelper.fs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/FakeLib/FSIHelper.fs b/src/app/FakeLib/FSIHelper.fs index 82ba680ad6d..506c3f7c809 100644 --- a/src/app/FakeLib/FSIHelper.fs +++ b/src/app/FakeLib/FSIHelper.fs @@ -341,6 +341,8 @@ let internal runFAKEScriptWithFsiArgsAndRedirectMessages printDetails (FsiArgs(f if File.Exists("FSI-ASSEMBLY.pdb") then File.Delete("FSI-ASSEMBLY.pdb") + if File.Exists("FSI-ASSEMBLY.dll.mdb") then + File.Delete("FSI-ASSEMBLY.dll.mdb") let dynamicAssemblies = System.AppDomain.CurrentDomain.GetAssemblies()