Skip to content

Commit

Permalink
fix upload vsix artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
reymondzzzz committed Nov 27, 2023
1 parent c6099fe commit 8e09313
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
msbuild ${{ env.refactSolution }} /p:Configuration=${{ env.config }} /p:TargetVsixContainer=${{ env.vsixContainer }} /p:DeployExtension=False /verbosity:minimal
- name: Upload VSIX artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}-${{ steps.nbgv.outputs.SemVer2 }}-${{ env.refactSolution }}
path: ${{ env.vsixContainer }}
2 changes: 1 addition & 1 deletion MultilineGreyText/RefactLanguageClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ String GetArgs(){
args += "--address-url " + (String.IsNullOrWhiteSpace(General.Instance.AddressURL) ? "Refact" : General.Instance.AddressURL) + " ";
args += "--api-key " + (String.IsNullOrWhiteSpace(General.Instance.APIKey) ? "ZZZWWW" : General.Instance.APIKey) + " ";

return args + "--http-port 8001 --lsp-stdin-stdout 1 --logs-stderr";
return args + "--http-port 8001 --lsp-stdin-stdout 1";
}

//used to start loading lsp
Expand Down
3 changes: 3 additions & 0 deletions MultilineGreyText/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,18.0)">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
Expand Down

0 comments on commit 8e09313

Please sign in to comment.