From 262cba689bff1cf87e2ba766e5e89a39fc8fd4b9 Mon Sep 17 00:00:00 2001 From: Adam Boniecki <20281641+abonie@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:45:40 +0200 Subject: [PATCH] Restore language server sln in copilot-setup-steps.yml Add a build step in copilot setup --- .github/workflows/copilot-setup-steps.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 2025949999..5091aec9f0 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -18,10 +18,14 @@ jobs: - uses: actions/setup-dotnet@v4 with: global-json-file: global.json - - name: Restore solution + - name: Restore the compiler service solution env: CI: false run: dotnet build ./FSharp.Compiler.Service.sln --verbosity quiet + - name: Restore the language server solution + env: + CI: false + run: dotnet build ./VSFSharpExtension.sln --verbosity quiet - name: Restore dotnet tools env: CI: false