Remove unnecessary diagnostics (#8401)

This commit is contained in:
Kevin Ransom (msft) 2020-01-30 10:16:22 -08:00 коммит произвёл GitHub
Родитель c8517d9b7c
Коммит b32124df9e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -292,7 +292,6 @@ module internal FSharpEnvironment =
// We look in the directories stepping up from the location of the runtime assembly.
let loadFromLocation designTimeAssemblyPath =
try
printfn "Using: %s" designTimeAssemblyPath
Some (Assembly.UnsafeLoadFrom designTimeAssemblyPath)
with e ->
raiseError e
@ -315,8 +314,6 @@ module internal FSharpEnvironment =
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
let paths = searchParentDirChain (Some runTimeAssemblyPath) designTimeAssemblyName
paths
|> Seq.iter(function res -> printfn ">>>> %s" res)
paths
|> Seq.tryHead
|> function
| Some res -> loadFromLocation res
@ -325,7 +322,6 @@ module internal FSharpEnvironment =
let runTimeAssemblyPath = Path.GetDirectoryName runTimeAssemblyFileName
loadFromLocation (Path.Combine (runTimeAssemblyPath, designTimeAssemblyName))
printfn "=============== S T A R T =========================================="
if designTimeAssemblyName.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) then
loadFromParentDirRelativeToRuntimeAssemblyLocation designTimeAssemblyName
else