File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -382,21 +382,21 @@ let ``Project file parsing -- Exe with a PCL reference``() =
382382
383383
384384[<Test>]
385- let ``Project file parsing -- project reference in release mode`` () =
385+ let ``Project file parsing -- project file contains project reference to out - of - solution project and is used in release mode``() =
386386
387387 let f = normalizePath(__ SOURCE_ DIRECTORY__ + @" /data/TestProject/TestProject.fsproj" )
388388 let p = ProjectCracker.GetProjectOptionsFromProjectFile( f,[( " Configuration" , " Release" )])
389389 let references = getReferencedFilenamesAndContainingFolders p.OtherOptions |> set
390- references |> should contain ( " FSharp.Core.dll " , " 4.3.0.0 " )
390+ // Check the reference is to a release DLL
391391 references |> should contain ( " TestTP.dll" , " Release" )
392392
393393[<Test>]
394- let ``Project file parsing -- project reference in debug mode`` () =
394+ let ``Project file parsing -- project file contains project reference to out - of - solution project and is used in debug mode``() =
395395
396396 let f = normalizePath(__ SOURCE_ DIRECTORY__ + @" /data/TestProject/TestProject.fsproj" )
397397 let p = ProjectCracker.GetProjectOptionsFromProjectFile( f,[( " Configuration" , " Debug" )])
398398 let references = getReferencedFilenamesAndContainingFolders p.OtherOptions |> set
399- references |> should contain ( " FSharp.Core.dll " , " 4.3.0.0 " )
399+ // Check the reference is to a debug DLL
400400 references |> should contain ( " TestTP.dll" , " Debug" )
401401
402402#endif
You can’t perform that action at this time.
0 commit comments