Skip to content

Commit

Permalink
Pin VFPT to v1.8.0
Browse files Browse the repository at this point in the history
FIx #277.
  • Loading branch information
dungpa committed Apr 7, 2015
1 parent a7456b8 commit cf1acc1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.fsx
Expand Up @@ -201,7 +201,7 @@ Target "NuGet" (fun _ ->
AccessKey = getBuildParamOrDefault "nugetkey" ""
Publish = hasBuildParam "nugetkey"
Dependencies =
[ "FSharpVSPowerTools.Core", GetPackageVersion "packages" "FSharpVSPowerTools.Core"
[ "FSharpVSPowerTools.Core", GetPackageVersion "packages" "FSharpVSPowerTools.Core" |> RequireExactly
"FSharp.Compiler.Service", GetPackageVersion "packages" "FSharp.Compiler.Service" ] })
"nuget/FSharp.Formatting.nuspec"
NuGet (fun p ->
Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Expand Up @@ -8,5 +8,5 @@ nuget RazorEngine
nuget NUnit
nuget NUnit.Runners
nuget NuGet.CommandLine
nuget FSharpVSPowerTools.Core
nuget FSharpVSPowerTools.Core == 1.8.0
nuget ILRepack 1.22.2
6 changes: 3 additions & 3 deletions paket.lock
Expand Up @@ -3,9 +3,9 @@ NUGET
specs:
CommandLineParser (1.9.71)
FAKE (3.26.1)
FSharp.Compiler.Service (0.0.86)
FSharpVSPowerTools.Core (1.7.0)
FSharp.Compiler.Service (>= 0.0.81)
FSharp.Compiler.Service (0.0.87)
FSharpVSPowerTools.Core (1.8.0)
FSharp.Compiler.Service (>= 0.0.87)
ILRepack (1.22.2)
Microsoft.AspNet.Razor (3.2.3)
NuGet.CommandLine (2.8.3)
Expand Down
3 changes: 2 additions & 1 deletion src/FSharp.CodeFormat/CodeFormatAgent.fs
Expand Up @@ -292,7 +292,8 @@ type CodeFormatAgent() =
Lexer.getSymbol source line col lineStr SymbolLookupKind.ByRightColumn opts.OtherOptions Lexer.queryLexState
member __.TokenizeLine line =
let lineStr = sourceLines.[line]
Lexer.tokenizeLine source opts.OtherOptions line lineStr Lexer.queryLexState }
Lexer.tokenizeLine source opts.OtherOptions line lineStr Lexer.queryLexState
member __.LineCount = sourceLines.Length }

let categorizedSpans =
SourceCodeClassifier.getCategoriesAndLocations(
Expand Down

0 comments on commit cf1acc1

Please sign in to comment.