Skip to content

Update FSAC to use FCS and FSharp.Core from 9.0.100, as well as updated Analyzer SDK #2439

Update FSAC to use FCS and FSharp.Core from 9.0.100, as well as updated Analyzer SDK

Update FSAC to use FCS and FSharp.Core from 9.0.100, as well as updated Analyzer SDK #2439

Triggered via pull request November 24, 2024 00:06
Status Cancelled
Total duration 13m 46s
Artifacts

build.yml

on: pull_request
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

64 errors and 36 warnings
Build on ubuntu-latest for 9.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on ubuntu-latest for repo global.json WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on ubuntu-latest for 9.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on ubuntu-latest for 8.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on ubuntu-latest for repo global.json WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on ubuntu-latest for 8.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on macos-13 for 8.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.tooltip evaluation.tests.tooltip for line 60 character 7 should be 'active pattern Value: input: Expr -> option<obj * System.Type>'
Should have a signature of 'active pattern Value: input: Expr -> option<obj * System.Type>'. String does not match at position 60. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern Value: input: Expr -> option<obj * System.Type> ---------- Actual: -------------------- active pattern Value: input: Expr -> option<objnull * System.Type> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.tooltip evaluation.tests.tooltip for line 70 character 7 should be 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'
Should have a signature of 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'. String does not match at position 68. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern ValueWithName: input: Expr -> option<obj * System.Type * string> ---------- Actual: -------------------- active pattern ValueWithName: input: Expr -> option<objnull * System.Type * string> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with another member with attribute
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub without trailing nl
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.inserts override in correct place
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with existing override
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
Build on windows-latest for 8.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on windows-latest for 8.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on windows-latest for 9.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on windows-latest for repo global.json WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.tooltip evaluation.tests.tooltip for line 60 character 7 should be 'active pattern Value: input: Expr -> option<obj * System.Type>'
Should have a signature of 'active pattern Value: input: Expr -> option<obj * System.Type>'. String does not match at position 60. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern Value: input: Expr -> option<obj * System.Type> ---------- Actual: -------------------- active pattern Value: input: Expr -> option<objnull * System.Type> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.tooltip evaluation.tests.tooltip for line 70 character 7 should be 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'
Should have a signature of 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'. String does not match at position 68. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern ValueWithName: input: Expr -> option<obj * System.Type * string> ---------- Actual: -------------------- active pattern ValueWithName: input: Expr -> option<objnull * System.Type * string> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with another member with attribute
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub without trailing nl
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.inserts override in correct place
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.BackgroundCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with existing override
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.tooltip evaluation.tests.tooltip for line 60 character 7 should be 'active pattern Value: input: Expr -> option<obj * System.Type>'
Should have a signature of 'active pattern Value: input: Expr -> option<obj * System.Type>'. String does not match at position 60. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern Value: input: Expr -> option<obj * System.Type> ---------- Actual: -------------------- active pattern Value: input: Expr -> option<objnull * System.Type> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.tooltip evaluation.tests.tooltip for line 70 character 7 should be 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'
Should have a signature of 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'. String does not match at position 68. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern ValueWithName: input: Expr -> option<obj * System.Type * string> ---------- Actual: -------------------- active pattern ValueWithName: input: Expr -> option<objnull * System.Type * string> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with another member with attribute
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub without trailing nl
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.inserts override in correct place
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with existing override
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
Build on windows-latest for 8.0 WorkspaceLoader TransparentCompiler
The operation was canceled.
Build on windows-latest for 8.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on windows-latest for repo global.json WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.tooltip evaluation.tests.tooltip for line 60 character 7 should be 'active pattern Value: input: Expr -> option<obj * System.Type>'
Should have a signature of 'active pattern Value: input: Expr -> option<obj * System.Type>'. String does not match at position 60. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern Value: input: Expr -> option<obj * System.Type> ---------- Actual: -------------------- active pattern Value: input: Expr -> option<objnull * System.Type> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.tooltip evaluation.tests.tooltip for line 70 character 7 should be 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'
Should have a signature of 'active pattern ValueWithName: input: Expr -> option<obj * System.Type * string>'. String does not match at position 68. Expected char: ' ', but got 'n'. ---------- Expected: ------------------ active pattern ValueWithName: input: Expr -> option<obj * System.Type * string> ---------- Actual: -------------------- active pattern ValueWithName: input: Expr -> option<objnull * System.Type * string> at FsAutoComplete.Tests.CoreTest.verifySignature@279-6.Invoke(FSharpResult`2 _arg6) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\CoreTests.fs:line 281 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvokeNoHijackCheck[a,b](AsyncActivation`1 ctxt, b result1, FSharpFunc`2 userCode) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 528 at <StartupCode$FSharp-Core>.$Async.once@1468-2.Invoke(Unit unitVar0) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 1468 at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with another member with attribute
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" [<CompiledName("yo")>] member x.Foo() = 1 () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub without trailing nl
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.inserts override in correct place
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name: string = failwith "Not Implemented" let a = 0 at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
FSAC.lsp.Ionide WorkspaceLoader.TransparentCompiler.CodeFix-tests.GenerateAbstractClassStub.can generate abstract class stub with existing override
Incorrect text after applying the chosen code action. String does not match at position 259. Expected char: '\010', but got ' '. ---------- Expected: ------------------ [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () ---------- Actual: -------------------- [<AbstractClass>] type Shape(x0: float, y0: float) = let mutable x, y = x0, y0 abstract Name : string with get abstract Area : float with get member _.Move dx dy = x <- x + dx y <- y + dy type Square(x,y, sideLength) = inherit Shape(x,y) override this.Area: float = failwith "Not Implemented" override this.Name = "Circle" () at Utils.CursorbasedTests.CodeFix.checkFixAt@100-3.Invoke(Unit unitVar) in D:\a\FsAutoComplete\FsAutoComplete\test\FsAutoComplete.Tests.Lsp\Utils\CursorbasedTests.fs:line 110 at Microsoft.FSharp.Control.AsyncPrimitives.CallThenInvoke[T,TResult](AsyncActivation`1 ctxt, TResult result1, FSharpFunc`2 part2) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 510 at <StartupCode$fsautocomplete>.$AdaptiveFSharpLspServer.FsAutoComplete-Lsp-IFSharpLspServer-TextDocumentCodeAction@1519-31.Invoke(AsyncActivation`1 ctxt) at Microsoft.FSharp.Control.Trampoline.Execute(FSharpFunc`2 firstAction) in D:\a\_work\1\s\src\FSharp.Core\async.fs:line 112 --- End of stack trace from previous location ---
Build on windows-latest for 9.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on windows-latest for 9.0 WorkspaceLoader TransparentCompiler
The operation was canceled.
Build on macos-13 for 9.0 WorkspaceLoader TransparentCompiler
The operation was canceled.
Build on macos-13 for 9.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
Build on macos-13 for repo global.json WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on macos-13 for 9.0 WorkspaceLoader BackgroundCompiler
The operation was canceled.
Build on macos-13 for 9.0 WorkspaceLoader BackgroundCompiler
Process completed with exit code 1.
Build on macos-13 for 8.0 WorkspaceLoader TransparentCompiler
The operation was canceled.
Build on macos-13 for 8.0 WorkspaceLoader TransparentCompiler
Process completed with exit code 1.
analyze
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3, github/codeql-action/upload-sarif@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
analyze
CodeQL Action v2 will be deprecated on December 5th, 2024. Please update all occurrences of the CodeQL Action in your workflow files to v3. For more information, see https://github.blog/changelog/2024-01-12-code-scanning-deprecation-of-codeql-action-v2/
Build on ubuntu-latest for 9.0 WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for 9.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 9.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for repo global.json WorkspaceLoader TransparentCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for repo global.json WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for repo global.json WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 9.0 WorkspaceLoader TransparentCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for 9.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 9.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 8.0 WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for 8.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 8.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for repo global.json WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for repo global.json WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for repo global.json WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 8.0 WorkspaceLoader TransparentCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on ubuntu-latest for 8.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on ubuntu-latest for 8.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for 8.0 WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on macos-13 for 8.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for 8.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for 8.0 WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on windows-latest for 8.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for 9.0 WorkspaceLoader BackgroundCompiler
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
Build on windows-latest for 9.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for 9.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for repo global.json WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for 8.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for repo global.json WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on windows-latest for 9.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for 9.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for repo global.json WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for 9.0 WorkspaceLoader BackgroundCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']
Build on macos-13 for 8.0 WorkspaceLoader TransparentCompiler
Unexpected input(s) 'include-prerelease', valid inputs are ['dotnet-version', 'dotnet-quality', 'global-json-file', 'source-url', 'owner', 'config-file', 'cache', 'cache-dependency-path']