Skip to content

Commit

Permalink
Packaging LSP and DAP (#363)
Browse files Browse the repository at this point in the history
* Package ref bumps

* Update publish.yaml
  • Loading branch information
LPeter1997 authored Dec 14, 2023
1 parent e8f4a5d commit 964eec8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
description: Deploy components of the SDK (Compiler, Toolset, Sdk, ProjectTemplates)
deploy-langserver:
type: boolean
description: Deploy the language server (Compiler, LanguageServer)
description: Deploy the language server (Compiler, LanguageServer, Lsp)
deploy-debugadapter:
type: boolean
description: Deploy the debug adapter (DebugAdapter)
description: Deploy the debug adapter (DebugAdapter, Dap)
deploy-vscext:
type: boolean
description: Deploy the VS Code extension
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
run: |
cd src
$sdkProjects = "Compiler", "Compiler.Toolset", "Sdk", "ProjectTemplates"
$langserverProjects = "Compiler", "LanguageServer"
$debugadapterProjects = @("DebugAdapter")
$langserverProjects = "Compiler", "LanguageServer", "Lsp"
$debugadapterProjects = "DebugAdapter", "Dap"
$projects = @()
if ($${{ github.event.inputs.deploy-sdk }}) { $projects += $sdkProjects; }
Expand Down
2 changes: 1 addition & 1 deletion src/Draco.DebugAdapter/Draco.DebugAdapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="NuGet.Protocol" Version="6.4.0" />
<PackageReference Include="NuGet.Protocol" Version="6.8.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Draco.LanguageServer/Draco.LanguageServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="NuGet.Protocol" Version="6.4.0" />
<PackageReference Include="NuGet.Protocol" Version="6.8.0" />
<!-- NOTE: Temporary until we solve MSBuild communication -->
<PackageReference Include="Basic.Reference.Assemblies.Net70" Version="1.4.1" />
</ItemGroup>
Expand Down

0 comments on commit 964eec8

Please sign in to comment.