File tree Expand file tree Collapse file tree
fsharp/Compiler/Conformance/Properties Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ let config configurationName envVars =
229229 let requirePackage = requireFile packagesDir
230230 let requireArtifact = requireFile artifactsBinPath
231231 let CSC = requirePackage ( " Microsoft.Net.Compilers" ++ " 2.7.0" ++ " tools" ++ " csc.exe" )
232- let VBC = requireFile ( packagesDir ++ " Microsoft.Net.Compilers" ++ " 2.7.0" ++ " tools" ++ " vbc.exe" )
232+ let VBC = requirePackage ( " Microsoft.Net.Compilers" ++ " 2.7.0" ++ " tools" ++ " vbc.exe" )
233233 let ILDASM_EXE = if operatingSystem = " win" then " ildasm.exe" else " ildasm"
234234 let ILDASM = requirePackage (( " runtime." + operatingSystem + " -" + architectureMoniker + " .Microsoft.NETCore.ILDAsm" ) ++ coreClrRuntimePackageVersion ++ " runtimes" ++ ( operatingSystem + " -" + architectureMoniker) ++ " native" ++ ILDASM_ EXE)
235235 let ILASM_EXE = if operatingSystem = " win" then " ilasm.exe" else " ilasm"
@@ -238,7 +238,7 @@ let config configurationName envVars =
238238 let coreclrdll = requirePackage (( " runtime." + operatingSystem + " -" + architectureMoniker + " .Microsoft.NETCore.Runtime.CoreCLR" ) ++ coreClrRuntimePackageVersion ++ " runtimes" ++ ( operatingSystem + " -" + architectureMoniker) ++ " native" ++ CORECLR_ DLL)
239239 let PEVERIFY_EXE = if operatingSystem = " win" then " PEVerify.exe" else " PEVerify"
240240 let PEVERIFY = requireArtifact ( " PEVerify" ++ configurationName ++ peverifyArchitecture ++ PEVERIFY_ EXE)
241- let FSI_FOR_SCRIPTS = artifactsBinPath ++ " fsi" ++ configurationName ++ fsiArchitecture ++ " fsi.exe"
241+ // let FSI_FOR_SCRIPTS = artifactsBinPath ++ "fsi" ++ configurationName ++ fsiArchitecture ++ "fsi.exe"
242242 let FSharpBuild = requireArtifact ( " FSharp.Build" ++ configurationName ++ fsharpBuildArchitecture ++ " FSharp.Build.dll" )
243243 let FSharpCompilerInteractiveSettings = requireArtifact ( " FSharp.Compiler.Interactive.Settings" ++ configurationName ++ fsharpCompilerInteractiveSettingsArchitecture ++ " FSharp.Compiler.Interactive.Settings.dll" )
244244
Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ namespace FSharp.Compiler.UnitTests
44
55open FSharp.Compiler .SourceCodeServices
66open FSharp.Reflection
7- open FSharp.TestHelpers
8- open FSharp.TestHelpers .Utilities
7+ open FSharp.Test
8+ open FSharp.Test .Utilities
9+ open FSharp.Test .Utilities .Utilities
910open NUnit.Framework
1011
1112[<TestFixture>]
You can’t perform that action at this time.
0 commit comments