Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change format of requests to show module sources #12351

Merged
merged 8 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix vscode-bicep build
  • Loading branch information
StephenWeatherford committed Nov 6, 2023
commit 04518c5b686b7e9d09581ad82278c20f59661a2a
2 changes: 1 addition & 1 deletion src/vscode-bicep/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { ImportKubernetesManifestCommand } from "./commands/importKubernetesMani
import { PasteAsBicepCommand } from "./commands/pasteAsBicep";
import {
BicepExternalSourceContentProvider,
BicepExternalSourceScheme,
createLanguageService,
ensureDotnetRuntimeInstalled,
} from "./language";
Expand Down Expand Up @@ -60,6 +59,7 @@ import * as surveys from "./feedback/surveys";
import { DecompileParamsCommand } from "./commands/decompileParams";
import { DeployPaneViewManager } from "./panes/deploy";
import { AzureUiManager } from "./azure/AzureUiManager";
import { BicepExternalSourceScheme } from "./language/decodeExternalSourceUri";

let languageClient: lsp.LanguageClient | null = null;

Expand Down
Loading