From 99bea078dcf28986444f26b96120361dd7752342 Mon Sep 17 00:00:00 2001 From: KevinRansom Date: Tue, 26 Jan 2021 11:18:34 -0800 Subject: [PATCH] Revert "Update sdk version (#10944)" This reverts commit 8df244cdfd7dc2844f8ad79d9694bb3123c0bb12. --- global.json | 5 ++--- src/buildtools/fslex/Parsing.fsi | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/global.json b/global.json index 0ca138f99e5..ed90209bf1a 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,9 @@ { "sdk": { - "version": "5.0.200-preview.20614.14", - "rollForward": "minor" + "version": "5.0.100" }, "tools": { - "dotnet": "5.0.200-preview.20614.14", + "dotnet": "5.0.100", "vs": { "version": "16.8", "components": [ diff --git a/src/buildtools/fslex/Parsing.fsi b/src/buildtools/fslex/Parsing.fsi index f4d12606462..2fef45975a8 100644 --- a/src/buildtools/fslex/Parsing.fsi +++ b/src/buildtools/fslex/Parsing.fsi @@ -100,7 +100,7 @@ type Tables<'tok> = /// Interpret the parser table taking input from the given lexer, using the given lex buffer, and the given start state. /// Returns an object indicating the final synthesized value for the parse. - member Interpret : lexer:(LexBuffer<'char> -> 'tok) * lexbuf:LexBuffer<'char> * initialState:int -> obj + member Interpret : lexer:(LexBuffer<'char> -> 'tok) * lexbuf:LexBuffer<'char> * startState:int -> obj #if INTERNALIZED_FSLEXYACC_RUNTIME exception internal Accept of obj