├── .azuredevops ├── dependabot.yml └── policies │ └── branchClassification.yml ├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml ├── guardian │ ├── .gdnbaselines │ └── TSAConfig.gdntsa └── snap-flow.json ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── devinit.json ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── copilot-instructions.md ├── policies │ └── resourceManagement.yml ├── release.yml └── workflows │ ├── backport.yml │ ├── branch-snap.yml │ ├── copilot-setup-steps.yml │ ├── create-release.yml │ ├── release-comment-handler.yml │ ├── release-reusable.yml │ └── update-changelog.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── dnceng-schema.json ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE.txt ├── NuGet.config ├── README.md ├── RuntimeLicenses ├── dependencies │ └── OpenDebugAD7-License.txt └── license.txt ├── SUPPORT.md ├── ThirdPartyNotices.txt ├── __mocks__ └── vscode.ts ├── azure-pipelines-official.yml ├── azure-pipelines.yml ├── azure-pipelines ├── build-vsix.yml ├── build.yml ├── green-insertion.yml ├── install-node.yml ├── loc.yml ├── prereqs.yml ├── profiling.yml ├── publish-roslyn-copilot.yml ├── release.yml ├── test-linux-docker-prereqs.yml ├── test-matrix.yml ├── test-omnisharp.yml ├── test-prereqs.yml ├── test.yml └── validate-build.yml ├── baseJestConfig.ts ├── codecov.yml ├── debugger-launchjson.md ├── debugger.md ├── docs ├── How-to-run-and-debug-unit-tests.md ├── Installing-without-Internet-connectivity.md ├── Reporting-Issues.md ├── Troubleshooting-'The-.NET-Core-SDK-cannot-be-located.'-errors.md ├── debugger │ ├── .NET-Core-debugging-feature-list.md │ ├── Attaching-to-remote-processes.md │ ├── Debugging-Sandboxed-Processes-on-OSX.md │ ├── Debugging-into-the-.NET-Runtime-itself.md │ ├── Debugging-x64-processes-on-an-arm64-computer.md │ ├── Desktop-.NET-Framework.md │ ├── Diagnosting-'Debug-adapter-process-has-terminated-unexpectedly'.md │ ├── Enabling-C#-debugger-logging.md │ ├── ExampleCode │ │ └── tasks.json │ ├── Microsoft-.NET-Core-Debugger-licensing-and-Microsoft-Visual-Studio-Code.md │ ├── Portable-PDBs.md │ ├── Remote-Debugging-On-Linux-Arm.md │ ├── Testing-libicu-compatibility-on-Linux.md │ ├── Troubleshoot-Breakpoints.md │ ├── Troubleshoot-loading-the-.NET-Debug-Services.md │ └── Windows-Subsystem-for-Linux.md ├── images │ ├── Exception-Settings.png │ ├── OSXConsoleUtility.png │ ├── background_analysis.png │ ├── breakpoints-window.png │ ├── crash_dump.png │ ├── csharp_trace.png │ ├── debug-launch-configurations-remote-attach.png │ ├── debug-launch-configurations.png │ ├── debugging_debugicon.png │ ├── developer_community_feedback.png │ ├── generated_prs.png │ ├── info-bar-add-required-assets.png │ ├── inspect_tokens.png │ ├── language_status.png │ ├── main_snap.png │ ├── omnisharp_log.png │ ├── razor_logs.png │ ├── recordTraceArgs.png │ ├── recordTraceCommand.png │ ├── recordTraceTerminal.png │ ├── release_pipeline.png │ ├── release_pipeline_params.png │ ├── report_issue.png │ └── unit-test-codelens.png └── readme.md ├── es-metadata.yml ├── esbuild.js ├── gulpfile.ts ├── images └── csharpIcon.png ├── init.ps1 ├── jest.config.ts ├── l10n ├── bundle.l10n.cs.json ├── bundle.l10n.de.json ├── bundle.l10n.es.json ├── bundle.l10n.fr.json ├── bundle.l10n.it.json ├── bundle.l10n.ja.json ├── bundle.l10n.json ├── bundle.l10n.ko.json ├── bundle.l10n.pl.json ├── bundle.l10n.pt-br.json ├── bundle.l10n.ru.json ├── bundle.l10n.tr.json ├── bundle.l10n.zh-cn.json └── bundle.l10n.zh-tw.json ├── loc └── LocProject.json ├── msbuild ├── Directory.Build.props ├── global.json ├── server │ └── ServerDownload.csproj └── signing │ ├── SIGNING.md │ ├── signJs │ └── signJs.proj │ └── signVsix │ └── signVsix.proj ├── package.json ├── package.nls.cs.json ├── package.nls.de.json ├── package.nls.es.json ├── package.nls.fr.json ├── package.nls.it.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.ko.json ├── package.nls.pl.json ├── package.nls.pt-br.json ├── package.nls.ru.json ├── package.nls.tr.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── scripts └── remoteProcessPickerScript ├── snippets └── csharp.json ├── src ├── activateOmniSharp.ts ├── activateRoslyn.ts ├── checkDotNetRuntimeExtensionVersion.ts ├── checkSupportedPlatform.ts ├── common.ts ├── compositeDisposable.ts ├── constants │ ├── IGetMonoVersion.ts │ └── csharpExtensionId.ts ├── coreclrDebug │ ├── activate.ts │ ├── debuggerEventsProtocol.ts │ ├── parsedEnvironmentFile.ts │ ├── provisionalDebugSessionTracker.ts │ └── util.ts ├── csharpDevKitExports.ts ├── csharpExtensionExports.ts ├── csharpIntelliCodeExports.ts ├── disposable.ts ├── eventStream.ts ├── installRuntimeDependencies.ts ├── json.ts ├── logger.ts ├── lsptoolshost │ ├── activate.ts │ ├── autoInsert │ │ ├── onAutoInsert.ts │ │ └── onAutoInsertFeature.ts │ ├── commands.ts │ ├── copilot │ │ └── contextProviders.ts │ ├── debugger │ │ ├── IDotnetDebugConfigurationService.ts │ │ ├── debugger.ts │ │ └── roslynWorkspaceDebugConfigurationProvider.ts │ ├── diagnostics │ │ ├── buildDiagnosticsService.ts │ │ ├── buildResultReporterService.ts │ │ ├── diagnosticMiddleware.ts │ │ ├── fixAllCodeAction.ts │ │ └── nestedCodeAction.ts │ ├── dotnetRuntime │ │ ├── dotnetRuntimeExtensionApi.ts │ │ └── dotnetRuntimeExtensionResolver.ts │ ├── extensions │ │ ├── builtInComponents.ts │ │ └── roslynLanguageServerExportChannel.ts │ ├── generators │ │ └── sourceGeneratedFilesContentProvider.ts │ ├── handlers │ │ └── showToastNotification.ts │ ├── options │ │ ├── configurationMiddleware.ts │ │ ├── optionChanges.ts │ │ ├── optionNameConverter.ts │ │ └── universalEditorConfigProvider.ts │ ├── profiling │ │ └── profiling.ts │ ├── projectContext │ │ ├── projectContextService.ts │ │ └── projectContextStatus.ts │ ├── projectRestore │ │ └── restore.ts │ ├── razor │ │ ├── documentContentsRequest.ts │ │ ├── generatedDocumentKind.ts │ │ ├── htmlDocument.ts │ │ ├── htmlDocumentContentProvider.ts │ │ ├── htmlDocumentManager.ts │ │ ├── htmlForwardedRequest.ts │ │ ├── htmlUpdateParameters.ts │ │ ├── razorEndpoints.ts │ │ └── showGeneratedDocumentCommand.ts │ ├── server │ │ ├── languageServerEvents.ts │ │ ├── roslynLanguageClient.ts │ │ ├── roslynLanguageServer.ts │ │ ├── roslynProtocol.ts │ │ └── serverCommands.ts │ ├── serviceBroker │ │ └── brokeredServicesHosting.ts │ ├── solutionSnapshot │ │ ├── ISolutionSnapshotProvider.ts │ │ ├── descriptors.ts │ │ └── solutionSnapshotProvider.ts │ ├── testing │ │ └── unitTesting.ts │ ├── utils │ │ ├── isString.ts │ │ └── uriConverter.ts │ └── workspace │ │ ├── miscellaneousFileNotifier.ts │ │ ├── workspaceCommands.ts │ │ └── workspaceStatus.ts ├── main.ts ├── nestedError.ts ├── networkSettings.ts ├── omnisharp │ ├── delayTracker.ts │ ├── dotnetResolver.ts │ ├── engines │ │ ├── IEngine.ts │ │ ├── lspEngine.ts │ │ └── stdioEngine.ts │ ├── features │ │ ├── abstractProvider.ts │ │ ├── changeForwarding.ts │ │ ├── codeActionProvider.ts │ │ ├── codeLensProvider.ts │ │ ├── commands.ts │ │ ├── completionProvider.ts │ │ ├── definitionMetadataDocumentProvider.ts │ │ ├── definitionProvider.ts │ │ ├── diagnosticsProvider.ts │ │ ├── documentHighlightProvider.ts │ │ ├── documentSymbolProvider.ts │ │ ├── documentation.ts │ │ ├── dotnetTest.ts │ │ ├── fileOpenCloseProvider.ts │ │ ├── fixAll.ts │ │ ├── fixAllProvider.ts │ │ ├── formattingEditProvider.ts │ │ ├── hoverProvider.ts │ │ ├── implementationProvider.ts │ │ ├── inlayHintProvider.ts │ │ ├── launchConfiguration.ts │ │ ├── referenceProvider.ts │ │ ├── renameProvider.ts │ │ ├── semanticTokensProvider.ts │ │ ├── signatureHelpProvider.ts │ │ ├── sourceGeneratedDocumentProvider.ts │ │ ├── structureProvider.ts │ │ ├── virtualDocumentTracker.ts │ │ └── workspaceSymbolProvider.ts │ ├── fileOperationsResponseEditBuilder.ts │ ├── languageMiddlewareFeature.ts │ ├── launcher.ts │ ├── observers │ │ ├── backgroundWorkStatusBarObserver.ts │ │ ├── baseStatusBarItemObserver.ts │ │ ├── csharpLoggerObserver.ts │ │ ├── dotnetChannelObserver.ts │ │ ├── dotnetLoggerObserver.ts │ │ ├── dotnetTestChannelObserver.ts │ │ ├── dotnetTestLoggerObserver.ts │ │ ├── errorMessageObserver.ts │ │ ├── informationMessageObserver.ts │ │ ├── omnisharpChannelObserver.ts │ │ ├── omnisharpDebugModeLoggerObserver.ts │ │ ├── omnisharpLoggerObserver.ts │ │ ├── omnisharpStatusBarObserver.ts │ │ ├── projectStatusBarObserver.ts │ │ ├── razorLoggerObserver.ts │ │ ├── telemetryObserver.ts │ │ └── warningMessageObserver.ts │ ├── omniSharpMonoResolver.ts │ ├── omnisharpDownloader.ts │ ├── omnisharpLanguageServer.ts │ ├── omnisharpLoggingEvents.ts │ ├── omnisharpManager.ts │ ├── omnisharpOptionChanges.ts │ ├── omnisharpPackageCreator.ts │ ├── omnisharpWorkspaceDebugInformationProvider.ts │ ├── prioritization.ts │ ├── protocol.ts │ ├── requestQueue.ts │ ├── requirementCheck.ts │ ├── server.ts │ ├── typeConversion.ts │ └── utils.ts ├── packageManager │ ├── IInstallDependencies.ts │ ├── IPackage.ts │ ├── absolutePath.ts │ ├── absolutePathPackage.ts │ ├── downloadAndInstallPackages.ts │ ├── fileDownloader.ts │ ├── getAbsolutePathPackagesToInstall.ts │ ├── isValidDownload.ts │ ├── package.ts │ ├── packageError.ts │ ├── packageFilterer.ts │ ├── proxy.ts │ └── zipInstaller.ts ├── razor │ ├── language-configuration.json │ ├── razorOmnisharp.ts │ ├── razorOmnisharpDownloader.ts │ ├── src │ │ ├── blazorDebug │ │ │ ├── blazorDebugConfigurationProvider.ts │ │ │ ├── constants.ts │ │ │ └── terminateDebugHandler.ts │ │ ├── colorPresentation │ │ │ ├── colorPresentationContext.ts │ │ │ ├── colorPresentationHandler.ts │ │ │ ├── serializableColorPresentation.ts │ │ │ └── serializableColorPresentationParams.ts │ │ ├── completion │ │ │ └── completionHandler.ts │ │ ├── diagnostics │ │ │ ├── IReportIssueDataCollectionResult.ts │ │ │ ├── reportIssueCommand.ts │ │ │ ├── reportIssueCreator.ts │ │ │ ├── reportIssueDataCollector.ts │ │ │ ├── reportIssueDataCollectorFactory.ts │ │ │ └── reportIssuePanel.ts │ │ ├── documentColor │ │ │ ├── documentColorHandler.ts │ │ │ └── serializableColorInformation.ts │ │ ├── folding │ │ │ └── foldingRangeHandler.ts │ │ ├── formatting │ │ │ ├── formattingHandler.ts │ │ │ └── serializableFormattingResponse.ts │ │ ├── razorExtensionId.ts │ │ ├── razorLanguage.ts │ │ ├── razorLanguageConfiguration.ts │ │ ├── razorLogger.ts │ │ ├── rpc │ │ │ ├── serializablePosition.ts │ │ │ ├── serializableRange.ts │ │ │ ├── serializableTextDocumentIdentifier.ts │ │ │ └── serializableTextEdit.ts │ │ ├── uriPaths.ts │ │ ├── vscode.proposed.d.ts │ │ └── vscodeAdapter.ts │ └── syntaxes │ │ ├── aspnetcorerazor.tmLanguage.json │ │ └── aspnetcorerazor.tmLanguage.yml ├── shared │ ├── IWorkspaceDebugInformationProvider.ts │ ├── assets.ts │ ├── configurationProvider.ts │ ├── constants │ │ ├── IHostExecutableResolver.ts │ │ └── hostExecutableInformation.ts │ ├── dotnetConfigurationProvider.ts │ ├── eventType.ts │ ├── launchTarget.ts │ ├── limitedActivationStatus.ts │ ├── loggingEvents.ts │ ├── migrateOptions.ts │ ├── observables │ │ └── createOptionStream.ts │ ├── observers │ │ ├── baseChannelObserver.ts │ │ ├── baseLoggerObserver.ts │ │ ├── csharpChannelObserver.ts │ │ ├── csharpLoggerObserver.ts │ │ ├── optionChangeObserver.ts │ │ └── utils │ │ │ └── showMessage.ts │ ├── options.ts │ ├── platform.ts │ ├── processPicker.ts │ ├── projectConfiguration.ts │ ├── reportIssue.ts │ ├── telemetryEventNames.ts │ ├── telemetryReporter.ts │ ├── utils.ts │ ├── utils │ │ ├── combineDocumentSelectors.ts │ │ ├── dotnetInfo.ts │ │ └── getDotnetInfo.ts │ └── workspaceConfigurationProvider.ts ├── statusBarItemAdapter.ts ├── textEditorAdapter.ts ├── tools │ ├── OptionsSchema.json │ ├── README.md │ ├── VSSymbolSettings.json │ ├── generateOptionsSchema.ts │ ├── runtimeDependencyPackageUtils.ts │ └── updatePackageDependencies.ts ├── utils │ ├── dotnetDevCertsHttps.ts │ ├── getCSharpDevKit.ts │ ├── getMonoVersion.ts │ ├── getMsBuildInfo.ts │ └── removeBom.ts ├── vscodeAdapter.ts └── xaml │ ├── language-configuration.json │ └── syntaxes │ └── xaml.tmLanguage.json ├── tasks ├── backcompatTasks.ts ├── commandLineArguments.ts ├── componentUpdateTasks.ts ├── createTagsTasks.ts ├── debuggerTasks.ts ├── gitTasks.ts ├── localizationTasks.ts ├── offlinePackagingTasks.ts ├── packageJson.ts ├── profilingTasks.ts ├── projectPaths.ts ├── signingTasks.ts ├── snapTasks.ts ├── spawnNode.ts ├── testHelpers.ts ├── testTasks.ts └── vsceTasks.ts ├── test-plan.md ├── test ├── createTmpAsset.ts ├── csharp-test-profile.code-profile ├── fakes.ts ├── lsptoolshost │ ├── artifactTests │ │ ├── jest.config.ts │ │ └── vsix.test.ts │ ├── integrationTests │ │ ├── buildDiagnostics.integration.test.ts │ │ ├── classification.integration.test.ts │ │ ├── codeactions.integration.test.ts │ │ ├── codelens.integration.test.ts │ │ ├── commandEnablement.integration.test.ts │ │ ├── completion.integration.test.ts │ │ ├── diagnosticsHelpers.ts │ │ ├── documentDiagnostics.integration.test.ts │ │ ├── documentSymbolProvider.integration.test.ts │ │ ├── expectedCommands.ts │ │ ├── fileBasedPrograms.integration.test.ts │ │ ├── formatting.integration.test.ts │ │ ├── formattingEditorConfig.integration.test.ts │ │ ├── formattingTestHelpers.ts │ │ ├── gotoDefinition.integration.test.ts │ │ ├── gotoImplementation.integration.test.ts │ │ ├── hover.integration.test.ts │ │ ├── index.ts │ │ ├── integrationHelpers.ts │ │ ├── jest.config.ts │ │ ├── lspInlayHints.integration.test.ts │ │ ├── onAutoInsert.integration.test.ts │ │ ├── references.integration.test.ts │ │ ├── signatureHelp.integration.test.ts │ │ ├── sourceGenerator.integration.test.ts │ │ ├── testAssets │ │ │ ├── NuGet.config │ │ │ ├── razorApp.ts │ │ │ ├── singleCsproj.ts │ │ │ ├── slnFilterWithCsproj.ts │ │ │ ├── slnWithCsproj.ts │ │ │ ├── slnWithCsproj │ │ │ │ ├── .gitignore │ │ │ │ ├── .runsettings │ │ │ │ ├── .vscode │ │ │ │ │ ├── devkit_slnWithCsproj.code-workspace │ │ │ │ │ └── slnWithCsproj.code-workspace │ │ │ │ ├── b_SecondInOrder_SlnFile.sln │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── A.cs │ │ │ │ │ │ ├── BaseClassImplementation.cs │ │ │ │ │ │ ├── CodeActions.cs │ │ │ │ │ │ ├── CodeActionsInProject.cs │ │ │ │ │ │ ├── DocComments.cs │ │ │ │ │ │ ├── Formatting.cs │ │ │ │ │ │ ├── ISomeInterface.cs │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── SourceGenerator.cs │ │ │ │ │ │ ├── app.csproj │ │ │ │ │ │ ├── completion.cs │ │ │ │ │ │ ├── completionBase.cs │ │ │ │ │ │ ├── definition.cs │ │ │ │ │ │ ├── diagnostics.cs │ │ │ │ │ │ ├── documentSymbols.cs │ │ │ │ │ │ ├── folderWithEditorConfig │ │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ │ └── FormattingWithEditorConfig.cs │ │ │ │ │ │ ├── hover.cs │ │ │ │ │ │ ├── implementation.cs │ │ │ │ │ │ ├── inlayHints.cs │ │ │ │ │ │ ├── reference.cs │ │ │ │ │ │ ├── remap.cs │ │ │ │ │ │ ├── remapped.txt │ │ │ │ │ │ ├── secondaryDiagnostics.cs │ │ │ │ │ │ ├── semantictokens.cs │ │ │ │ │ │ ├── sigHelp.cs │ │ │ │ │ │ └── typeDefinition.cs │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Class1.cs │ │ │ │ │ │ └── lib.csproj │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── Directory.Build.props │ │ │ │ │ │ └── app1.cs │ │ │ │ └── test │ │ │ │ │ ├── CodeActionsInSolution.cs │ │ │ │ │ ├── UnitTest1.cs │ │ │ │ │ └── test.csproj │ │ │ ├── slnWithGenerator.ts │ │ │ ├── spawnGit.ts │ │ │ ├── testAssetWorkspace.ts │ │ │ └── testAssets.ts │ │ ├── testHooks.ts │ │ ├── unitTests.integration.test.ts │ │ └── workspaceDiagnostics.integration.test.ts │ └── unitTests │ │ ├── configurationMiddleware.test.ts │ │ ├── csharpChannelObserver.test.ts │ │ ├── csharpLoggerObserver.test.ts │ │ ├── jest.config.ts │ │ ├── json.test.ts │ │ ├── languageServerConfigChangeObserver.test.ts │ │ ├── migrateOptions.test.ts │ │ └── packageNlsJson.test.ts ├── omnisharp │ ├── omnisharpIntegrationTests │ │ ├── advisor.integration.test.ts │ │ ├── codeActionRename.integration.test.ts │ │ ├── codeLensProvider.integration.test.ts │ │ ├── completionProvider.integration.test.ts │ │ ├── definitionProvider.test.ts │ │ ├── diagnostics.integration.test.ts │ │ ├── documentSymbolProvider.integration.test.ts │ │ ├── documentationCommentAutoFormatting.integration.test.ts │ │ ├── dotnetTest.integration.test.ts │ │ ├── hoverProvider.integration.test.ts │ │ ├── implementationProvider.test.ts │ │ ├── index.ts │ │ ├── inlayHints.integration.test.ts │ │ ├── integrationHelpers.ts │ │ ├── jest.config.ts │ │ ├── languageMiddleware.integration.test.ts │ │ ├── launchConfiguration.integration.test.ts │ │ ├── launcher.test.ts │ │ ├── omnisharpCommands.integration.test.ts │ │ ├── parsedEnvironmentFile.test.ts │ │ ├── poll.ts │ │ ├── reAnalyze.integration.test.ts │ │ ├── referenceProvider.test.ts │ │ ├── semanticTokensProvider.test.ts │ │ ├── signatureHelp.integration.test.ts │ │ ├── sourceGeneratorDefinitionProvider.test.ts │ │ ├── testAssets │ │ │ ├── BasicRazorApp2_1 │ │ │ │ ├── .vscode │ │ │ │ │ ├── omnisharp_BasicRazorApp2_1.code-workspace │ │ │ │ │ └── omnisharp_lsp_BasicRazorApp2_1.code-workspace │ │ │ │ ├── BasicRazorApp2_1.csproj │ │ │ │ ├── Pages │ │ │ │ │ ├── ErrorHaver.razor │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Program.cs │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── NuGet.config │ │ │ ├── activeTestAssetWorkspace.ts │ │ │ ├── omnisharpTestAssetWorkspace.ts │ │ │ ├── singleCsproj │ │ │ │ ├── .gitignore │ │ │ │ ├── .vscode │ │ │ │ │ ├── omnisharp_lsp_singleCsproj.code-workspace │ │ │ │ │ └── omnisharp_singleCsproj.code-workspace │ │ │ │ ├── A.cs │ │ │ │ ├── DocComments.cs │ │ │ │ ├── ISomeInterface.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── SomeInterfaceImpl.cs │ │ │ │ ├── completion.cs │ │ │ │ ├── completionBase.cs │ │ │ │ ├── definition.cs │ │ │ │ ├── diagnostics.cs │ │ │ │ ├── documentSymbols.cs │ │ │ │ ├── hover.cs │ │ │ │ ├── implementation.cs │ │ │ │ ├── inlayHints.cs │ │ │ │ ├── reference.cs │ │ │ │ ├── remap.cs │ │ │ │ ├── remapped.txt │ │ │ │ ├── secondaryDiagnostics.cs │ │ │ │ ├── semantictokens.cs │ │ │ │ ├── sigHelp.cs │ │ │ │ ├── singleCsproj.csproj │ │ │ │ └── typeDefinition.cs │ │ │ ├── slnFilterWithCsproj │ │ │ │ ├── .gitignore │ │ │ │ ├── .vscode │ │ │ │ │ ├── omnisharp_lsp_slnFilterWithCsproj.code-workspace │ │ │ │ │ └── omnisharp_slnFilterWithCsproj.code-workspace │ │ │ │ ├── SolutionFile.sln │ │ │ │ ├── SolutionFilter.slnf │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── A.cs │ │ │ │ │ │ ├── DocComments.cs │ │ │ │ │ │ ├── ISomeInterface.cs │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── SomeInterfaceImpl.cs │ │ │ │ │ │ ├── app.csproj │ │ │ │ │ │ ├── completion.cs │ │ │ │ │ │ ├── completionBase.cs │ │ │ │ │ │ ├── definition.cs │ │ │ │ │ │ ├── diagnostics.cs │ │ │ │ │ │ ├── documentSymbols.cs │ │ │ │ │ │ ├── hover.cs │ │ │ │ │ │ ├── implementation.cs │ │ │ │ │ │ ├── inlayHints.cs │ │ │ │ │ │ ├── reference.cs │ │ │ │ │ │ ├── remap.cs │ │ │ │ │ │ ├── remapped.txt │ │ │ │ │ │ ├── secondaryDiagnostics.cs │ │ │ │ │ │ ├── semantictokens.cs │ │ │ │ │ │ ├── sigHelp.cs │ │ │ │ │ │ └── typeDefinition.cs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Class1.cs │ │ │ │ │ │ └── lib.csproj │ │ │ │ └── test │ │ │ │ │ ├── UnitTest1.cs │ │ │ │ │ └── test.csproj │ │ │ ├── slnWithCsproj │ │ │ │ ├── .gitignore │ │ │ │ ├── .runsettings │ │ │ │ ├── .vscode │ │ │ │ │ ├── lsp_tools_host_slnWithCsproj.code-workspace │ │ │ │ │ ├── omnisharp_lsp_slnWithCsproj.code-workspace │ │ │ │ │ └── omnisharp_slnWithCsproj.code-workspace │ │ │ │ ├── b_SecondInOrder_SlnFile.sln │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── A.cs │ │ │ │ │ │ ├── DocComments.cs │ │ │ │ │ │ ├── ISomeInterface.cs │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── SomeInterfaceImpl.cs │ │ │ │ │ │ ├── app.csproj │ │ │ │ │ │ ├── completion.cs │ │ │ │ │ │ ├── completionBase.cs │ │ │ │ │ │ ├── definition.cs │ │ │ │ │ │ ├── diagnostics.cs │ │ │ │ │ │ ├── documentSymbols.cs │ │ │ │ │ │ ├── hover.cs │ │ │ │ │ │ ├── implementation.cs │ │ │ │ │ │ ├── inlayHints.cs │ │ │ │ │ │ ├── reference.cs │ │ │ │ │ │ ├── remap.cs │ │ │ │ │ │ ├── remapped.txt │ │ │ │ │ │ ├── secondaryDiagnostics.cs │ │ │ │ │ │ ├── semantictokens.cs │ │ │ │ │ │ ├── sigHelp.cs │ │ │ │ │ │ └── typeDefinition.cs │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Class1.cs │ │ │ │ │ │ └── lib.csproj │ │ │ │ └── test │ │ │ │ │ ├── UnitTest1.cs │ │ │ │ │ └── test.csproj │ │ │ └── slnWithGenerator │ │ │ │ ├── .vscode │ │ │ │ └── settings.json │ │ │ │ ├── app │ │ │ │ ├── GeneratorTrigger.cs │ │ │ │ └── app.csproj │ │ │ │ ├── generator │ │ │ │ ├── MainGenerator.cs │ │ │ │ └── generator.csproj │ │ │ │ └── slnWithGenerator.sln │ │ ├── typeDefinitionProvider.test.ts │ │ ├── virtualDocumentTracker.integration.test.ts │ │ └── workspaceSymbolProvider.integration.test.ts │ ├── omnisharpUnitTests │ │ ├── absolutePath.test.ts │ │ ├── assets.test.ts │ │ ├── common.test.ts │ │ ├── coreclrDebug │ │ │ └── targetArchitecture.test.ts │ │ ├── fakes │ │ │ ├── fakeDotnetResolver.ts │ │ │ └── fakeMonoResolver.ts │ │ ├── features │ │ │ └── reportIssue.test.ts │ │ ├── informationMessageObserver.test.ts │ │ ├── installRuntimeDependencies.test.ts │ │ ├── jest.config.ts │ │ ├── logging │ │ │ ├── backgroundWorkStatusBarObserver.test.ts │ │ │ ├── dotnetChannelObserver.test.ts │ │ │ ├── dotnetLoggerObserver.test.ts │ │ │ ├── dotnetTestChannelObserver.test.ts │ │ │ ├── dotnetTestLoggerObserver.test.ts │ │ │ ├── errorMessageObserver.test.ts │ │ │ ├── omnisharpChannelObserver.test.ts │ │ │ ├── omnisharpDebugModeLoggerObserver.test.ts │ │ │ ├── omnisharpLoggerObserver.test.ts │ │ │ ├── omnisharpStatusBarObserver.test.ts │ │ │ ├── projectStatusBarObserver.test.ts │ │ │ ├── razorLoggerObserver.test.ts │ │ │ ├── telemetryObserver.test.ts │ │ │ └── warningMessageObserver.test.ts │ │ ├── omnisharp │ │ │ └── omniSharpMonoResolver.test.ts │ │ ├── omnisharpDownloader.test.ts │ │ ├── omnisharpManager.test.ts │ │ ├── omnisharpPackageCreator.test.ts │ │ ├── optionChangeObserver.test.ts │ │ ├── optionStream.test.ts │ │ ├── options.test.ts │ │ ├── packages │ │ │ ├── downloadAndInstallPackages.test.ts │ │ │ ├── fileDownloader.test.ts │ │ │ ├── isValidDownload.test.ts │ │ │ ├── packageFilterer.test.ts │ │ │ ├── proxy.test.ts │ │ │ └── zipInstaller.test.ts │ │ ├── platform.test.ts │ │ ├── processPicker.test.ts │ │ └── testAssets │ │ │ ├── getConfigChangeEvent.ts │ │ │ ├── mockHttpsServer.ts │ │ │ ├── private.pem │ │ │ ├── public.pem │ │ │ ├── testAssets.ts │ │ │ ├── testEventBus.ts │ │ │ ├── testFile.ts │ │ │ └── testZip.ts │ ├── runFeatureTests.ts │ └── testUtil.ts ├── razor │ ├── razorIntegrationTests │ │ ├── completion.integration.test.ts │ │ ├── formatting.integration.test.ts │ │ ├── hover.integration.test.ts │ │ ├── index.ts │ │ ├── jest.config.ts │ │ ├── reference.integration.test.ts │ │ ├── rename.integration.test.ts │ │ └── testAssets │ │ │ ├── NuGet.config │ │ │ ├── RazorApp │ │ │ ├── .vscode │ │ │ │ ├── RazorApp.code-workspace │ │ │ │ └── devkit_RazorApp.code-workspace │ │ │ ├── App.razor │ │ │ ├── Data │ │ │ │ ├── WeatherForecast.cs │ │ │ │ └── WeatherForecastService.cs │ │ │ ├── Pages │ │ │ │ ├── BadlyFormatted.razor │ │ │ │ ├── Completion.razor │ │ │ │ ├── Counter.razor │ │ │ │ ├── Definition.razor │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── FetchData.razor │ │ │ │ ├── Hover.cshtml │ │ │ │ ├── Index.razor │ │ │ │ ├── References.razor │ │ │ │ ├── References.razor.cs │ │ │ │ └── _Host.cshtml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── RazorApp.csproj │ │ │ ├── RazorApp.sln │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor │ │ │ │ ├── MainLayout.razor.css │ │ │ │ ├── NavMenu.razor │ │ │ │ ├── NavMenu.razor.css │ │ │ │ └── SurveyPrompt.razor │ │ │ ├── _Imports.razor │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ └── testAssetWorkspace.ts │ └── razorTests │ │ ├── Microsoft.AspNetCore.Razor.VSCode.Grammar.Test │ │ ├── README.md │ │ ├── embeddedGrammars │ │ │ ├── JavaScript.tmLanguage.json │ │ │ ├── UpdateTextMate.ps1 │ │ │ ├── csharp.tmLanguage.json │ │ │ ├── css.tmLanguage.json │ │ │ └── html.tmLanguage.json │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── grammarTests.test.ts.snap │ │ │ ├── addTagHelperDirective.ts │ │ │ ├── attributeDirective.ts │ │ │ ├── codeBlock.ts │ │ │ ├── codeDirective.ts │ │ │ ├── doStatement.ts │ │ │ ├── elsePart.ts │ │ │ ├── explicitExpressionInAttribute.ts │ │ │ ├── explicitExpressions.ts │ │ │ ├── forStatement.ts │ │ │ ├── foreachStatement.ts │ │ │ ├── functionsDirective.ts │ │ │ ├── grammarTests.test.ts │ │ │ ├── htmlDynamicAttribute.ts │ │ │ ├── ifStatement.ts │ │ │ ├── implementsDirective.ts │ │ │ ├── implicitExpressionInAttribute.ts │ │ │ ├── implicitExpressions.ts │ │ │ ├── infrastructure │ │ │ ├── ITokenizedContent.ts │ │ │ ├── snapshotFactory.ts │ │ │ ├── testUtilities.ts │ │ │ └── tokenizedContentProvider.ts │ │ │ ├── inheritsDirective.ts │ │ │ ├── injectDirective.ts │ │ │ ├── layoutDirective.ts │ │ │ ├── lockStatement.ts │ │ │ ├── modelDirective.ts │ │ │ ├── namespaceDirective.ts │ │ │ ├── pageDirective.ts │ │ │ ├── preservewhitespaceDirective.ts │ │ │ ├── razorComment.ts │ │ │ ├── razorTemplate.ts │ │ │ ├── removeTagHelperDirective.ts │ │ │ ├── rendermodeDirective.ts │ │ │ ├── scriptBlock.ts │ │ │ ├── sectionDirective.ts │ │ │ ├── styleBlock.ts │ │ │ ├── switchStatement.ts │ │ │ ├── tagHelperPrefixDirective.ts │ │ │ ├── transitions.ts │ │ │ ├── tryStatement.ts │ │ │ ├── typeparamDirective.ts │ │ │ ├── usingDirective.ts │ │ │ ├── usingStatement.ts │ │ │ └── whileStatement.ts │ │ └── jest.config.ts ├── runIntegrationTests.ts ├── tasks │ ├── jest.config.ts │ └── versionHelper.test.ts ├── untrustedWorkspace │ └── integrationTests │ │ ├── index.ts │ │ ├── jest.config.ts │ │ ├── testAssets │ │ └── empty │ │ │ ├── .vscode │ │ │ └── empty.code-workspace │ │ │ └── readme.md │ │ └── untrustedWorkspace.integration.test.ts ├── vsCodeEnvironment.ts ├── vsCodeFramework.ts └── vscodeLauncher.ts ├── themes ├── vs2019_dark.json └── vs2019_light.json ├── tsconfig.json ├── typings └── vscode-tasks.d.ts ├── version.json └── wallaby.js /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.azuredevops/policies/branchClassification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.azuredevops/policies/branchClassification.yml -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/guardian/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.config/guardian/.gdnbaselines -------------------------------------------------------------------------------- /.config/guardian/TSAConfig.gdntsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.config/guardian/TSAConfig.gdntsa -------------------------------------------------------------------------------- /.config/snap-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.config/snap-flow.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/devinit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.devcontainer/devinit.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/branch-snap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/branch-snap.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-comment-handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/release-comment-handler.yml -------------------------------------------------------------------------------- /.github/workflows/release-reusable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/release-reusable.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | out 2 | dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/dnceng-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscode/dnceng-schema.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/README.md -------------------------------------------------------------------------------- /RuntimeLicenses/dependencies/OpenDebugAD7-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/RuntimeLicenses/dependencies/OpenDebugAD7-License.txt -------------------------------------------------------------------------------- /RuntimeLicenses/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/RuntimeLicenses/license.txt -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /__mocks__/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/__mocks__/vscode.ts -------------------------------------------------------------------------------- /azure-pipelines-official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines-official.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/build-vsix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/build-vsix.yml -------------------------------------------------------------------------------- /azure-pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/build.yml -------------------------------------------------------------------------------- /azure-pipelines/green-insertion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/green-insertion.yml -------------------------------------------------------------------------------- /azure-pipelines/install-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/install-node.yml -------------------------------------------------------------------------------- /azure-pipelines/loc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/loc.yml -------------------------------------------------------------------------------- /azure-pipelines/prereqs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/prereqs.yml -------------------------------------------------------------------------------- /azure-pipelines/profiling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/profiling.yml -------------------------------------------------------------------------------- /azure-pipelines/publish-roslyn-copilot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/publish-roslyn-copilot.yml -------------------------------------------------------------------------------- /azure-pipelines/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/release.yml -------------------------------------------------------------------------------- /azure-pipelines/test-linux-docker-prereqs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/test-linux-docker-prereqs.yml -------------------------------------------------------------------------------- /azure-pipelines/test-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/test-matrix.yml -------------------------------------------------------------------------------- /azure-pipelines/test-omnisharp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/test-omnisharp.yml -------------------------------------------------------------------------------- /azure-pipelines/test-prereqs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/test-prereqs.yml -------------------------------------------------------------------------------- /azure-pipelines/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/test.yml -------------------------------------------------------------------------------- /azure-pipelines/validate-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/azure-pipelines/validate-build.yml -------------------------------------------------------------------------------- /baseJestConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/baseJestConfig.ts -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/codecov.yml -------------------------------------------------------------------------------- /debugger-launchjson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/debugger-launchjson.md -------------------------------------------------------------------------------- /debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/debugger.md -------------------------------------------------------------------------------- /docs/How-to-run-and-debug-unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/How-to-run-and-debug-unit-tests.md -------------------------------------------------------------------------------- /docs/Installing-without-Internet-connectivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/Installing-without-Internet-connectivity.md -------------------------------------------------------------------------------- /docs/Reporting-Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/Reporting-Issues.md -------------------------------------------------------------------------------- /docs/Troubleshooting-'The-.NET-Core-SDK-cannot-be-located.'-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/Troubleshooting-'The-.NET-Core-SDK-cannot-be-located.'-errors.md -------------------------------------------------------------------------------- /docs/debugger/.NET-Core-debugging-feature-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/.NET-Core-debugging-feature-list.md -------------------------------------------------------------------------------- /docs/debugger/Attaching-to-remote-processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Attaching-to-remote-processes.md -------------------------------------------------------------------------------- /docs/debugger/Debugging-Sandboxed-Processes-on-OSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Debugging-Sandboxed-Processes-on-OSX.md -------------------------------------------------------------------------------- /docs/debugger/Debugging-into-the-.NET-Runtime-itself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Debugging-into-the-.NET-Runtime-itself.md -------------------------------------------------------------------------------- /docs/debugger/Debugging-x64-processes-on-an-arm64-computer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Debugging-x64-processes-on-an-arm64-computer.md -------------------------------------------------------------------------------- /docs/debugger/Desktop-.NET-Framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Desktop-.NET-Framework.md -------------------------------------------------------------------------------- /docs/debugger/Diagnosting-'Debug-adapter-process-has-terminated-unexpectedly'.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Diagnosting-'Debug-adapter-process-has-terminated-unexpectedly'.md -------------------------------------------------------------------------------- /docs/debugger/Enabling-C#-debugger-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Enabling-C#-debugger-logging.md -------------------------------------------------------------------------------- /docs/debugger/ExampleCode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/ExampleCode/tasks.json -------------------------------------------------------------------------------- /docs/debugger/Microsoft-.NET-Core-Debugger-licensing-and-Microsoft-Visual-Studio-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Microsoft-.NET-Core-Debugger-licensing-and-Microsoft-Visual-Studio-Code.md -------------------------------------------------------------------------------- /docs/debugger/Portable-PDBs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Portable-PDBs.md -------------------------------------------------------------------------------- /docs/debugger/Remote-Debugging-On-Linux-Arm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Remote-Debugging-On-Linux-Arm.md -------------------------------------------------------------------------------- /docs/debugger/Testing-libicu-compatibility-on-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Testing-libicu-compatibility-on-Linux.md -------------------------------------------------------------------------------- /docs/debugger/Troubleshoot-Breakpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Troubleshoot-Breakpoints.md -------------------------------------------------------------------------------- /docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Troubleshoot-loading-the-.NET-Debug-Services.md -------------------------------------------------------------------------------- /docs/debugger/Windows-Subsystem-for-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/debugger/Windows-Subsystem-for-Linux.md -------------------------------------------------------------------------------- /docs/images/Exception-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/Exception-Settings.png -------------------------------------------------------------------------------- /docs/images/OSXConsoleUtility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/OSXConsoleUtility.png -------------------------------------------------------------------------------- /docs/images/background_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/background_analysis.png -------------------------------------------------------------------------------- /docs/images/breakpoints-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/breakpoints-window.png -------------------------------------------------------------------------------- /docs/images/crash_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/crash_dump.png -------------------------------------------------------------------------------- /docs/images/csharp_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/csharp_trace.png -------------------------------------------------------------------------------- /docs/images/debug-launch-configurations-remote-attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/debug-launch-configurations-remote-attach.png -------------------------------------------------------------------------------- /docs/images/debug-launch-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/debug-launch-configurations.png -------------------------------------------------------------------------------- /docs/images/debugging_debugicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/debugging_debugicon.png -------------------------------------------------------------------------------- /docs/images/developer_community_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/developer_community_feedback.png -------------------------------------------------------------------------------- /docs/images/generated_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/generated_prs.png -------------------------------------------------------------------------------- /docs/images/info-bar-add-required-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/info-bar-add-required-assets.png -------------------------------------------------------------------------------- /docs/images/inspect_tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/inspect_tokens.png -------------------------------------------------------------------------------- /docs/images/language_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/language_status.png -------------------------------------------------------------------------------- /docs/images/main_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/main_snap.png -------------------------------------------------------------------------------- /docs/images/omnisharp_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/omnisharp_log.png -------------------------------------------------------------------------------- /docs/images/razor_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/razor_logs.png -------------------------------------------------------------------------------- /docs/images/recordTraceArgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/recordTraceArgs.png -------------------------------------------------------------------------------- /docs/images/recordTraceCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/recordTraceCommand.png -------------------------------------------------------------------------------- /docs/images/recordTraceTerminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/recordTraceTerminal.png -------------------------------------------------------------------------------- /docs/images/release_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/release_pipeline.png -------------------------------------------------------------------------------- /docs/images/release_pipeline_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/release_pipeline_params.png -------------------------------------------------------------------------------- /docs/images/report_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/report_issue.png -------------------------------------------------------------------------------- /docs/images/unit-test-codelens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/images/unit-test-codelens.png -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/docs/readme.md -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/esbuild.js -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /images/csharpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/images/csharpIcon.png -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/init.ps1 -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/jest.config.ts -------------------------------------------------------------------------------- /l10n/bundle.l10n.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.cs.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.de.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.es.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.fr.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.it.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.ja.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.ko.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.pl.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.pt-br.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.ru.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.tr.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.zh-cn.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/l10n/bundle.l10n.zh-tw.json -------------------------------------------------------------------------------- /loc/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/loc/LocProject.json -------------------------------------------------------------------------------- /msbuild/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/Directory.Build.props -------------------------------------------------------------------------------- /msbuild/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/global.json -------------------------------------------------------------------------------- /msbuild/server/ServerDownload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/server/ServerDownload.csproj -------------------------------------------------------------------------------- /msbuild/signing/SIGNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/signing/SIGNING.md -------------------------------------------------------------------------------- /msbuild/signing/signJs/signJs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/signing/signJs/signJs.proj -------------------------------------------------------------------------------- /msbuild/signing/signVsix/signVsix.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/msbuild/signing/signVsix/signVsix.proj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.cs.json -------------------------------------------------------------------------------- /package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.de.json -------------------------------------------------------------------------------- /package.nls.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.es.json -------------------------------------------------------------------------------- /package.nls.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.fr.json -------------------------------------------------------------------------------- /package.nls.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.it.json -------------------------------------------------------------------------------- /package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.ja.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.ko.json -------------------------------------------------------------------------------- /package.nls.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.pl.json -------------------------------------------------------------------------------- /package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.pt-br.json -------------------------------------------------------------------------------- /package.nls.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.ru.json -------------------------------------------------------------------------------- /package.nls.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.tr.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /scripts/remoteProcessPickerScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/scripts/remoteProcessPickerScript -------------------------------------------------------------------------------- /snippets/csharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/snippets/csharp.json -------------------------------------------------------------------------------- /src/activateOmniSharp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/activateOmniSharp.ts -------------------------------------------------------------------------------- /src/activateRoslyn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/activateRoslyn.ts -------------------------------------------------------------------------------- /src/checkDotNetRuntimeExtensionVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/checkDotNetRuntimeExtensionVersion.ts -------------------------------------------------------------------------------- /src/checkSupportedPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/checkSupportedPlatform.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/compositeDisposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/compositeDisposable.ts -------------------------------------------------------------------------------- /src/constants/IGetMonoVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/constants/IGetMonoVersion.ts -------------------------------------------------------------------------------- /src/constants/csharpExtensionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/constants/csharpExtensionId.ts -------------------------------------------------------------------------------- /src/coreclrDebug/activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/coreclrDebug/activate.ts -------------------------------------------------------------------------------- /src/coreclrDebug/debuggerEventsProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/coreclrDebug/debuggerEventsProtocol.ts -------------------------------------------------------------------------------- /src/coreclrDebug/parsedEnvironmentFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/coreclrDebug/parsedEnvironmentFile.ts -------------------------------------------------------------------------------- /src/coreclrDebug/provisionalDebugSessionTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/coreclrDebug/provisionalDebugSessionTracker.ts -------------------------------------------------------------------------------- /src/coreclrDebug/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/coreclrDebug/util.ts -------------------------------------------------------------------------------- /src/csharpDevKitExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/csharpDevKitExports.ts -------------------------------------------------------------------------------- /src/csharpExtensionExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/csharpExtensionExports.ts -------------------------------------------------------------------------------- /src/csharpIntelliCodeExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/csharpIntelliCodeExports.ts -------------------------------------------------------------------------------- /src/disposable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/disposable.ts -------------------------------------------------------------------------------- /src/eventStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/eventStream.ts -------------------------------------------------------------------------------- /src/installRuntimeDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/installRuntimeDependencies.ts -------------------------------------------------------------------------------- /src/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/json.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/lsptoolshost/activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/activate.ts -------------------------------------------------------------------------------- /src/lsptoolshost/autoInsert/onAutoInsert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/autoInsert/onAutoInsert.ts -------------------------------------------------------------------------------- /src/lsptoolshost/autoInsert/onAutoInsertFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/autoInsert/onAutoInsertFeature.ts -------------------------------------------------------------------------------- /src/lsptoolshost/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/commands.ts -------------------------------------------------------------------------------- /src/lsptoolshost/copilot/contextProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/copilot/contextProviders.ts -------------------------------------------------------------------------------- /src/lsptoolshost/debugger/IDotnetDebugConfigurationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/debugger/IDotnetDebugConfigurationService.ts -------------------------------------------------------------------------------- /src/lsptoolshost/debugger/debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/debugger/debugger.ts -------------------------------------------------------------------------------- /src/lsptoolshost/debugger/roslynWorkspaceDebugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/debugger/roslynWorkspaceDebugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/diagnostics/buildDiagnosticsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/diagnostics/buildDiagnosticsService.ts -------------------------------------------------------------------------------- /src/lsptoolshost/diagnostics/buildResultReporterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/diagnostics/buildResultReporterService.ts -------------------------------------------------------------------------------- /src/lsptoolshost/diagnostics/diagnosticMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/diagnostics/diagnosticMiddleware.ts -------------------------------------------------------------------------------- /src/lsptoolshost/diagnostics/fixAllCodeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/diagnostics/fixAllCodeAction.ts -------------------------------------------------------------------------------- /src/lsptoolshost/diagnostics/nestedCodeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/diagnostics/nestedCodeAction.ts -------------------------------------------------------------------------------- /src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionApi.ts -------------------------------------------------------------------------------- /src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/dotnetRuntime/dotnetRuntimeExtensionResolver.ts -------------------------------------------------------------------------------- /src/lsptoolshost/extensions/builtInComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/extensions/builtInComponents.ts -------------------------------------------------------------------------------- /src/lsptoolshost/extensions/roslynLanguageServerExportChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/extensions/roslynLanguageServerExportChannel.ts -------------------------------------------------------------------------------- /src/lsptoolshost/generators/sourceGeneratedFilesContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/generators/sourceGeneratedFilesContentProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/handlers/showToastNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/handlers/showToastNotification.ts -------------------------------------------------------------------------------- /src/lsptoolshost/options/configurationMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/options/configurationMiddleware.ts -------------------------------------------------------------------------------- /src/lsptoolshost/options/optionChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/options/optionChanges.ts -------------------------------------------------------------------------------- /src/lsptoolshost/options/optionNameConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/options/optionNameConverter.ts -------------------------------------------------------------------------------- /src/lsptoolshost/options/universalEditorConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/options/universalEditorConfigProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/profiling/profiling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/profiling/profiling.ts -------------------------------------------------------------------------------- /src/lsptoolshost/projectContext/projectContextService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/projectContext/projectContextService.ts -------------------------------------------------------------------------------- /src/lsptoolshost/projectContext/projectContextStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/projectContext/projectContextStatus.ts -------------------------------------------------------------------------------- /src/lsptoolshost/projectRestore/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/projectRestore/restore.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/documentContentsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/documentContentsRequest.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/generatedDocumentKind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/generatedDocumentKind.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/htmlDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/htmlDocument.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/htmlDocumentContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/htmlDocumentContentProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/htmlDocumentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/htmlDocumentManager.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/htmlForwardedRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/htmlForwardedRequest.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/htmlUpdateParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/htmlUpdateParameters.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/razorEndpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/razorEndpoints.ts -------------------------------------------------------------------------------- /src/lsptoolshost/razor/showGeneratedDocumentCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/razor/showGeneratedDocumentCommand.ts -------------------------------------------------------------------------------- /src/lsptoolshost/server/languageServerEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/server/languageServerEvents.ts -------------------------------------------------------------------------------- /src/lsptoolshost/server/roslynLanguageClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/server/roslynLanguageClient.ts -------------------------------------------------------------------------------- /src/lsptoolshost/server/roslynLanguageServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/server/roslynLanguageServer.ts -------------------------------------------------------------------------------- /src/lsptoolshost/server/roslynProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/server/roslynProtocol.ts -------------------------------------------------------------------------------- /src/lsptoolshost/server/serverCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/server/serverCommands.ts -------------------------------------------------------------------------------- /src/lsptoolshost/serviceBroker/brokeredServicesHosting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/serviceBroker/brokeredServicesHosting.ts -------------------------------------------------------------------------------- /src/lsptoolshost/solutionSnapshot/ISolutionSnapshotProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/solutionSnapshot/ISolutionSnapshotProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/solutionSnapshot/descriptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/solutionSnapshot/descriptors.ts -------------------------------------------------------------------------------- /src/lsptoolshost/solutionSnapshot/solutionSnapshotProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/solutionSnapshot/solutionSnapshotProvider.ts -------------------------------------------------------------------------------- /src/lsptoolshost/testing/unitTesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/testing/unitTesting.ts -------------------------------------------------------------------------------- /src/lsptoolshost/utils/isString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/utils/isString.ts -------------------------------------------------------------------------------- /src/lsptoolshost/utils/uriConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/utils/uriConverter.ts -------------------------------------------------------------------------------- /src/lsptoolshost/workspace/miscellaneousFileNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/workspace/miscellaneousFileNotifier.ts -------------------------------------------------------------------------------- /src/lsptoolshost/workspace/workspaceCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/workspace/workspaceCommands.ts -------------------------------------------------------------------------------- /src/lsptoolshost/workspace/workspaceStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/lsptoolshost/workspace/workspaceStatus.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/nestedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/nestedError.ts -------------------------------------------------------------------------------- /src/networkSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/networkSettings.ts -------------------------------------------------------------------------------- /src/omnisharp/delayTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/delayTracker.ts -------------------------------------------------------------------------------- /src/omnisharp/dotnetResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/dotnetResolver.ts -------------------------------------------------------------------------------- /src/omnisharp/engines/IEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/engines/IEngine.ts -------------------------------------------------------------------------------- /src/omnisharp/engines/lspEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/engines/lspEngine.ts -------------------------------------------------------------------------------- /src/omnisharp/engines/stdioEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/engines/stdioEngine.ts -------------------------------------------------------------------------------- /src/omnisharp/features/abstractProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/abstractProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/changeForwarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/changeForwarding.ts -------------------------------------------------------------------------------- /src/omnisharp/features/codeActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/codeActionProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/codeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/codeLensProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/commands.ts -------------------------------------------------------------------------------- /src/omnisharp/features/completionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/completionProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/definitionMetadataDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/definitionMetadataDocumentProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/definitionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/definitionProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/diagnosticsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/diagnosticsProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/documentHighlightProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/documentHighlightProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/documentSymbolProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/documentSymbolProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/documentation.ts -------------------------------------------------------------------------------- /src/omnisharp/features/dotnetTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/dotnetTest.ts -------------------------------------------------------------------------------- /src/omnisharp/features/fileOpenCloseProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/fileOpenCloseProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/fixAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/fixAll.ts -------------------------------------------------------------------------------- /src/omnisharp/features/fixAllProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/fixAllProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/formattingEditProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/formattingEditProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/hoverProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/hoverProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/implementationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/implementationProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/inlayHintProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/inlayHintProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/launchConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/launchConfiguration.ts -------------------------------------------------------------------------------- /src/omnisharp/features/referenceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/referenceProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/renameProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/renameProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/semanticTokensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/semanticTokensProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/signatureHelpProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/signatureHelpProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/sourceGeneratedDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/sourceGeneratedDocumentProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/structureProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/structureProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/features/virtualDocumentTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/virtualDocumentTracker.ts -------------------------------------------------------------------------------- /src/omnisharp/features/workspaceSymbolProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/features/workspaceSymbolProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/fileOperationsResponseEditBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/fileOperationsResponseEditBuilder.ts -------------------------------------------------------------------------------- /src/omnisharp/languageMiddlewareFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/languageMiddlewareFeature.ts -------------------------------------------------------------------------------- /src/omnisharp/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/launcher.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/backgroundWorkStatusBarObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/backgroundWorkStatusBarObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/baseStatusBarItemObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/baseStatusBarItemObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/csharpLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/csharpLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/dotnetChannelObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/dotnetChannelObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/dotnetLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/dotnetLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/dotnetTestChannelObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/dotnetTestChannelObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/dotnetTestLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/dotnetTestLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/errorMessageObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/errorMessageObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/informationMessageObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/informationMessageObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/omnisharpChannelObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/omnisharpChannelObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/omnisharpDebugModeLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/omnisharpDebugModeLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/omnisharpLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/omnisharpLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/omnisharpStatusBarObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/omnisharpStatusBarObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/projectStatusBarObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/projectStatusBarObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/razorLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/razorLoggerObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/telemetryObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/telemetryObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/observers/warningMessageObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/observers/warningMessageObserver.ts -------------------------------------------------------------------------------- /src/omnisharp/omniSharpMonoResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omniSharpMonoResolver.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpDownloader.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpLanguageServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpLanguageServer.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpLoggingEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpLoggingEvents.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpManager.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpOptionChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpOptionChanges.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpPackageCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpPackageCreator.ts -------------------------------------------------------------------------------- /src/omnisharp/omnisharpWorkspaceDebugInformationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/omnisharpWorkspaceDebugInformationProvider.ts -------------------------------------------------------------------------------- /src/omnisharp/prioritization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/prioritization.ts -------------------------------------------------------------------------------- /src/omnisharp/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/protocol.ts -------------------------------------------------------------------------------- /src/omnisharp/requestQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/requestQueue.ts -------------------------------------------------------------------------------- /src/omnisharp/requirementCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/requirementCheck.ts -------------------------------------------------------------------------------- /src/omnisharp/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/server.ts -------------------------------------------------------------------------------- /src/omnisharp/typeConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/typeConversion.ts -------------------------------------------------------------------------------- /src/omnisharp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/omnisharp/utils.ts -------------------------------------------------------------------------------- /src/packageManager/IInstallDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/IInstallDependencies.ts -------------------------------------------------------------------------------- /src/packageManager/IPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/IPackage.ts -------------------------------------------------------------------------------- /src/packageManager/absolutePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/absolutePath.ts -------------------------------------------------------------------------------- /src/packageManager/absolutePathPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/absolutePathPackage.ts -------------------------------------------------------------------------------- /src/packageManager/downloadAndInstallPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/downloadAndInstallPackages.ts -------------------------------------------------------------------------------- /src/packageManager/fileDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/fileDownloader.ts -------------------------------------------------------------------------------- /src/packageManager/getAbsolutePathPackagesToInstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/getAbsolutePathPackagesToInstall.ts -------------------------------------------------------------------------------- /src/packageManager/isValidDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/isValidDownload.ts -------------------------------------------------------------------------------- /src/packageManager/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/package.ts -------------------------------------------------------------------------------- /src/packageManager/packageError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/packageError.ts -------------------------------------------------------------------------------- /src/packageManager/packageFilterer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/packageFilterer.ts -------------------------------------------------------------------------------- /src/packageManager/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/proxy.ts -------------------------------------------------------------------------------- /src/packageManager/zipInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/packageManager/zipInstaller.ts -------------------------------------------------------------------------------- /src/razor/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/language-configuration.json -------------------------------------------------------------------------------- /src/razor/razorOmnisharp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/razorOmnisharp.ts -------------------------------------------------------------------------------- /src/razor/razorOmnisharpDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/razorOmnisharpDownloader.ts -------------------------------------------------------------------------------- /src/razor/src/blazorDebug/blazorDebugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/blazorDebug/blazorDebugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/razor/src/blazorDebug/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/blazorDebug/constants.ts -------------------------------------------------------------------------------- /src/razor/src/blazorDebug/terminateDebugHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/blazorDebug/terminateDebugHandler.ts -------------------------------------------------------------------------------- /src/razor/src/colorPresentation/colorPresentationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/colorPresentation/colorPresentationContext.ts -------------------------------------------------------------------------------- /src/razor/src/colorPresentation/colorPresentationHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/colorPresentation/colorPresentationHandler.ts -------------------------------------------------------------------------------- /src/razor/src/colorPresentation/serializableColorPresentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/colorPresentation/serializableColorPresentation.ts -------------------------------------------------------------------------------- /src/razor/src/colorPresentation/serializableColorPresentationParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/colorPresentation/serializableColorPresentationParams.ts -------------------------------------------------------------------------------- /src/razor/src/completion/completionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/completion/completionHandler.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/IReportIssueDataCollectionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/IReportIssueDataCollectionResult.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/reportIssueCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/reportIssueCommand.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/reportIssueCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/reportIssueCreator.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/reportIssueDataCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/reportIssueDataCollector.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/reportIssueDataCollectorFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/reportIssueDataCollectorFactory.ts -------------------------------------------------------------------------------- /src/razor/src/diagnostics/reportIssuePanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/diagnostics/reportIssuePanel.ts -------------------------------------------------------------------------------- /src/razor/src/documentColor/documentColorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/documentColor/documentColorHandler.ts -------------------------------------------------------------------------------- /src/razor/src/documentColor/serializableColorInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/documentColor/serializableColorInformation.ts -------------------------------------------------------------------------------- /src/razor/src/folding/foldingRangeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/folding/foldingRangeHandler.ts -------------------------------------------------------------------------------- /src/razor/src/formatting/formattingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/formatting/formattingHandler.ts -------------------------------------------------------------------------------- /src/razor/src/formatting/serializableFormattingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/formatting/serializableFormattingResponse.ts -------------------------------------------------------------------------------- /src/razor/src/razorExtensionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/razorExtensionId.ts -------------------------------------------------------------------------------- /src/razor/src/razorLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/razorLanguage.ts -------------------------------------------------------------------------------- /src/razor/src/razorLanguageConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/razorLanguageConfiguration.ts -------------------------------------------------------------------------------- /src/razor/src/razorLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/razorLogger.ts -------------------------------------------------------------------------------- /src/razor/src/rpc/serializablePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/rpc/serializablePosition.ts -------------------------------------------------------------------------------- /src/razor/src/rpc/serializableRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/rpc/serializableRange.ts -------------------------------------------------------------------------------- /src/razor/src/rpc/serializableTextDocumentIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/rpc/serializableTextDocumentIdentifier.ts -------------------------------------------------------------------------------- /src/razor/src/rpc/serializableTextEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/rpc/serializableTextEdit.ts -------------------------------------------------------------------------------- /src/razor/src/uriPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/uriPaths.ts -------------------------------------------------------------------------------- /src/razor/src/vscode.proposed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/vscode.proposed.d.ts -------------------------------------------------------------------------------- /src/razor/src/vscodeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/src/vscodeAdapter.ts -------------------------------------------------------------------------------- /src/razor/syntaxes/aspnetcorerazor.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/syntaxes/aspnetcorerazor.tmLanguage.json -------------------------------------------------------------------------------- /src/razor/syntaxes/aspnetcorerazor.tmLanguage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/razor/syntaxes/aspnetcorerazor.tmLanguage.yml -------------------------------------------------------------------------------- /src/shared/IWorkspaceDebugInformationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/IWorkspaceDebugInformationProvider.ts -------------------------------------------------------------------------------- /src/shared/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/assets.ts -------------------------------------------------------------------------------- /src/shared/configurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/configurationProvider.ts -------------------------------------------------------------------------------- /src/shared/constants/IHostExecutableResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/constants/IHostExecutableResolver.ts -------------------------------------------------------------------------------- /src/shared/constants/hostExecutableInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/constants/hostExecutableInformation.ts -------------------------------------------------------------------------------- /src/shared/dotnetConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/dotnetConfigurationProvider.ts -------------------------------------------------------------------------------- /src/shared/eventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/eventType.ts -------------------------------------------------------------------------------- /src/shared/launchTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/launchTarget.ts -------------------------------------------------------------------------------- /src/shared/limitedActivationStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/limitedActivationStatus.ts -------------------------------------------------------------------------------- /src/shared/loggingEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/loggingEvents.ts -------------------------------------------------------------------------------- /src/shared/migrateOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/migrateOptions.ts -------------------------------------------------------------------------------- /src/shared/observables/createOptionStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observables/createOptionStream.ts -------------------------------------------------------------------------------- /src/shared/observers/baseChannelObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/baseChannelObserver.ts -------------------------------------------------------------------------------- /src/shared/observers/baseLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/baseLoggerObserver.ts -------------------------------------------------------------------------------- /src/shared/observers/csharpChannelObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/csharpChannelObserver.ts -------------------------------------------------------------------------------- /src/shared/observers/csharpLoggerObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/csharpLoggerObserver.ts -------------------------------------------------------------------------------- /src/shared/observers/optionChangeObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/optionChangeObserver.ts -------------------------------------------------------------------------------- /src/shared/observers/utils/showMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/observers/utils/showMessage.ts -------------------------------------------------------------------------------- /src/shared/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/options.ts -------------------------------------------------------------------------------- /src/shared/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/platform.ts -------------------------------------------------------------------------------- /src/shared/processPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/processPicker.ts -------------------------------------------------------------------------------- /src/shared/projectConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/projectConfiguration.ts -------------------------------------------------------------------------------- /src/shared/reportIssue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/reportIssue.ts -------------------------------------------------------------------------------- /src/shared/telemetryEventNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/telemetryEventNames.ts -------------------------------------------------------------------------------- /src/shared/telemetryReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/telemetryReporter.ts -------------------------------------------------------------------------------- /src/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/utils.ts -------------------------------------------------------------------------------- /src/shared/utils/combineDocumentSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/utils/combineDocumentSelectors.ts -------------------------------------------------------------------------------- /src/shared/utils/dotnetInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/utils/dotnetInfo.ts -------------------------------------------------------------------------------- /src/shared/utils/getDotnetInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/utils/getDotnetInfo.ts -------------------------------------------------------------------------------- /src/shared/workspaceConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/shared/workspaceConfigurationProvider.ts -------------------------------------------------------------------------------- /src/statusBarItemAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/statusBarItemAdapter.ts -------------------------------------------------------------------------------- /src/textEditorAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/textEditorAdapter.ts -------------------------------------------------------------------------------- /src/tools/OptionsSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/OptionsSchema.json -------------------------------------------------------------------------------- /src/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/README.md -------------------------------------------------------------------------------- /src/tools/VSSymbolSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/VSSymbolSettings.json -------------------------------------------------------------------------------- /src/tools/generateOptionsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/generateOptionsSchema.ts -------------------------------------------------------------------------------- /src/tools/runtimeDependencyPackageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/runtimeDependencyPackageUtils.ts -------------------------------------------------------------------------------- /src/tools/updatePackageDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/tools/updatePackageDependencies.ts -------------------------------------------------------------------------------- /src/utils/dotnetDevCertsHttps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/utils/dotnetDevCertsHttps.ts -------------------------------------------------------------------------------- /src/utils/getCSharpDevKit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/utils/getCSharpDevKit.ts -------------------------------------------------------------------------------- /src/utils/getMonoVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/utils/getMonoVersion.ts -------------------------------------------------------------------------------- /src/utils/getMsBuildInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/utils/getMsBuildInfo.ts -------------------------------------------------------------------------------- /src/utils/removeBom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/utils/removeBom.ts -------------------------------------------------------------------------------- /src/vscodeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/vscodeAdapter.ts -------------------------------------------------------------------------------- /src/xaml/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/xaml/language-configuration.json -------------------------------------------------------------------------------- /src/xaml/syntaxes/xaml.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/src/xaml/syntaxes/xaml.tmLanguage.json -------------------------------------------------------------------------------- /tasks/backcompatTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/backcompatTasks.ts -------------------------------------------------------------------------------- /tasks/commandLineArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/commandLineArguments.ts -------------------------------------------------------------------------------- /tasks/componentUpdateTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/componentUpdateTasks.ts -------------------------------------------------------------------------------- /tasks/createTagsTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/createTagsTasks.ts -------------------------------------------------------------------------------- /tasks/debuggerTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/debuggerTasks.ts -------------------------------------------------------------------------------- /tasks/gitTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/gitTasks.ts -------------------------------------------------------------------------------- /tasks/localizationTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/localizationTasks.ts -------------------------------------------------------------------------------- /tasks/offlinePackagingTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/offlinePackagingTasks.ts -------------------------------------------------------------------------------- /tasks/packageJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/packageJson.ts -------------------------------------------------------------------------------- /tasks/profilingTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/profilingTasks.ts -------------------------------------------------------------------------------- /tasks/projectPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/projectPaths.ts -------------------------------------------------------------------------------- /tasks/signingTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/signingTasks.ts -------------------------------------------------------------------------------- /tasks/snapTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/snapTasks.ts -------------------------------------------------------------------------------- /tasks/spawnNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/spawnNode.ts -------------------------------------------------------------------------------- /tasks/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/testHelpers.ts -------------------------------------------------------------------------------- /tasks/testTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/testTasks.ts -------------------------------------------------------------------------------- /tasks/vsceTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tasks/vsceTasks.ts -------------------------------------------------------------------------------- /test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test-plan.md -------------------------------------------------------------------------------- /test/createTmpAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/createTmpAsset.ts -------------------------------------------------------------------------------- /test/csharp-test-profile.code-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/csharp-test-profile.code-profile -------------------------------------------------------------------------------- /test/fakes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/fakes.ts -------------------------------------------------------------------------------- /test/lsptoolshost/artifactTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/artifactTests/jest.config.ts -------------------------------------------------------------------------------- /test/lsptoolshost/artifactTests/vsix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/artifactTests/vsix.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/buildDiagnostics.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/buildDiagnostics.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/classification.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/classification.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/codeactions.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/codeactions.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/codelens.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/codelens.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/commandEnablement.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/commandEnablement.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/completion.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/completion.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/diagnosticsHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/diagnosticsHelpers.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/documentDiagnostics.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/documentDiagnostics.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/documentSymbolProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/documentSymbolProvider.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/expectedCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/expectedCommands.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/fileBasedPrograms.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/fileBasedPrograms.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/formatting.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/formatting.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/formattingEditorConfig.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/formattingEditorConfig.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/formattingTestHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/formattingTestHelpers.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/gotoDefinition.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/gotoDefinition.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/gotoImplementation.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/gotoImplementation.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/hover.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/hover.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/index.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/integrationHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/integrationHelpers.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/jest.config.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/lspInlayHints.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/lspInlayHints.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/onAutoInsert.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/onAutoInsert.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/references.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/references.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/signatureHelp.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/signatureHelp.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/sourceGenerator.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/sourceGenerator.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/NuGet.config -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/razorApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/razorApp.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/singleCsproj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/singleCsproj.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnFilterWithCsproj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnFilterWithCsproj.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/.gitignore: -------------------------------------------------------------------------------- 1 | **/obj/ 2 | **/bin/ -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/.runsettings -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/.vscode/slnWithCsproj.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/.vscode/slnWithCsproj.code-workspace -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/A.cs: -------------------------------------------------------------------------------- 1 | class C {} -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/BaseClassImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/BaseClassImplementation.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/CodeActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/CodeActions.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/CodeActionsInProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/CodeActionsInProject.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/DocComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/DocComments.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/Formatting.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/ISomeInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/ISomeInterface.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/Program.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/SourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/SourceGenerator.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/app.csproj -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/completionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/completionBase.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/definition.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/diagnostics.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/folderWithEditorConfig/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{cs}] 2 | csharp_new_line_before_open_brace = none -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/hover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/hover.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/implementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/implementation.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/inlayHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/inlayHints.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/reference.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/remap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/remap.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/remapped.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/secondaryDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/secondaryDiagnostics.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/semantictokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/semantictokens.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/sigHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/sigHelp.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/typeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/app/typeDefinition.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/lib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/lib/Class1.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/scripts/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/scripts/Directory.Build.props -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/src/scripts/app1.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Console.WriteLine("Hello World!"); 5 | -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/CodeActionsInSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/CodeActionsInSolution.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/UnitTest1.cs -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithCsproj/test/test.csproj -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/slnWithGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/slnWithGenerator.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/spawnGit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/spawnGit.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/testAssetWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/testAssetWorkspace.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testAssets/testAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testAssets/testAssets.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/testHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/testHooks.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/unitTests.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/unitTests.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/integrationTests/workspaceDiagnostics.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/integrationTests/workspaceDiagnostics.integration.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/configurationMiddleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/configurationMiddleware.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/csharpChannelObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/csharpChannelObserver.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/csharpLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/csharpLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/jest.config.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/json.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/languageServerConfigChangeObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/languageServerConfigChangeObserver.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/migrateOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/migrateOptions.test.ts -------------------------------------------------------------------------------- /test/lsptoolshost/unitTests/packageNlsJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/lsptoolshost/unitTests/packageNlsJson.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/advisor.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/advisor.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/codeActionRename.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/codeActionRename.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/codeLensProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/codeLensProvider.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/completionProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/completionProvider.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/definitionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/definitionProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/diagnostics.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/diagnostics.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/documentSymbolProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/documentSymbolProvider.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/dotnetTest.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/dotnetTest.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/hoverProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/hoverProvider.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/implementationProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/implementationProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/index.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/inlayHints.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/inlayHints.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/integrationHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/integrationHelpers.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/jest.config.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/languageMiddleware.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/languageMiddleware.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/launchConfiguration.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/launchConfiguration.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/launcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/launcher.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/omnisharpCommands.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/omnisharpCommands.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/parsedEnvironmentFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/parsedEnvironmentFile.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/poll.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/reAnalyze.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/reAnalyze.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/referenceProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/referenceProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/semanticTokensProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/semanticTokensProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/signatureHelp.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/signatureHelp.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/sourceGeneratorDefinitionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/sourceGeneratorDefinitionProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/BasicRazorApp2_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/BasicRazorApp2_1.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/Pages/ErrorHaver.razor: -------------------------------------------------------------------------------- 1 | @page "/error" 2 | 3 | @DoesNotExist 4 | -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/Pages/Index.cshtml -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/Program.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/_ViewImports.cshtml -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/NuGet.config -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/activeTestAssetWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/activeTestAssetWorkspace.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/omnisharpTestAssetWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/omnisharpTestAssetWorkspace.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/.gitignore: -------------------------------------------------------------------------------- 1 | **/obj/ 2 | **/bin/ -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/A.cs: -------------------------------------------------------------------------------- 1 | class C {} -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/DocComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/DocComments.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/ISomeInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/ISomeInterface.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/Program.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/SomeInterfaceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/SomeInterfaceImpl.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/completion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/completion.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/completionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/completionBase.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/definition.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/diagnostics.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/documentSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/documentSymbols.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/hover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/hover.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/implementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/implementation.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/inlayHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/inlayHints.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/reference.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/remap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/remap.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/remapped.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/secondaryDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/secondaryDiagnostics.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/semantictokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/semantictokens.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/sigHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/sigHelp.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/singleCsproj.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/singleCsproj.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/typeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/singleCsproj/typeDefinition.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/.gitignore: -------------------------------------------------------------------------------- 1 | **/obj/ 2 | **/bin/ -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/SolutionFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/SolutionFile.sln -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/SolutionFilter.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/SolutionFilter.slnf -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/A.cs: -------------------------------------------------------------------------------- 1 | class C {} -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/DocComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/DocComments.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/ISomeInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/ISomeInterface.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/Program.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/app.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/completion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/completion.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/completionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/completionBase.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/definition.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/diagnostics.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/documentSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/documentSymbols.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/hover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/hover.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/implementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/implementation.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/inlayHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/inlayHints.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/reference.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/remap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/remap.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/remapped.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/sigHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/app/sigHelp.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/lib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/lib/Class1.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/lib/lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/src/lib/lib.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/test/UnitTest1.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/test/test.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/.gitignore: -------------------------------------------------------------------------------- 1 | **/obj/ 2 | **/bin/ -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/.runsettings -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/b_SecondInOrder_SlnFile.sln -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/A.cs: -------------------------------------------------------------------------------- 1 | class C {} -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/DocComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/DocComments.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/ISomeInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/ISomeInterface.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/Program.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/SomeInterfaceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/SomeInterfaceImpl.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/app.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/completion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/completion.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/completionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/completionBase.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/definition.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/diagnostics.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/documentSymbols.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/hover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/hover.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/implementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/implementation.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/inlayHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/inlayHints.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/reference.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/remap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/remap.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/remapped.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/semantictokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/semantictokens.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/sigHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/sigHelp.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/typeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/app/typeDefinition.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/lib/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/lib/Class1.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/src/lib/lib.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/test/UnitTest1.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithCsproj/test/test.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/.vscode/settings.json -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/app/GeneratorTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/app/GeneratorTrigger.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/app/app.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/app/app.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/generator/MainGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/generator/MainGenerator.cs -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/generator/generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/generator/generator.csproj -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/slnWithGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/testAssets/slnWithGenerator/slnWithGenerator.sln -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/typeDefinitionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/typeDefinitionProvider.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/virtualDocumentTracker.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/virtualDocumentTracker.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpIntegrationTests/workspaceSymbolProvider.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpIntegrationTests/workspaceSymbolProvider.integration.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/absolutePath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/absolutePath.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/assets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/assets.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/common.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/common.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/coreclrDebug/targetArchitecture.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/coreclrDebug/targetArchitecture.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/fakes/fakeDotnetResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/fakes/fakeDotnetResolver.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/fakes/fakeMonoResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/fakes/fakeMonoResolver.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/features/reportIssue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/features/reportIssue.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/informationMessageObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/informationMessageObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/installRuntimeDependencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/installRuntimeDependencies.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/jest.config.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/backgroundWorkStatusBarObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/backgroundWorkStatusBarObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/dotnetChannelObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/dotnetChannelObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/dotnetLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/dotnetLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/dotnetTestChannelObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/dotnetTestChannelObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/dotnetTestLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/dotnetTestLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/errorMessageObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/errorMessageObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/omnisharpChannelObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/omnisharpChannelObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/omnisharpDebugModeLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/omnisharpDebugModeLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/omnisharpLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/omnisharpLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/omnisharpStatusBarObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/omnisharpStatusBarObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/projectStatusBarObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/projectStatusBarObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/razorLoggerObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/razorLoggerObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/telemetryObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/telemetryObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/logging/warningMessageObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/logging/warningMessageObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/omnisharp/omniSharpMonoResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/omnisharp/omniSharpMonoResolver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/omnisharpDownloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/omnisharpDownloader.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/omnisharpManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/omnisharpManager.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/omnisharpPackageCreator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/omnisharpPackageCreator.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/optionChangeObserver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/optionChangeObserver.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/optionStream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/optionStream.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/options.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/downloadAndInstallPackages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/downloadAndInstallPackages.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/fileDownloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/fileDownloader.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/isValidDownload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/isValidDownload.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/packageFilterer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/packageFilterer.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/proxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/proxy.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/packages/zipInstaller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/packages/zipInstaller.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/platform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/platform.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/processPicker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/processPicker.test.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/getConfigChangeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/getConfigChangeEvent.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/mockHttpsServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/mockHttpsServer.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/private.pem -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/public.pem -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/testAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/testAssets.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/testEventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/testEventBus.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/testFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/testFile.ts -------------------------------------------------------------------------------- /test/omnisharp/omnisharpUnitTests/testAssets/testZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/omnisharpUnitTests/testAssets/testZip.ts -------------------------------------------------------------------------------- /test/omnisharp/runFeatureTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/runFeatureTests.ts -------------------------------------------------------------------------------- /test/omnisharp/testUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/omnisharp/testUtil.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/completion.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/completion.integration.test.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/formatting.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/formatting.integration.test.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/hover.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/hover.integration.test.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/index.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/jest.config.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/reference.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/reference.integration.test.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/rename.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/rename.integration.test.ts -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/NuGet.config -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/.vscode/RazorApp.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/.vscode/RazorApp.code-workspace -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/.vscode/devkit_RazorApp.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/.vscode/devkit_RazorApp.code-workspace -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/App.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Data/WeatherForecast.cs -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Data/WeatherForecastService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Data/WeatherForecastService.cs -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/BadlyFormatted.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/BadlyFormatted.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Completion.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Completion.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Counter.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Definition.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Definition.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/FetchData.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Hover.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Hover.cshtml -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/Index.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/References.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/References.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/References.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/References.razor.cs -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Pages/_Host.cshtml -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Program.cs -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/RazorApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/RazorApp.csproj -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/RazorApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/RazorApp.sln -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/MainLayout.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/NavMenu.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/_Imports.razor -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/appsettings.Development.json -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/RazorApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/RazorApp/appsettings.json -------------------------------------------------------------------------------- /test/razor/razorIntegrationTests/testAssets/testAssetWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorIntegrationTests/testAssets/testAssetWorkspace.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/README.md -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/attributeDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/attributeDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/codeBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/codeBlock.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/codeDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/codeDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/doStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/doStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/elsePart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/elsePart.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/forStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/forStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/foreachStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/foreachStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/functionsDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/functionsDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/grammarTests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/grammarTests.test.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/ifStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/ifStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/inheritsDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/inheritsDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/injectDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/injectDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/layoutDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/layoutDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/lockStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/lockStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/modelDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/modelDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/namespaceDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/namespaceDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/pageDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/pageDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/razorComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/razorComment.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/razorTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/razorTemplate.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/scriptBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/scriptBlock.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/sectionDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/sectionDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/styleBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/styleBlock.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/switchStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/switchStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/transitions.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/tryStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/tryStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/typeparamDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/typeparamDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/usingDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/usingDirective.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/usingStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/usingStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/whileStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/Microsoft.AspNetCore.Razor.VSCode.Grammar.Test/tests/whileStatement.ts -------------------------------------------------------------------------------- /test/razor/razorTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/razor/razorTests/jest.config.ts -------------------------------------------------------------------------------- /test/runIntegrationTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/runIntegrationTests.ts -------------------------------------------------------------------------------- /test/tasks/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/tasks/jest.config.ts -------------------------------------------------------------------------------- /test/tasks/versionHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/tasks/versionHelper.test.ts -------------------------------------------------------------------------------- /test/untrustedWorkspace/integrationTests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/untrustedWorkspace/integrationTests/index.ts -------------------------------------------------------------------------------- /test/untrustedWorkspace/integrationTests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/untrustedWorkspace/integrationTests/jest.config.ts -------------------------------------------------------------------------------- /test/untrustedWorkspace/integrationTests/testAssets/empty/.vscode/empty.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/untrustedWorkspace/integrationTests/testAssets/empty/.vscode/empty.code-workspace -------------------------------------------------------------------------------- /test/untrustedWorkspace/integrationTests/testAssets/empty/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/untrustedWorkspace/integrationTests/testAssets/empty/readme.md -------------------------------------------------------------------------------- /test/untrustedWorkspace/integrationTests/untrustedWorkspace.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/untrustedWorkspace/integrationTests/untrustedWorkspace.integration.test.ts -------------------------------------------------------------------------------- /test/vsCodeEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/vsCodeEnvironment.ts -------------------------------------------------------------------------------- /test/vsCodeFramework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/vsCodeFramework.ts -------------------------------------------------------------------------------- /test/vscodeLauncher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/test/vscodeLauncher.ts -------------------------------------------------------------------------------- /themes/vs2019_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/themes/vs2019_dark.json -------------------------------------------------------------------------------- /themes/vs2019_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/themes/vs2019_light.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/vscode-tasks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/typings/vscode-tasks.d.ts -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/version.json -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/vscode-csharp/HEAD/wallaby.js --------------------------------------------------------------------------------