-
Notifications
You must be signed in to change notification settings - Fork 585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
source index not working because of %%var%% #678
Comments
I was not able to reproduce the problem on my machine with the exact same commit.
Open
Which version of
|
The navigate to source feature from Visual F# Power Tools works great with build.fsx scripts with FAKE The invalid
Since this the #r "FakeLib.dll"
open Fake
module FSIHelper =
let fsiVersion = lazy (System.Diagnostics.FileVersionInfo.GetVersionInfo FSIHelper.fsiPath).FileVersion
Target "BugHunt" <| fun _ ->
printfn "fsiPath: %s" FSIHelper.fsiPath
printfn "fsiVersion: %s" FSIHelper.fsiVersion.Value
RunTargetOrDefault "BugHunt" |
From a user's point of view, I prefer an alternative (String.Format, etc.) that doesn't depend on compiler/fsi/FSharp.Core versions. There is a plenty of machines out there with old versions for which the issue can slip through the cracks. |
Only FAKE.deploy should use fsi. FAKE should still use FCS. Or did we Break that? |
Can you upgrade to 3.1.2 on that machine? When you do, that script should print 3.1.1 is |
could you please retry with 3.20.1? |
30 second clip. I'll need to improve my QuickTime/YouTube recording skills. |
@ctaggart Would you mind to add the video to the docs at https://github.com/fsprojects/VisualFSharpPowerTools/blob/master/docs/content/navigatetosource.fsx? I appreciate if you have something to improve the guide there. |
ctaggart/SourceLink#62
The source index is ending up with a
%%var2%%
instead of%var2%
. I haven't been able to reproduce locally yet. Any idea which version of the F# compiler is being used in these builds?The text was updated successfully, but these errors were encountered: