File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ module internal FSharpEnvironment =
292292 // We look in the directories stepping up from the location of the runtime assembly.
293293 let loadFromLocation designTimeAssemblyPath =
294294 try
295- printfn " Using: %s " designTimeAssemblyPath
296295 Some ( Assembly.UnsafeLoadFrom designTimeAssemblyPath)
297296 with e ->
298297 raiseError e
@@ -315,8 +314,6 @@ module internal FSharpEnvironment =
315314 let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
316315 let paths = searchParentDirChain ( Some runTimeAssemblyPath) designTimeAssemblyName
317316 paths
318- |> Seq.iter( function res -> printfn " >>>> %s " res)
319- paths
320317 |> Seq.tryHead
321318 |> function
322319 | Some res -> loadFromLocation res
@@ -325,7 +322,6 @@ module internal FSharpEnvironment =
325322 let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
326323 loadFromLocation ( Path.Combine ( runTimeAssemblyPath, designTimeAssemblyName))
327324
328- printfn " =============== S T A R T =========================================="
329325 if designTimeAssemblyName.EndsWith( " .dll" , StringComparison.OrdinalIgnoreCase) then
330326 loadFromParentDirRelativeToRuntimeAssemblyLocation designTimeAssemblyName
331327 else
You can’t perform that action at this time.
0 commit comments