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 =
292
292
// We look in the directories stepping up from the location of the runtime assembly.
293
293
let loadFromLocation designTimeAssemblyPath =
294
294
try
295
- printfn " Using: %s " designTimeAssemblyPath
296
295
Some ( Assembly.UnsafeLoadFrom designTimeAssemblyPath)
297
296
with e ->
298
297
raiseError e
@@ -315,8 +314,6 @@ module internal FSharpEnvironment =
315
314
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
316
315
let paths = searchParentDirChain ( Some runTimeAssemblyPath) designTimeAssemblyName
317
316
paths
318
- |> Seq.iter( function res -> printfn " >>>> %s " res)
319
- paths
320
317
|> Seq.tryHead
321
318
|> function
322
319
| Some res -> loadFromLocation res
@@ -325,7 +322,6 @@ module internal FSharpEnvironment =
325
322
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
326
323
loadFromLocation ( Path.Combine ( runTimeAssemblyPath, designTimeAssemblyName))
327
324
328
- printfn " =============== S T A R T =========================================="
329
325
if designTimeAssemblyName.EndsWith( " .dll" , StringComparison.OrdinalIgnoreCase) then
330
326
loadFromParentDirRelativeToRuntimeAssemblyLocation designTimeAssemblyName
331
327
else
You can’t perform that action at this time.
0 commit comments