├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .tfignore ├── Build ├── Common.Build.CSharp.settings ├── Common.Build.CSharp.targets ├── Common.Build.Traversal.targets ├── Common.Build.VSSDK.targets ├── Common.Build.settings ├── Common.Build.targets ├── CustomDictionary.xml ├── FinalPublicKey.snk ├── default.14.0Exp.testsettings ├── fileVersion.targets └── xTVS.ruleset ├── CODE_OF_CONDUCT.md ├── Common ├── LICENSE ├── Product │ ├── Icons │ │ └── Dev15.0 │ │ │ ├── Clearwindowcontent_6304.png │ │ │ ├── Clearwindowcontent_6304_24.bmp │ │ │ ├── Folder_6221.png │ │ │ ├── Folder_6221_24.bmp │ │ │ ├── Folder_6222.png │ │ │ ├── Folder_6222_24.bmp │ │ │ ├── GenericPackage.ico │ │ │ ├── Images_32bit.bmp │ │ │ ├── Images_32bit.png │ │ │ ├── InstrumentationPerformanceReport_8876.png │ │ │ ├── InstrumentationPerformanceReport_8876_24.bmp │ │ │ ├── IronPythonWPFApplication.ico │ │ │ ├── IronPythonWpfWindow.ico │ │ │ ├── Launch_7018.png │ │ │ ├── Launch_7018_24.bmp │ │ │ ├── NewPerformanceSession_8866.png │ │ │ ├── NewPerformanceSession_8866_24.bmp │ │ │ ├── PYFile_SolutionExplorerNode_color.bmp │ │ │ ├── PYFile_SolutionExplorerNode_color.png │ │ │ ├── PYProject_SolutionExplorerNode_color.bmp │ │ │ ├── PYProject_SolutionExplorerNode_color.png │ │ │ ├── Packaging_Explorer.png │ │ │ ├── Packaging_Explorer_24.bmp │ │ │ ├── ProfilingCmdBar.bmp │ │ │ ├── ProfilingCmdBar.png │ │ │ ├── ProfilingTreeView.bmp │ │ │ ├── ProfilingTreeView.png │ │ │ ├── PyFile.png │ │ │ ├── PyProjectBig.png │ │ │ ├── PythonEmptyApplication.ico │ │ │ ├── PythonFile.ico │ │ │ ├── PythonImageList.bmp │ │ │ ├── PythonImageList.png │ │ │ ├── PythonPackageIcons.bmp │ │ │ ├── PythonPackageIcons.png │ │ │ ├── PythonProject.ico │ │ │ ├── PythonProjectBig.ico │ │ │ ├── PythonWebSite.ico │ │ │ ├── PythonWindowsForm.ico │ │ │ ├── Refactoring_Commands.bmp │ │ │ ├── ReplToolBarImages.bmp │ │ │ ├── ShowPerformanceSession_7015.png │ │ │ ├── ShowPerformanceSession_7015_24.bmp │ │ │ ├── ShowReferences_5551.png │ │ │ ├── ShowReferences_5551_24.bmp │ │ │ ├── Stop_8817.png │ │ │ ├── Stop_8817_24.bmp │ │ │ ├── Undo_16x.png │ │ │ ├── Undo_16x_24.bmp │ │ │ ├── completionset.bmp │ │ │ └── imagelis.bmp │ └── SharedProject │ │ ├── CommonConstants.VS.cs │ │ ├── CommonConstants.cs │ │ ├── CommonUtils.cs │ │ ├── ProcessOutput.cs │ │ ├── ProjectResources.cs │ │ ├── ProjectResources.resx │ │ └── SolutionEventsListener.cs └── Tests │ ├── AssemblyInfoCommon.cs │ ├── MockVsTests │ ├── CachedVsInfo.cs │ ├── CommandTargetExtensions.cs │ ├── HierarchyExtensions.cs │ ├── HierarchyItem.cs │ ├── IContentTypeDefinitionMetadata.cs │ ├── IContentTypeMetadata.cs │ ├── IFocusable.cs │ ├── IMockPackage.cs │ ├── LanguageServiceInfo.cs │ ├── MockBufferGraphFactoryService.cs │ ├── MockCodeWindow.cs │ ├── MockCompletionBroker.cs │ ├── MockCompletionSession.cs │ ├── MockDTE.cs │ ├── MockDTEProperties.cs │ ├── MockDTEProperty.cs │ ├── MockDTESolution.cs │ ├── MockDialog.cs │ ├── MockEditorOperations.cs │ ├── MockEditorOperationsFactoryService.cs │ ├── MockGlyphService.cs │ ├── MockIncrementalSearch.cs │ ├── MockIncrementalSearchFactoryService.cs │ ├── MockIntellisenseSessionStack.cs │ ├── MockIntellisenseSessionStackMapService.cs │ ├── MockLocalRegistry.cs │ ├── MockMessageBox.cs │ ├── MockOleComponentManager.cs │ ├── MockOutputWindow.cs │ ├── MockOutputWindowPane.cs │ ├── MockQuickInfoBroker.cs │ ├── MockSignatureHelpBroker.cs │ ├── MockSignatureHelpSession.cs │ ├── MockSmartTagBroker.cs │ ├── MockSmartTagSession.cs │ ├── MockTextMarkerProviderFactory.cs │ ├── MockToolWindow.cs │ ├── MockTreeNode.cs │ ├── MockUIHierWinClipboardHelper.cs │ ├── MockVs.cs │ ├── MockVsBuildManagerAccessor.cs │ ├── MockVsDebugger.cs │ ├── MockVsEditorAdaptersFactoryService.cs │ ├── MockVsExtensibility.cs │ ├── MockVsHierarchyItemManager.cs │ ├── MockVsMonitorSelection.cs │ ├── MockVsProfferCommands.cs │ ├── MockVsQueryEditQuerySave.cs │ ├── MockVsRunningDocumentTable.cs │ ├── MockVsServiceProvider.cs │ ├── MockVsShell.cs │ ├── MockVsSolution.cs │ ├── MockVsSolutionBuildManager.cs │ ├── MockVsTestExtensions.cs │ ├── MockVsTests.csproj │ ├── MockVsTextLines.cs │ ├── MockVsTextManager.cs │ ├── MockVsTextView.cs │ ├── MockVsTrackProjectDocuments.cs │ ├── MockVsTrackSelectionEx.cs │ ├── MockVsUIHierarchyWindow.cs │ ├── MockVsUIShell.cs │ ├── MockVsUIShellOpenDocument.cs │ ├── ProjectAggregator.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── Prerequisites │ ├── Dev15 │ │ ├── Microsoft.VisualStudioTools.VSTestHost.15.0.dll │ │ └── Microsoft.VisualStudioTools.VSTestHost.15.0.pkgdef │ └── VSTestHost.msi │ ├── SccPackage │ ├── GlobalSuppressions.cs │ ├── Guids.cs │ ├── PkgCmdId.cs │ ├── ProvideSourceControlProvider.cs │ ├── SccPackage.cs │ ├── SccPackage.vsct │ ├── TestSccPackage.csproj │ ├── TestSccProvider.cs │ ├── VSPackage.Designer.cs │ ├── VSPackage.resx │ └── source.extension.vsixmanifest │ ├── SharedProjectTests │ ├── BasicProjectTests.cs │ ├── DragDropCopyCutPaste.cs │ ├── LinkedFileTests.cs │ ├── NewDragDropCopyCutPaste.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScriptProjectTests.cs │ ├── SharedProjectTests.csproj │ ├── ShowAllFiles.cs │ └── SourceControl.cs │ ├── TestProjectAfter.settings │ ├── TestProjectBefore.settings │ ├── Utilities.UI │ ├── DefaultInterpreterSetter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestUtilities.UI.csproj │ └── UI │ │ ├── AddExistingItemDialog.cs │ │ ├── AddReferenceDialog.cs │ │ ├── AttachToProcessDialog.cs │ │ ├── AutomationDialog.cs │ │ ├── AutomationWrapper.cs │ │ ├── AzureCloudServiceActivityLog.cs │ │ ├── AzureCloudServiceCreateDialog.cs │ │ ├── AzureCloudServicePublishDialog.cs │ │ ├── AzureImportSubscriptionDialog.cs │ │ ├── AzureManageSubscriptionsDialog.cs │ │ ├── AzureWebSiteCreateDialog.cs │ │ ├── AzureWebSiteImportPublishSettingsDialog.cs │ │ ├── AzureWebSitePublishDialog.cs │ │ ├── Button.cs │ │ ├── CheckBox.cs │ │ ├── CheckListView.cs │ │ ├── ChooseLocationDialog.cs │ │ ├── ComboBox.cs │ │ ├── CredentialsDialog.cs │ │ ├── DetailPane.cs │ │ ├── EditorWindow.cs │ │ ├── ExceptionButton.cs │ │ ├── ExceptionHelperDialog.cs │ │ ├── Header.cs │ │ ├── InteractiveWindow.cs │ │ ├── Keyboard.cs │ │ ├── ListBox.cs │ │ ├── ListBoxItem.cs │ │ ├── ListItem.cs │ │ ├── ListView.cs │ │ ├── Menu.cs │ │ ├── MenuItem.cs │ │ ├── Mouse.cs │ │ ├── NavigateToDialog.cs │ │ ├── NewItemDialog.cs │ │ ├── NewProjectDialog.cs │ │ ├── ObjectBrowser.cs │ │ ├── OpenProjectDialog.cs │ │ ├── OverwriteFileDialog.cs │ │ ├── ProjectPropertiesWindow.cs │ │ ├── RemoveItemDialog.cs │ │ ├── SaveDialog.cs │ │ ├── SaveProjectDialog.cs │ │ ├── SelectCodeTypeDialog.cs │ │ ├── SelectFolderDialog.cs │ │ ├── SmartTagSessionWrapper.cs │ │ ├── SolutionExplorerTree.cs │ │ ├── Table.cs │ │ ├── TestExtensions.cs │ │ ├── TextBox.cs │ │ ├── ToolsOptionsDialog.cs │ │ ├── TreeNode.cs │ │ ├── TreeView.cs │ │ ├── TypeBrowserPane.cs │ │ ├── TypeNavigatorPane.cs │ │ ├── VisualStudioApp.cs │ │ └── VisualStudioInstance.cs │ └── Utilities │ ├── AssertListener.cs │ ├── AssertUtil.cs │ ├── AzureUtility.cs │ ├── Classification.cs │ ├── FileUtils.cs │ ├── GlobalSuppressions.cs │ ├── IAddExistingItem.cs │ ├── IAddNewItem.cs │ ├── IEditor.cs │ ├── IOverwriteFile.cs │ ├── ITreeNode.cs │ ├── IVisualStudioInstance.cs │ ├── IWarningLogger.cs │ ├── MessageBoxButton.cs │ ├── Mocks │ ├── IClassificationTypeDefinitionMetadata.cs │ ├── MockActivityLog.cs │ ├── MockBufferGraph.cs │ ├── MockClassificationType.cs │ ├── MockClassificationTypeRegistryService.cs │ ├── MockComponentModel.cs │ ├── MockContentType.cs │ ├── MockContentTypeRegistryService.cs │ ├── MockErrorProviderFactory.cs │ ├── MockGlyphService.cs │ ├── MockMappingPoint.cs │ ├── MockNormalizedTextChangeCollection.cs │ ├── MockReplWindow.cs │ ├── MockServiceProvider.cs │ ├── MockSettingsManager.cs │ ├── MockSettingsStore.cs │ ├── MockTextBuffer.cs │ ├── MockTextCaret.cs │ ├── MockTextChange.cs │ ├── MockTextDocument.cs │ ├── MockTextEdit.cs │ ├── MockTextOptions.cs │ ├── MockTextSelection.cs │ ├── MockTextSnapshot.cs │ ├── MockTextSnapshotLine.cs │ ├── MockTextVersion.cs │ ├── MockTextView.cs │ ├── MockTextViewModel.cs │ ├── MockTrackingPoint.cs │ ├── MockTrackingSpan.cs │ └── MockVsShell.cs │ ├── NativeMethods.cs │ ├── OutputReceiver.cs │ ├── ProcessScope.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SessionHolder.cs │ ├── SharedProject │ ├── CodeExtensionAttribute.cs │ ├── CompileItem.cs │ ├── ContentItem.cs │ ├── CustomItem.cs │ ├── FolderItem.cs │ ├── IProjectProcessor.cs │ ├── IProjectProcessorMetadata.cs │ ├── IProjectTypeDefinitionMetadata.cs │ ├── ISolutionElement.cs │ ├── ImportDefinition.cs │ ├── ProjectContentGenerator.cs │ ├── ProjectContentGroup.cs │ ├── ProjectDefinition.cs │ ├── ProjectExtensionAttribute.cs │ ├── ProjectProperty.cs │ ├── ProjectType.cs │ ├── ProjectTypeDefinition.cs │ ├── ProjectTypeGuidAttribute.cs │ ├── SampleCodeAttribute.cs │ ├── SharedProjectTest.cs │ ├── SolutionElementFlags.cs │ ├── SolutionFile.cs │ ├── SolutionFolder.cs │ ├── StartupFileProjectProperty.cs │ ├── SymbolicLinkItem.cs │ └── TargetDefinition.cs │ ├── TestData.cs │ ├── TestExtensions.cs │ ├── TestMethod.cs │ ├── TestUtilities.csproj │ ├── VCCompiler.cs │ ├── WebDownloadUtility.cs │ └── WpfProxy.cs ├── LICENSE ├── Nodejs ├── .editorconfig ├── Extras │ ├── Commands │ │ └── OpenReplWindowCommand.cs │ ├── Extensions.cs │ ├── Extras.csproj │ ├── ExtrasKey.snk │ ├── Images_32bit.png │ ├── Jade │ │ ├── Classifier │ │ │ ├── IClassificationContextNameProvider.cs │ │ │ ├── ICompositeToken.cs │ │ │ ├── JadeClassificationDefinitions.cs │ │ │ ├── JadeClassificationNameProvider.cs │ │ │ ├── JadeClassificationTypes.cs │ │ │ ├── JadeClassifier.cs │ │ │ ├── JadeClassifierProvider.cs │ │ │ └── TokenBasedClassifier.cs │ │ ├── Editor │ │ │ ├── ClassifierProviderMetadata.cs │ │ │ ├── CommonEditorFactory.cs │ │ │ ├── ProvideEditorExtension2Attribute.cs │ │ │ ├── ProvideTextEditorAutomationAttribute.cs │ │ │ └── TaggerProviderMetadata.cs │ │ ├── EntityTable.cs │ │ ├── ITextSnapshotProvider.cs │ │ ├── IdleTimeAsyncTask.cs │ │ ├── JadeContentTypeDefinition.cs │ │ ├── JadeEditorFactory.cs │ │ ├── JadeLanguageInfo.cs │ │ ├── Outlining │ │ │ ├── IndentBasedRegionBuilder.cs │ │ │ ├── JadeOutlineTaggerProvider.cs │ │ │ ├── JadeOutliningTagger.cs │ │ │ ├── OutlineRegion.cs │ │ │ ├── OutlineRegionBuilder.cs │ │ │ ├── OutlineRegionCollection.cs │ │ │ ├── OutlineRegionsChange.cs │ │ │ ├── OutlineRegionsChangedEventArgs.cs │ │ │ └── OutliningTagger.cs │ │ ├── ServiceManager.cs │ │ ├── Text │ │ │ ├── CharacterStream.cs │ │ │ ├── Def │ │ │ │ ├── ICompositeTextRange.cs │ │ │ │ ├── ITextProvider.cs │ │ │ │ ├── ITextRange.cs │ │ │ │ └── ITextRangeCollection.cs │ │ │ ├── ReadonlyTextRangeCollection.cs │ │ │ ├── TextChangeArgs.cs │ │ │ ├── TextHelper.cs │ │ │ ├── TextRange.cs │ │ │ ├── TextRangeCollection.cs │ │ │ ├── TextStream.cs │ │ │ └── textchange.cs │ │ ├── TextProvider.cs │ │ ├── TextUtility.cs │ │ ├── TimeUtility.cs │ │ ├── Tokenizer │ │ │ ├── JadeToken.cs │ │ │ ├── JadeTokenType.cs │ │ │ ├── JadeTokenizer.cs │ │ │ ├── Keywords │ │ │ │ ├── JadeCodeKeywords.cs │ │ │ │ ├── JadeFilters.cs │ │ │ │ └── JadeTagKeywords.cs │ │ │ └── States │ │ │ │ ├── AttributeState.cs │ │ │ │ ├── FilterState.cs │ │ │ │ ├── HtmlState.cs │ │ │ │ ├── InlineCodeState.cs │ │ │ │ ├── ScriptState.cs │ │ │ │ ├── StyleState.cs │ │ │ │ ├── TagState.cs │ │ │ │ └── TextState.cs │ │ └── Tokens │ │ │ ├── IToken.cs │ │ │ ├── ITokenizer.cs │ │ │ ├── Token.cs │ │ │ └── Tokenizer.cs │ ├── NodeExtrasPackage.cs │ ├── NodeJSInteractiveWindow_16x.png │ ├── NodejsConstants.cs │ ├── NodejsTools.vsct │ ├── Profiling │ │ ├── DialogWindowVersioningWorkaround.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Key.snk │ │ ├── NativeMethods.cs │ │ ├── NodeProfiling.vsct │ │ ├── NodejsProfilingPackage.cs │ │ ├── PkgCmdID.cs │ │ ├── Profiling.csproj │ │ ├── Profiling │ │ │ ├── AutomationProfiling.cs │ │ │ ├── AutomationReport.cs │ │ │ ├── AutomationSession.cs │ │ │ ├── BaseHierarchyNode.cs │ │ │ ├── CompareReportsView.cs │ │ │ ├── CompareReportsWindow.xaml │ │ │ ├── CompareReportsWindow.xaml.cs │ │ │ ├── INodePerformanceReport.cs │ │ │ ├── INodeProfileSession.cs │ │ │ ├── INodeProfiling.cs │ │ │ ├── LaunchProfiling.xaml │ │ │ ├── LaunchProfiling.xaml.cs │ │ │ ├── NotZeroConverter.cs │ │ │ ├── PerfToolWindow.cs │ │ │ ├── Profile.cs │ │ │ ├── ProfiledProcess.cs │ │ │ ├── ProfilingSessionEditorFactory.cs │ │ │ ├── ProfilingTarget.cs │ │ │ ├── ProfilingTargetView.cs │ │ │ ├── ProjectTargetView.cs │ │ │ ├── SessionNode.cs │ │ │ ├── SessionsNode.cs │ │ │ ├── StandaloneTargetView.cs │ │ │ └── TreeViewIconIndex.cs │ │ ├── ProfilingGuids.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ProvideFileFilterAttribute.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.cs.resx │ │ ├── Resources.de.resx │ │ ├── Resources.es.resx │ │ ├── Resources.fr.resx │ │ ├── Resources.it.resx │ │ ├── Resources.ja.resx │ │ ├── Resources.ko.resx │ │ ├── Resources.pl.resx │ │ ├── Resources.pt-BR.resx │ │ ├── Resources.resx │ │ ├── Resources.ru.resx │ │ ├── Resources.tr.resx │ │ ├── Resources.zh-Hans.resx │ │ ├── Resources.zh-Hant.resx │ │ ├── VSPackage.cs.resx │ │ ├── VSPackage.de.resx │ │ ├── VSPackage.es.resx │ │ ├── VSPackage.fr.resx │ │ ├── VSPackage.it.resx │ │ ├── VSPackage.ja.resx │ │ ├── VSPackage.ko.resx │ │ ├── VSPackage.pl.resx │ │ ├── VSPackage.pt-BR.resx │ │ ├── VSPackage.resx │ │ ├── VSPackage.ru.resx │ │ ├── VSPackage.tr.resx │ │ ├── VSPackage.zh-Hans.resx │ │ ├── VSPackage.zh-Hant.resx │ │ ├── app.config │ │ └── source.extension.vsixmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Repl │ │ ├── InfoReplCommand.cs │ │ ├── InteractiveWindowColor.cs │ │ ├── InteractiveWindowCommand.cs │ │ ├── InteractiveWindowContentType.cs │ │ ├── InteractiveWindowProvider.cs │ │ ├── NodejsReplEvaluator.cs │ │ ├── NpmReplCommand.cs │ │ ├── ReplOutputClassificationFormatDefinitions.cs │ │ ├── ReplOutputClassifier.cs │ │ ├── ReplOutputClassifierProvider.cs │ │ └── SaveReplCommand.cs │ ├── Theme │ │ ├── Microsoft.NodejsTools.theme.v11.0.pkgdef │ │ ├── Microsoft.NodejsTools.theme.v12.0.pkgdef │ │ ├── Microsoft.NodejsTools.theme.v15.0.pkgdef │ │ ├── contrast.vstheme │ │ ├── dark.vstheme │ │ └── make_theme_pkgdef.py │ ├── VSPackage.resx │ ├── VsExtensions.cs │ ├── source.extension.vsixmanifest │ └── visualstudio_nodejs_repl.js ├── MigrateToJsps │ ├── Jsps │ │ ├── EsprojFileModel.cs │ │ ├── EsprojFileWriter.cs │ │ ├── JspsProjectCreator.cs │ │ ├── LaunchJson │ │ │ ├── Compound.cs │ │ │ ├── Configuration.cs │ │ │ └── LaunchJson.cs │ │ ├── LaunchJsonWriter.cs │ │ ├── Logger.cs │ │ └── NugetConfigWriter.cs │ ├── MigrateToJsps.csproj │ ├── MigrationLibrary.cs │ ├── Ntvs │ │ ├── NjsprojFileModel.cs │ │ ├── NjsprojFileReader.cs │ │ └── ProjectGuids.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── NodejsExtras.sln ├── NodejsTools.sln ├── NodejsTools.sln.DotSettings ├── Prerequisites │ ├── DisableSkipVerification.reg │ ├── DisableSkipVerificationX86.reg │ ├── EnableSkipVerification.reg │ ├── EnableSkipVerificationX86.reg │ └── generate.js ├── Product │ ├── Icons │ │ ├── AboutBoxPNG │ │ │ └── NodeJS_64x.png │ │ ├── AddNewItemICO │ │ │ ├── CSS.ico │ │ │ ├── HTML.ico │ │ │ ├── JADEScript.ico │ │ │ ├── StylusSheet.ico │ │ │ └── xml.ico │ │ ├── ContextMenuBMP32 │ │ │ └── OpenCommandPromptHere_16x_32.bmp │ │ ├── Images_32bit.png │ │ ├── JScript.ico │ │ ├── NewProjectDialogIconsICO │ │ │ ├── JSAzureApplication.ico │ │ │ ├── JSConsole.ico │ │ │ ├── JSWeb.ico │ │ │ ├── JSWorker.ico │ │ │ ├── NodeJSApplication.ico │ │ │ ├── NodeTSApplication.ico │ │ │ ├── TSAzureApplication.ico │ │ │ ├── TSConsole.ico │ │ │ ├── TSWeb.ico │ │ │ └── TSWorker.ico │ │ ├── NodejsImageList.bmp │ │ ├── NodejsProject.ico │ │ ├── ProfilingCmdBar.bmp │ │ ├── ProfilingCmdBar.png │ │ ├── ProfilingTreeView.bmp │ │ ├── ProfilingTreeView.png │ │ ├── ReplToolBarImages.bmp │ │ ├── SharedProjectImageList.bmp │ │ ├── SolutionExplorerIconsPNG │ │ │ ├── JSProj_16x_color.png │ │ │ ├── NodeJSPackageMissing_16x.png │ │ │ ├── NodeJSPackage_16x.png │ │ │ ├── PackageWarning_16x.png │ │ │ └── TSProject_SolutionExplorerNode.png │ │ ├── SystemRegisteredICO │ │ │ ├── NodeJS.ico │ │ │ └── NodeJS_200x.png │ │ └── ToolMenuPNG │ │ │ └── NodeJSInteractiveWindow_16x.png │ ├── LogConverter │ │ ├── App.config │ │ ├── EtlNativeMethods.cs │ │ ├── LogConverter.csproj │ │ ├── LogParsing │ │ │ ├── ITraceEvent.cs │ │ │ ├── ITraceEventCallback.cs │ │ │ ├── ITraceRelogger.cs │ │ │ └── LogConverter.cs │ │ ├── NativeMethods.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TraceLog.cs │ ├── Nodejs │ │ ├── BaseNodeProjectFactory.cs │ │ ├── Commands │ │ │ ├── ImportWizardCommand.cs │ │ │ ├── MigrateToJspsCommand.cs │ │ │ ├── MigrateToJspsUtils.cs │ │ │ └── RevertMigrationCommand.cs │ │ ├── Credits.txt │ │ ├── Debugger │ │ │ └── NodeProcess.cs │ │ ├── Diagnostics │ │ │ ├── HierarchyItem.cs │ │ │ └── NodeJsToolsEventSource.cs │ │ ├── Extensions.cs │ │ ├── FeatureFlags.pkgdef │ │ ├── GeneratedHelpAboutVersion.tt │ │ ├── Guids.cs │ │ ├── ImportWizardResources.Designer.cs │ │ ├── ImportWizardResources.resx │ │ ├── JsonListener.cs │ │ ├── Key.snk │ │ ├── License.html │ │ ├── Logging │ │ │ └── LiveLogger.cs │ │ ├── MigrateToJspsResources.Designer.cs │ │ ├── MigrateToJspsResources.resx │ │ ├── Nodejs.cs │ │ ├── Nodejs.csproj │ │ ├── NodejsConstants.cs │ │ ├── NodejsPackage.cs │ │ ├── NodejsProject.cs │ │ ├── NodejsProjectConfig.cs │ │ ├── NodejsProjectFactory.cs │ │ ├── NodejsTools.vsct │ │ ├── NpmUI │ │ │ ├── ErrorHelper.cs │ │ │ ├── FilterStateVisibilityConverter.cs │ │ │ ├── LastRefreshedMessageProvider.cs │ │ │ ├── NpmInstallWindowResources.Designer.cs │ │ │ ├── NpmInstallWindowResources.resx │ │ │ ├── NpmPackageInstallViewModel.cs │ │ │ ├── NpmPackageInstallWindow.xaml │ │ │ ├── NpmPackageInstallWindow.xaml.cs │ │ │ ├── NpmWorker.cs │ │ │ └── PackageCatalogEntryViewModel.cs │ │ ├── OpenFolder.pkgdef │ │ ├── Options │ │ │ ├── NodejsDialogPage.cs │ │ │ ├── NodejsGeneralOptionsControl.Designer.cs │ │ │ ├── NodejsGeneralOptionsControl.cs │ │ │ ├── NodejsGeneralOptionsControl.resx │ │ │ └── NodejsGeneralOptionsPage.cs │ │ ├── PkgCmdId.cs │ │ ├── Project │ │ │ ├── AbstractNpmNode.cs │ │ │ ├── Attributes.cs │ │ │ ├── AzureToolsContracts.cs │ │ │ ├── DependencyNode.cs │ │ │ ├── DependencyNodeProperties.cs │ │ │ ├── ImportWizard │ │ │ │ ├── FileSourcePage.xaml │ │ │ │ ├── FileSourcePage.xaml.cs │ │ │ │ ├── ImportSettings.cs │ │ │ │ ├── ImportWizard.xaml │ │ │ │ ├── ImportWizard.xaml.cs │ │ │ │ ├── ImportWizardDictionary.xaml │ │ │ │ ├── LabelledControl.cs │ │ │ │ ├── ProjectLanguageBoolConverter.cs │ │ │ │ ├── SaveProjectPage.xaml │ │ │ │ ├── SaveProjectPage.xaml.cs │ │ │ │ ├── StartupPage.xaml │ │ │ │ └── StartupPage.xaml.cs │ │ │ ├── LocalModulesNode.cs │ │ │ ├── MigrateToJspsInfoBar.cs │ │ │ ├── MissingNodeInfoBar.cs │ │ │ ├── NewFileMenuGroup │ │ │ │ ├── NewFileNameForm.Designer.cs │ │ │ │ ├── NewFileNameForm.cs │ │ │ │ ├── NewFileNameForm.cs.resx │ │ │ │ ├── NewFileNameForm.de.resx │ │ │ │ ├── NewFileNameForm.en.resx │ │ │ │ ├── NewFileNameForm.es.resx │ │ │ │ ├── NewFileNameForm.fr.resx │ │ │ │ ├── NewFileNameForm.it.resx │ │ │ │ ├── NewFileNameForm.ja.resx │ │ │ │ ├── NewFileNameForm.ko.resx │ │ │ │ ├── NewFileNameForm.pl.resx │ │ │ │ ├── NewFileNameForm.pt-BR.resx │ │ │ │ ├── NewFileNameForm.resx │ │ │ │ ├── NewFileNameForm.ru.resx │ │ │ │ ├── NewFileNameForm.tr.resx │ │ │ │ ├── NewFileNameForm.zh-Hans.resx │ │ │ │ ├── NewFileNameForm.zh-Hant.resx │ │ │ │ └── NewFileUtilities.cs │ │ │ ├── NodeFileLibraryNode.cs │ │ │ ├── NodeLibraryNode.cs │ │ │ ├── NodeModulesNode.cs │ │ │ ├── NodejsFileNode.cs │ │ │ ├── NodejsFileNodeProperties.cs │ │ │ ├── NodejsFolderNode.cs │ │ │ ├── NodejsGeneralPropertyPage.cs │ │ │ ├── NodejsGeneralPropertyPageControl.Designer.cs │ │ │ ├── NodejsGeneralPropertyPageControl.cs │ │ │ ├── NodejsGeneralPropertyPageControl.resx │ │ │ ├── NodejsLibraryManager.cs │ │ │ ├── NodejsProjectImageName.cs │ │ │ ├── NodejsProjectLauncher.cs │ │ │ ├── NodejsProjectNode.cs │ │ │ ├── NodejsProjectNodeProperties.cs │ │ │ ├── NodejsProjectPackage.cs │ │ │ ├── NodejsTypeScriptFileNode.cs │ │ │ ├── NodejsTypeScriptFileNodeProperties.cs │ │ │ ├── NpmNodeProperties.cs │ │ │ ├── OperationProgressService.cs │ │ │ └── ProjectResources.cs │ │ ├── ProjectTemplates │ │ │ ├── AzureExpress4App │ │ │ │ ├── AzureExpress4App.vstemplate │ │ │ │ ├── ExpressApp.njsproj │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── app.js │ │ │ │ ├── error.pug │ │ │ │ ├── index.js │ │ │ │ ├── index.pug │ │ │ │ ├── layout.pug │ │ │ │ ├── main.css │ │ │ │ ├── package.json │ │ │ │ └── users.js │ │ │ ├── AzureNodejsApp │ │ │ │ ├── AzureNodejsApp.njsproj │ │ │ │ ├── AzureNodejsApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ ├── AzureNodejsWorker │ │ │ │ ├── AzureNodejsWorker.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── Worker.njsproj │ │ │ │ ├── package.json │ │ │ │ ├── startup.js │ │ │ │ └── worker.js │ │ │ ├── CloudService │ │ │ │ ├── CloudService.ccproj │ │ │ │ ├── CloudService.vstemplate │ │ │ │ ├── ServiceConfiguration.Cloud.cscfg │ │ │ │ ├── ServiceConfiguration.Local.cscfg │ │ │ │ ├── ServiceDefinition.csdef │ │ │ │ └── cloudservice.ico │ │ │ ├── Express4App │ │ │ │ ├── ExpressApp.njsproj │ │ │ │ ├── ExpressApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── app.js │ │ │ │ ├── error.pug │ │ │ │ ├── index.js │ │ │ │ ├── index.pug │ │ │ │ ├── layout.pug │ │ │ │ ├── main.css │ │ │ │ ├── package.json │ │ │ │ └── users.js │ │ │ ├── FromExistingCode │ │ │ │ ├── FromExistingCode.njsproj │ │ │ │ └── FromExistingCode.vstemplate │ │ │ ├── NodejsConsoleApp │ │ │ │ ├── NodejsConsoleApp.njsproj │ │ │ │ ├── NodejsConsoleApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── app.js │ │ │ │ └── package.json │ │ │ ├── NodejsWebApp │ │ │ │ ├── NodejsWebApp.njsproj │ │ │ │ ├── NodejsWebApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── Web.cloud.config │ │ │ │ ├── Web.config │ │ │ │ ├── bin │ │ │ │ │ ├── ChangeConfig.ps1 │ │ │ │ │ ├── download.ps1 │ │ │ │ │ └── setup_web.cmd │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ ├── TypeScriptAzureExpressApp │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── TypeScriptAzureExpressApp.vstemplate │ │ │ │ ├── TypeScriptExpressApp.njsproj │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── app.ts │ │ │ │ ├── error.pug │ │ │ │ ├── index.pug │ │ │ │ ├── index.ts │ │ │ │ ├── layout.pug │ │ │ │ ├── main.css │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── user.ts │ │ │ ├── TypeScriptAzureNodejsWorker │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── TypeScriptAzureNodejsWorker.vstemplate │ │ │ │ ├── Worker.njsproj │ │ │ │ ├── package.json │ │ │ │ ├── server.ts │ │ │ │ └── startup.ts │ │ │ ├── TypeScriptAzureWebApp │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── TypeScriptWebApp.njsproj │ │ │ │ ├── TypeScriptWebApp.vstemplate │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── package.json │ │ │ │ ├── server.ts │ │ │ │ └── tsconfig.json │ │ │ ├── TypeScriptAzureWebRole │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── TypeScriptAzureWebRole.vstemplate │ │ │ │ ├── TypeScriptWebApp.njsproj │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── package.json │ │ │ │ └── server.ts │ │ │ ├── TypeScriptConsoleApp │ │ │ │ ├── NodejsConsoleApp.njsproj │ │ │ │ ├── NodejsConsoleApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── app.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ ├── TypeScriptExpressApp │ │ │ │ ├── ExpressApp.njsproj │ │ │ │ ├── ExpressApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── app.ts │ │ │ │ ├── error.pug │ │ │ │ ├── index.pug │ │ │ │ ├── index.ts │ │ │ │ ├── layout.pug │ │ │ │ ├── main.css │ │ │ │ ├── package.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── user.ts │ │ │ ├── TypeScriptFromExistingCode │ │ │ │ ├── FromExistingCode.njsproj │ │ │ │ └── FromExistingCode.vstemplate │ │ │ ├── TypeScriptVuejsApp │ │ │ │ ├── .browserslistrc │ │ │ │ ├── App.vue │ │ │ │ ├── HelloWorld.vue │ │ │ │ ├── README.md │ │ │ │ ├── TypeScriptVuejsApp.njsproj │ │ │ │ ├── TypeScriptVuejsApp.vstemplate │ │ │ │ ├── babel.config.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo.png │ │ │ │ ├── main.ts │ │ │ │ ├── package.json │ │ │ │ ├── shims-vue.d.ts │ │ │ │ └── tsconfig.json │ │ │ ├── TypeScriptWebApp │ │ │ │ ├── NodejsWebApp.njsproj │ │ │ │ ├── NodejsWebApp.vstemplate │ │ │ │ ├── Preview.png │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── server.ts │ │ │ │ └── tsconfig.json │ │ │ └── VuejsApp │ │ │ │ ├── .browserslistrc │ │ │ │ ├── App.vue │ │ │ │ ├── HelloWorld.vue │ │ │ │ ├── README.md │ │ │ │ ├── VuejsApp.njsproj │ │ │ │ ├── VuejsApp.vstemplate │ │ │ │ ├── babel.config.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo.png │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ProvideLanguageTemplates.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── SharedProject │ │ │ ├── AllFilesProjectElement.cs │ │ │ ├── AssemblyReferenceNode.cs │ │ │ ├── Attributes.cs │ │ │ ├── Automation │ │ │ │ ├── AutomationScope.cs │ │ │ │ ├── OAFileItem.cs │ │ │ │ ├── OAFolderItem.cs │ │ │ │ ├── OANavigableProjectItems.cs │ │ │ │ ├── OANullProperty.cs │ │ │ │ ├── OAProject.cs │ │ │ │ ├── OAProjectConfigurationProperties.cs │ │ │ │ ├── OAProjectItem.cs │ │ │ │ ├── OAProjectItems.cs │ │ │ │ ├── OAProperties.cs │ │ │ │ ├── OAProperty.cs │ │ │ │ ├── OAReferenceFolderItem.cs │ │ │ │ ├── OAReferenceItem.cs │ │ │ │ └── VSProject │ │ │ │ │ ├── OAAssemblyReference.cs │ │ │ │ │ ├── OAProjectReference.cs │ │ │ │ │ ├── OAReferenceBase.cs │ │ │ │ │ ├── OAReferences.cs │ │ │ │ │ ├── OAVSProject.cs │ │ │ │ │ └── OAVSProjectItem.cs │ │ │ ├── BuildDependency.cs │ │ │ ├── BuildPropertyPage.cs │ │ │ ├── ClipboardService.cs │ │ │ ├── ClipboardServiceBase.cs │ │ │ ├── Command.cs │ │ │ ├── CommonConfigProvider.cs │ │ │ ├── CommonFileNode.cs │ │ │ ├── CommonFolderNode.cs │ │ │ ├── CommonNonCodeFileNode.cs │ │ │ ├── CommonPackage.cs │ │ │ ├── CommonProjectConfig.cs │ │ │ ├── CommonProjectNode.DiskMerger.cs │ │ │ ├── CommonProjectNode.FileSystemChange.cs │ │ │ ├── CommonProjectNode.cs │ │ │ ├── CommonProjectNodeProperties.cs │ │ │ ├── CommonProjectPackage.cs │ │ │ ├── CommonPropertyPage.cs │ │ │ ├── CommonReferenceContainerNode.cs │ │ │ ├── ConfigProvider.cs │ │ │ ├── DataObject.cs │ │ │ ├── DebugTimer.cs │ │ │ ├── DependentFileNode.cs │ │ │ ├── DesignPropertyDescriptor.cs │ │ │ ├── DeveloperActivityAttribute.cs │ │ │ ├── DialogWindowVersioningWorkaround.cs │ │ │ ├── DirtyChangedEventArgs.cs │ │ │ ├── DocumentManager.cs │ │ │ ├── EnumBSTR.cs │ │ │ ├── EnumDependencies.cs │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── ExtensibilityEventsDispatcher.cs │ │ │ ├── FileChangeManager.cs │ │ │ ├── FileDocumentManager.cs │ │ │ ├── FileNode.cs │ │ │ ├── FlavoredProjectFactoryBase.cs │ │ │ ├── FolderNode.cs │ │ │ ├── HierarchyIdMap.cs │ │ │ ├── HierarchyNode.cs │ │ │ ├── HierarchyNodeFlags.cs │ │ │ ├── IDEBuildLogger.cs │ │ │ ├── IDiskBasedNode.cs │ │ │ ├── IProjectLaunchProperties.cs │ │ │ ├── IProjectLauncher.cs │ │ │ ├── IProjectPublisher.cs │ │ │ ├── IPublishFile.cs │ │ │ ├── IPublishProject.cs │ │ │ ├── IdleManager.cs │ │ │ ├── ImageHandler.cs │ │ │ ├── Interfaces.cs │ │ │ ├── LocalizableProperties.cs │ │ │ ├── Misc │ │ │ │ ├── ConnectionPointContainer.cs │ │ │ │ ├── ExternDll.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ └── UnsafeNativeMethods.cs │ │ │ ├── MsBuildProjectElement.cs │ │ │ ├── Navigation │ │ │ │ ├── CommonLibraryNode.cs │ │ │ │ ├── HierarchyListener.cs │ │ │ │ ├── ICustomSearchListProvider.cs │ │ │ │ ├── ILibraryManager.cs │ │ │ │ ├── IScopeNode.cs │ │ │ │ ├── ISimpleObject.cs │ │ │ │ ├── Library.cs │ │ │ │ ├── LibraryManager.cs │ │ │ │ ├── LibraryNode.cs │ │ │ │ ├── LibraryTask.cs │ │ │ │ ├── ModuleId.cs │ │ │ │ ├── ProjectLibraryNode.cs │ │ │ │ ├── SimpleObject.cs │ │ │ │ ├── SimpleObjectList.cs │ │ │ │ ├── SourceLocation.cs │ │ │ │ └── TextLineEventListener.cs │ │ │ ├── NodeProperties.cs │ │ │ ├── ObservableCollectionExtensions.cs │ │ │ ├── Output.cs │ │ │ ├── OutputGroup.cs │ │ │ ├── OutputWindowRedirector.cs │ │ │ ├── OutputWindowWrapper.cs │ │ │ ├── OverwriteFileDialog.xaml │ │ │ ├── OverwriteFileDialog.xaml.cs │ │ │ ├── ProjectConfig.cs │ │ │ ├── ProjectDesignerDocumentManager.cs │ │ │ ├── ProjectDocumentsListener.cs │ │ │ ├── ProjectDocumentsListenerForStartupFileUpdates.cs │ │ │ ├── ProjectElement.cs │ │ │ ├── ProjectFactory.cs │ │ │ ├── ProjectFileConstants.cs │ │ │ ├── ProjectNode.CopyPaste.cs │ │ │ ├── ProjectNode.Events.cs │ │ │ ├── ProjectNode.IOleCommandTarget.cs │ │ │ ├── ProjectNode.cs │ │ │ ├── ProjectPackage.cs │ │ │ ├── ProjectReferenceNode.cs │ │ │ ├── PropertiesEditorLauncher.cs │ │ │ ├── ProvideCodeExpansionPathAttribute.cs │ │ │ ├── ProvideCodeExpansionsAttribute.cs │ │ │ ├── ProvideDebugEngineAttribute.cs │ │ │ ├── ProvideDebugExceptionAttribute.cs │ │ │ ├── ProvideDebugLanguageAttribute.cs │ │ │ ├── ProvideDebugPortPickerAttribute.cs │ │ │ ├── ProvideDebugPortSupplierAttribute.cs │ │ │ ├── PublishFailedException.cs │ │ │ ├── PublishFile.cs │ │ │ ├── PublishProject.cs │ │ │ ├── PublishProjectOptions.cs │ │ │ ├── ReferenceContainerNode.cs │ │ │ ├── ReferenceNode.cs │ │ │ ├── SharedCommands.cs │ │ │ ├── SolutionListener.cs │ │ │ ├── SolutionListenerForBuildDependencyUpdate.cs │ │ │ ├── SolutionListenerForProjectOpen.cs │ │ │ ├── StructuresEnums.cs │ │ │ ├── SuspendFileChanges.cs │ │ │ ├── SystemUtilities.cs │ │ │ ├── TaskExtensions.cs │ │ │ ├── TaskProgressBar.xaml │ │ │ ├── TaskProgressBar.xaml.cs │ │ │ ├── TrackDocumentsHelper.cs │ │ │ ├── UIThread.cs │ │ │ ├── UIThreadBase.cs │ │ │ ├── UIThreadSynchronizer.cs │ │ │ ├── UiaAutomationNativeMethods.cs │ │ │ ├── UpdateSolutionEventsListener.cs │ │ │ ├── Utilities.cs │ │ │ ├── VSShellUtilities.cs │ │ │ ├── VirtualProjectElement.cs │ │ │ ├── VsCommands.cs │ │ │ ├── VsExtensions.cs │ │ │ ├── VsTaskExtensions.cs │ │ │ ├── WaitDialog.cs │ │ │ ├── WebPiComponentPickerControl.Designer.cs │ │ │ ├── WebPiComponentPickerControl.cs │ │ │ ├── WebPiComponentPickerControl.resx │ │ │ ├── WebSocketStream.cs │ │ │ └── Wpf │ │ │ │ ├── Commands.cs │ │ │ │ ├── ConfigurationControl.cs │ │ │ │ ├── Controls.cs │ │ │ │ ├── Controls.xaml │ │ │ │ ├── Dialogs.cs │ │ │ │ ├── LabelledButton.cs │ │ │ │ ├── LabelledControl.cs │ │ │ │ └── NotificationTextBox.cs │ │ ├── SharedResources.proj │ │ ├── SourceMapping │ │ │ ├── FunctionInfo.cs │ │ │ ├── JavaScriptSourceMapInfo.cs │ │ │ ├── SourceMap.cs │ │ │ ├── SourceMapper.cs │ │ │ └── SourceMapping.proj │ │ ├── Telemetry │ │ │ ├── TelemetryEvents.cs │ │ │ └── TelemetryHelper.cs │ │ ├── Templates │ │ │ └── Files │ │ │ │ ├── CSExpressWebRole │ │ │ │ ├── ExpressWebRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── CSTSExpressWebRole │ │ │ │ ├── TypeScriptExpressWebRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── CSTSWebRole │ │ │ │ ├── TypeScriptWebRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── CSTSWorkerRole │ │ │ │ ├── TypeScriptWorkerRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── CSWebRole │ │ │ │ ├── WebRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── CSWorkerRole │ │ │ │ ├── WorkerRole.vstemplate │ │ │ │ └── roletemplatedata.xml │ │ │ │ ├── EmptyCss │ │ │ │ ├── EmptyCss.css │ │ │ │ └── EmptyCss.vstemplate │ │ │ │ ├── EmptyHtml │ │ │ │ ├── EmptyHtml.html │ │ │ │ └── EmptyHtml.vstemplate │ │ │ │ ├── EmptyJs │ │ │ │ ├── EmptyJs.js │ │ │ │ └── EmptyJs.vstemplate │ │ │ │ ├── EmptyJson │ │ │ │ ├── EmptyJson.json │ │ │ │ └── EmptyJson.vstemplate │ │ │ │ ├── EmptyJsx │ │ │ │ ├── EmptyJsx.jsx │ │ │ │ └── EmptyJsx.vstemplate │ │ │ │ ├── EmptyLess │ │ │ │ ├── EmptyLess.less │ │ │ │ └── EmptyLess.vstemplate │ │ │ │ ├── EmptyPug │ │ │ │ ├── EmptyPug.pug │ │ │ │ └── EmptyPug.vstemplate │ │ │ │ ├── EmptyTs │ │ │ │ ├── EmptyTs.ts │ │ │ │ └── EmptyTs.vstemplate │ │ │ │ ├── EmptyXml │ │ │ │ ├── EmptyXml.vstemplate │ │ │ │ └── EmptyXml.xml │ │ │ │ ├── JasmineUnitTest │ │ │ │ ├── UnitTest.js │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── JavaScriptVueComponent │ │ │ │ ├── JavaScriptVueComponent.vstemplate │ │ │ │ └── JavaScriptVueComponent.vue │ │ │ │ ├── JestUnitTest │ │ │ │ ├── UnitTest.js │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── MochaUnitTest │ │ │ │ ├── UnitTest.js │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TapeUnitTest │ │ │ │ ├── UnitTest.js │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TypeScriptJSX │ │ │ │ ├── EmptyTsx.tsx │ │ │ │ └── EmptyTsx.vstemplate │ │ │ │ ├── TypeScriptJasmineUnitTest │ │ │ │ ├── UnitTest.ts │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TypeScriptJsConfig │ │ │ │ ├── jsconfig.json │ │ │ │ └── jsconfig.vstemplate │ │ │ │ ├── TypeScriptMochaUnitTest │ │ │ │ ├── UnitTest.ts │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TypeScriptTapeUnitTest │ │ │ │ ├── UnitTest.ts │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TypeScriptTsConfig │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.vstemplate │ │ │ │ ├── TypeScriptUnitTest │ │ │ │ ├── UnitTest.ts │ │ │ │ └── UnitTest.vstemplate │ │ │ │ ├── TypeScriptVueComponent │ │ │ │ ├── TypeScriptVueComponent.vstemplate │ │ │ │ └── TypeScriptVueComponent.vue │ │ │ │ └── UnitTest │ │ │ │ ├── UnitTest.js │ │ │ │ └── UnitTest.vstemplate │ │ ├── TestFrameworks │ │ │ └── TestFrameworkDirectories.cs │ │ ├── TypeScriptHelpers │ │ │ ├── TsConfigJson.cs │ │ │ ├── TsConfigJsonFactory.cs │ │ │ ├── TypeScriptCompile.cs │ │ │ └── TypeScriptCompilerLocator.cs │ │ ├── VSPackage.resx │ │ ├── VSTemplateStore.pkgdef │ │ ├── VsMenus.cs │ │ ├── Workspace │ │ │ ├── BaseFileScanner.cs │ │ │ ├── ContextMenuProvider.cs │ │ │ ├── JsFileDebugLaunchTargetProvider.cs │ │ │ ├── NodeJsDebugLaunchTargetProvider.cs │ │ │ ├── OpenFolderSchema.json │ │ │ ├── PackageJsonScannerFactory.cs │ │ │ ├── PackageJsonTestContainer.cs │ │ │ ├── PackageJsonTestContainerDiscoverer.cs │ │ │ ├── TsConfigScannerFactory.cs │ │ │ ├── TypeScriptActionProviderFactory.cs │ │ │ ├── TypeScriptContextProviderFactory.cs │ │ │ ├── TypeScriptScannerFactory.cs │ │ │ └── WorkspaceExtensions.cs │ │ └── source.extension.vsixmanifest │ ├── NodejsToolsVsix │ │ ├── NodejsToolsVsix.csproj │ │ └── source.extension.vsixmanifest │ ├── Npm │ │ ├── DependencyType.cs │ │ ├── DependencyUrlType.cs │ │ ├── IBundledDependencies.cs │ │ ├── IDependencies.cs │ │ ├── IDependency.cs │ │ ├── IDependencyUrl.cs │ │ ├── IFiles.cs │ │ ├── IHomepages.cs │ │ ├── IKeywords.cs │ │ ├── ILicense.cs │ │ ├── ILicenses.cs │ │ ├── INodeModules.cs │ │ ├── INpmCommander.cs │ │ ├── INpmController.cs │ │ ├── INpmLogSource.cs │ │ ├── INpmPathProvider.cs │ │ ├── IPackage.cs │ │ ├── IPackageCatalogFilter.cs │ │ ├── IPackageJson.cs │ │ ├── IPackageJsonScript.cs │ │ ├── IPerson.cs │ │ ├── IPkgStringArray.cs │ │ ├── IRootPackage.cs │ │ ├── NativeMethods.cs │ │ ├── NodeModuleBuilder.cs │ │ ├── Npm.csproj │ │ ├── NpmArgumentBuilder.cs │ │ ├── NpmCatalogEmptyException.cs │ │ ├── NpmCommandCompletedEventArgs.cs │ │ ├── NpmCommandStartedEventArgs.cs │ │ ├── NpmControllerFactory.cs │ │ ├── NpmExceptionEventArgs.cs │ │ ├── NpmExecutionException.cs │ │ ├── NpmHelpers.cs │ │ ├── NpmLogEventArgs.cs │ │ ├── NpmNotFoundException.cs │ │ ├── PackageComparer.cs │ │ ├── PackageFlags.cs │ │ ├── PackageJsonException.cs │ │ ├── PackageJsonFactory.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── RootPackageFactory.cs │ │ ├── SPI │ │ │ ├── AbstractNodeModules.cs │ │ │ ├── AbstractNpmLogSource.cs │ │ │ ├── AbstractNpmSearchComparer.cs │ │ │ ├── BundledDependencies.cs │ │ │ ├── Dependencies.cs │ │ │ ├── Dependency.cs │ │ │ ├── DependencyUrl.cs │ │ │ ├── GenericNpmCommand.cs │ │ │ ├── Homepages.cs │ │ │ ├── Keywords.cs │ │ │ ├── NodeModules.cs │ │ │ ├── NodeModulesProxy.cs │ │ │ ├── NpmCommand.cs │ │ │ ├── NpmCommander.cs │ │ │ ├── NpmController.cs │ │ │ ├── NpmInstallCommand.cs │ │ │ ├── NpmUninstallCommand.cs │ │ │ ├── NpmUpdateCommand.cs │ │ │ ├── Package.cs │ │ │ ├── PackageJson.cs │ │ │ ├── PackageJsonScript.cs │ │ │ ├── PackageProxy.cs │ │ │ ├── Person.cs │ │ │ ├── PkgFiles.cs │ │ │ ├── PkgStringArray.cs │ │ │ └── RootPackage.cs │ │ ├── SemverVersion.cs │ │ ├── SemverVersionComparer.cs │ │ └── SemverVersionFormatException.cs │ ├── Performance1.psess │ ├── PressAnyKey │ │ ├── PressAnyKey.cs │ │ ├── PressAnyKey.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ProjectAfter.targets │ ├── ProjectBefore.settings │ ├── ProjectWizard │ │ ├── CloudServiceWizard.cs │ │ ├── INodePackageModulesCommands.cs │ │ ├── ImportWizard.cs │ │ ├── NodejsPackageParametersExtension.cs │ │ ├── NpmWizardExtension.cs │ │ ├── ProjectWizard.csproj │ │ ├── ProjectWizardResources.Designer.cs │ │ ├── ProjectWizardResources.resx │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SettingsManagerCreator.cs │ │ ├── UnitTestFileWizard.cs │ │ └── WizardHelpers.cs │ ├── TargetsVsix │ │ ├── Microsoft.NodejsTools.targets │ │ ├── Microsoft.NodejsToolsV2.targets │ │ ├── TargetsVsix.csproj │ │ └── source.extension.vsixmanifest │ ├── TestAdapter │ │ ├── AssemblyResolver.cs │ │ ├── DefaultTestDiscoverer.cs │ │ ├── JavaScriptTestCaseProperties.cs │ │ ├── NodejsToolsTestDiscoverer.cs │ │ ├── ProjectTestDiscoverer.cs │ │ ├── ProjectTestExecutor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SerializationHelpers.cs │ │ ├── TestAdapter.csproj │ │ ├── TestDiscovererWorker.cs │ │ ├── TestExecutorWorker.TestExecutionRedirector.cs │ │ ├── TestExecutorWorker.TestReceiver.cs │ │ ├── TestExecutorWorker.cs │ │ ├── TestFrameworkFactory.cs │ │ ├── TestFrameworks │ │ │ ├── Angular │ │ │ │ ├── Angular.js │ │ │ │ ├── jasmineReporter.js │ │ │ │ ├── karmaConfig.js │ │ │ │ └── vsKarmaReporter.js │ │ │ ├── ExportRunner │ │ │ │ └── exportrunner.js │ │ │ ├── FrameworkDiscoverer.cs │ │ │ ├── Jasmine │ │ │ │ └── jasmine.js │ │ │ ├── Jest │ │ │ │ ├── jest.js │ │ │ │ └── jestReporter.js │ │ │ ├── NodejsTestInfo.cs │ │ │ ├── Tape │ │ │ │ └── tape.js │ │ │ ├── TestFramework.cs │ │ │ ├── find_tests.js │ │ │ ├── mocha │ │ │ │ └── mocha.js │ │ │ └── run_tests.js │ │ └── UnitTestSettings.cs │ ├── TestAdapterImpl │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RunFromContextFileExtensions.cs │ │ ├── ServiceProviderExtension.cs │ │ ├── TestAdapterImpl.csproj │ │ ├── TestContainer.cs │ │ ├── TestContainerDiscoverer.cs │ │ ├── TestFileAddRemoveListener.cs │ │ ├── TestFilesUpdateWatcher.cs │ │ ├── TestMethodResolver.cs │ │ ├── VisualStudioApp.cs │ │ └── VsProjectExtensions.cs │ ├── TestAdapterVsix │ │ ├── TestAdapterVsix.csproj │ │ └── source.extension.vsixmanifest │ ├── ToolProjectAfter.settings │ ├── ToolProjectBefore.settings │ ├── TypeScript │ │ └── TypeScriptHelpers.cs │ ├── VsixProjectBefore.settings │ └── WebRole │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── WebRole.csproj │ │ ├── WebSocketProxy.cs │ │ ├── WebSocketProxy.html │ │ └── WebSocketProxyBase.cs ├── Setup │ ├── NodejsSetup.sln │ ├── NodejsTools.vsmanproj │ ├── SetupProjectAfter.settings │ ├── SetupProjectBefore.settings │ └── packages.config ├── Tests │ ├── AzurePublishing.UI │ │ ├── AzurePublishing.Tests.UI.csproj │ │ ├── AzureWebRoleTests.cs │ │ ├── AzureWebSiteTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Core.UI │ │ ├── AzureProjectTests.cs │ │ ├── BasicProjectTests.cs │ │ ├── ClassificationTests.cs │ │ ├── DebuggerUITests.cs │ │ ├── JadeUITests.cs │ │ ├── Key.snk │ │ ├── Nodejs.Tests.UI.csproj │ │ ├── NodejsBasicProjectTests.cs │ │ ├── NodejsProjectProcessor.cs │ │ ├── NodejsProjectTest.cs │ │ ├── NodejsTestDefintions.cs │ │ ├── NpmUITests.cs │ │ ├── OptionHolder.cs │ │ ├── ProjectPropertiesTests.cs │ │ ├── ProjectTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReplWindowTests.cs │ │ ├── UITests.cs │ │ └── app.config │ ├── Core │ │ ├── AzureTests.cs │ │ ├── BaselineCompare.cs │ │ ├── Debugger │ │ │ ├── BaseDebuggerTests.cs │ │ │ ├── Commands │ │ │ │ ├── BacktraceCommandTests.cs │ │ │ │ ├── ChangeBreakpointCommandTests.cs │ │ │ │ ├── ChangeLiveCommandTests.cs │ │ │ │ ├── ClearBreakpointCommandTests.cs │ │ │ │ ├── ContinueCommandTests.cs │ │ │ │ ├── DisconnectCommandTests.cs │ │ │ │ ├── EvaluateCommandTests.cs │ │ │ │ ├── ListBreakpointsTests.cs │ │ │ │ ├── LookupCommandTests.cs │ │ │ │ ├── ScriptsCommandTests.cs │ │ │ │ ├── SetBreakpointCommandTests.cs │ │ │ │ ├── SetExceptionBreakCommandTests.cs │ │ │ │ ├── SetVariableValueCommandTests.cs │ │ │ │ └── SuspendCommandTests.cs │ │ │ ├── Communication │ │ │ │ ├── DebuggerClientTests.cs │ │ │ │ └── DebuggerConnectionTests.cs │ │ │ ├── DebuggerTests.cs │ │ │ ├── Events │ │ │ │ ├── BreakpointEventTests.cs │ │ │ │ ├── CompileScriptEventTests.cs │ │ │ │ └── ExceptionEventTests.cs │ │ │ ├── ExceptionHandlerTests.cs │ │ │ ├── FileNameMapping │ │ │ │ ├── FuzzyLogicFileNameMapperTests.cs │ │ │ │ └── LocalFileNameMapperTests.cs │ │ │ ├── InfrastructureTests.cs │ │ │ └── Serialization │ │ │ │ ├── BacktraceVariableTests.cs │ │ │ │ ├── EvaluationVariableTests.cs │ │ │ │ ├── LookupVariableTests.cs │ │ │ │ ├── NodeVariablesFactoryTests.cs │ │ │ │ ├── PrototypeVariableTests.cs │ │ │ │ └── SetValueVariableTests.cs │ │ ├── ImportWizardTests.cs │ │ ├── JadeTests.cs │ │ ├── Key.snk │ │ ├── LauncherTests.cs │ │ ├── Mocks │ │ │ ├── MockNodeVariable.cs │ │ │ └── MockTextBuffer.cs │ │ ├── NodePathResolutionTests.cs │ │ ├── NodejsTests.csproj │ │ ├── ProjectUpgradeTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReplWindowTests.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── SerializationTestData.cs │ │ ├── SourceMapTests.cs │ │ ├── TemplateTests.cs │ │ ├── TestFrameworkStringConverterTest.cs │ │ ├── TestNodejsReplSite.cs │ │ ├── app.config │ │ ├── packages.config │ │ └── ruleFormattingTests.json │ ├── MockProjects │ │ ├── MockProjects.sln │ │ ├── NodeAppWithAngularTests │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── NodeAppWithAngularTests.njsproj │ │ │ ├── README.md │ │ │ ├── angular.json │ │ │ ├── app.js │ │ │ ├── e2e │ │ │ │ ├── protractor.conf.js │ │ │ │ ├── src │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ └── app.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── karma.conf.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.css │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ └── customTest.spec.ts │ │ │ │ ├── assets │ │ │ │ │ └── .gitkeep │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── styles.css │ │ │ │ └── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.spec.json │ │ │ └── tslint.json │ │ ├── NodeAppWithTestsConfiguredOnProject │ │ │ ├── MochaUnitTest.js │ │ │ ├── NodeAppWithTestsConfiguredOnProject.njsproj │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── NodeAppWithTestsConfiguredPerFile │ │ │ ├── ExportRunnerUnitTest.js │ │ │ ├── JasmineUnitTest.js │ │ │ ├── JestUnitTest.js │ │ │ ├── MochaUnitTest.js │ │ │ ├── NodeAppWithTestsConfiguredPerFile.njsproj │ │ │ ├── README.md │ │ │ ├── TapeUnitTest.js │ │ │ ├── app.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── reactappwithjesttestsjavascript │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── launch.json │ │ │ ├── README.md │ │ │ ├── nuget.config │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo192.png │ │ │ │ ├── logo512.png │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ ├── reactappwithjesttestsjavascript.esproj │ │ │ └── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── App.test.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── logo.svg │ │ │ │ ├── reportWebVitals.js │ │ │ │ └── setupTests.js │ │ └── reactappwithjestteststypescript │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ └── launch.json │ │ │ ├── README.md │ │ │ ├── nuget.config │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ │ ├── reactappwithjestteststypescript.esproj │ │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ ├── reportWebVitals.ts │ │ │ └── setupTests.ts │ │ │ └── tsconfig.json │ ├── NpmTests │ │ ├── AbstractPackageJsonTests.cs │ │ ├── FileSystemPackageJsonTests.cs │ │ ├── FilesystemPackageJsonTestHelpers.cs │ │ ├── InstallUninstallPackageTests.cs │ │ ├── MaxPathTests.cs │ │ ├── MockPackageCatalog.cs │ │ ├── MockPackageJsonSource.cs │ │ ├── ModuleHierarchyTests.cs │ │ ├── NpmSearchTests.cs │ │ ├── NpmTests.csproj │ │ ├── PackageJsonDependencyTests.cs │ │ ├── PackageJsonTests.cs │ │ ├── PersonTests.cs │ │ ├── ProblematicPackageJsonTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SemverVersionTestHelper.cs │ │ ├── SemverVersionTests.cs │ │ ├── TemporaryFileManager.cs │ │ ├── TestData │ │ │ ├── NpmPackageJsonData │ │ │ │ ├── fresh_package.json │ │ │ │ ├── fresh_package_doublecolon.json │ │ │ │ ├── fresh_package_doublecomma.json │ │ │ │ ├── fresh_package_duplicateproperty.json │ │ │ │ ├── fresh_package_leadingbrace.json │ │ │ │ ├── fresh_package_leadingletter.json │ │ │ │ ├── fresh_package_leadingsquarebrace.json │ │ │ │ ├── fresh_package_missingcolon.json │ │ │ │ ├── fresh_package_missingcomma.json │ │ │ │ ├── fresh_package_missingleadingbrace.json │ │ │ │ ├── fresh_package_missingleadinglistbrace.json │ │ │ │ ├── fresh_package_missingleadingpropnamequote.json │ │ │ │ ├── fresh_package_missingonepropnamequote.json │ │ │ │ ├── fresh_package_missingpropnamequotes.json │ │ │ │ ├── fresh_package_missingtrailingbrace.json │ │ │ │ ├── fresh_package_missingtrailinglistbrace.json │ │ │ │ └── fresh_package_unescapedquote.json │ │ │ ├── NpmSearchData │ │ │ │ ├── NpmCache │ │ │ │ │ ├── packagecache.sqlite │ │ │ │ │ └── registry │ │ │ │ │ │ └── registrycache.sqlite │ │ │ │ ├── packagecache.min.json │ │ │ │ ├── since_packages.array.json │ │ │ │ ├── since_packages.object.json │ │ │ │ └── testpackagecache.sqlite │ │ │ └── fresh_package.json │ │ └── packages.config │ ├── Profiling.UI │ │ ├── ProfilerUITests.csproj │ │ ├── ProfilingTests.cs │ │ └── app.config │ ├── Profiling │ │ ├── Key.snk │ │ ├── LogParserTests.cs │ │ ├── ProfilerTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── TestAdapter.Tests │ │ ├── DefaultTestDiscovererTests.cs │ │ ├── TestAdapter.Tests.csproj │ │ └── TestProjectFactory.cs │ ├── TestAdapterTests │ │ ├── FrameworkDiscoverTest.cs │ │ ├── MockDiscoveryContext.cs │ │ ├── MockMessageLogger.cs │ │ ├── MockRunContext.cs │ │ ├── MockTestCaseDiscoverySink.cs │ │ ├── MockTestExecutionRecorder.cs │ │ ├── NodejsTestInfoTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestAdapterTests.csproj │ │ ├── TestExecutorTests.cs │ │ ├── TestInfo.cs │ │ └── app.config │ ├── TestData │ │ ├── ClientServerCode │ │ │ ├── BrowserDirectory │ │ │ │ └── browserCode.js │ │ │ ├── ClientServerCode.njsproj │ │ │ ├── ClientServerCode.sln │ │ │ ├── MixedDirectory │ │ │ │ ├── BrowserDirectory │ │ │ │ │ └── browserCode.js │ │ │ │ └── NodeDirectory │ │ │ │ │ └── NodeSubDirectory │ │ │ │ │ └── nodeCode.js │ │ │ ├── NodeDirectory │ │ │ │ └── NodeSubDirectory │ │ │ │ │ └── nodeCode.js │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ └── package.json │ │ ├── CloudProject.sln │ │ ├── CloudProject │ │ │ ├── CloudProject │ │ │ │ ├── CloudProject.ccproj │ │ │ │ ├── ServiceConfiguration.Cloud.cscfg │ │ │ │ ├── ServiceConfiguration.Local.cscfg │ │ │ │ └── ServiceDefinition.csdef │ │ │ ├── WebRole1 │ │ │ │ ├── README.md │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.config │ │ │ │ ├── WebRole1.njsproj │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ └── WorkerRole1 │ │ │ │ ├── README.md │ │ │ │ ├── WorkerRole1.njsproj │ │ │ │ ├── download.ps1 │ │ │ │ ├── node.cmd │ │ │ │ ├── package.json │ │ │ │ ├── server.js │ │ │ │ ├── setup_worker.cmd │ │ │ │ └── startup.js │ │ ├── ConsoleApplication1 │ │ │ ├── App.config │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── CopiedFolderWithItemsNotInProject │ │ │ │ ├── Class.cs │ │ │ │ └── Text.txt │ │ │ ├── CrossHierarchyCopy.cs │ │ │ ├── CrossHierarchyCut.cs │ │ │ ├── CrossHierarchyDragDropAfterCut.cs │ │ │ ├── CrossHierarchyFileDragAndDrop.cs │ │ │ ├── DoubleCrossHierarchy.cs │ │ │ ├── DragTwiceAndOverwrite.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── CopiedFiles │ │ │ └── Foo │ │ │ │ └── .gitignore │ │ ├── CopyPasteRenameProject │ │ │ ├── CopyPasteRenameJs │ │ │ │ ├── CopyPasteRenameJavaScript.njsproj │ │ │ │ ├── README.md │ │ │ │ ├── app.js │ │ │ │ └── package.json │ │ │ ├── CopyPasteRenameProject.sln │ │ │ └── CopyPasteRenameProject │ │ │ │ ├── CopyPasteRenameProjectTypeScript.njsproj │ │ │ │ ├── README.md │ │ │ │ ├── Scripts │ │ │ │ └── typings │ │ │ │ │ └── node │ │ │ │ │ └── node.d.ts │ │ │ │ ├── app.ts │ │ │ │ └── package.json │ │ ├── DebuggerProject │ │ │ ├── BreakAllTest.js │ │ │ ├── BreakpointBreakOn.js │ │ │ ├── BreakpointTest.js │ │ │ ├── BreakpointTest2.js │ │ │ ├── BreakpointTest3.js │ │ │ ├── ComplexExceptions.js │ │ │ ├── DebuggingDownloaded.js │ │ │ ├── DeepCallstack.js │ │ │ ├── Directory │ │ │ │ └── DuppedFilename.js │ │ │ ├── DuppedFilename.js │ │ │ ├── EnumChildTest.js │ │ │ ├── ExceptionInEvaluatedCode.js │ │ │ ├── ExceptionTypes.js │ │ │ ├── ExitException.js │ │ │ ├── ExitExplicit.js │ │ │ ├── ExitNormal.js │ │ │ ├── FixupBreakpointOnBlankLine.js │ │ │ ├── FixupBreakpointOnComment.js │ │ │ ├── FixupBreakpointOnFunction.js │ │ │ ├── FunctionPassedFewerThanTakenParms.js │ │ │ ├── GlobalsTest.js │ │ │ ├── HasRequires.js │ │ │ ├── HelloWorld.js │ │ │ ├── HelloWorldWithClosure.js │ │ │ ├── IsRequired.js │ │ │ ├── LocalsTest.js │ │ │ ├── LocalsTest2.js │ │ │ ├── LocalsTest3.js │ │ │ ├── LocalsTest4.js │ │ │ ├── NoException.js │ │ │ ├── NoRequires.js │ │ │ ├── PassedArgs.js │ │ │ ├── RequireExceptions.js │ │ │ ├── RequiresScriptsWithBreakpointFixup.js │ │ │ ├── RunForever.js │ │ │ ├── SimpleException.js │ │ │ ├── SpecialNumberLocalsTest.js │ │ │ ├── SteppingAccrossBreakPoints.js │ │ │ ├── SteppingAccrossTracePoints.js │ │ │ ├── SteppingAcrossCaughtExceptions.js │ │ │ ├── SteppingBasic.js │ │ │ ├── SteppingTest.js │ │ │ ├── SteppingTest2.js │ │ │ ├── SteppingTest3.js │ │ │ ├── SteppingTest4.js │ │ │ ├── SteppingTest5.js │ │ │ ├── SteppingTest6.js │ │ │ ├── SteppingTest7.js │ │ │ ├── SteppingTestBug503.js │ │ │ ├── SteppingTestBug507.js │ │ │ ├── SteppingTestBug508.js │ │ │ ├── SteppingTestBug509.js │ │ │ ├── ThrowsWithDeepCallstack.js │ │ │ ├── TypeScriptInheritApple.js │ │ │ ├── TypeScriptInheritApple.js.map │ │ │ ├── TypeScriptInheritApple.ts │ │ │ ├── TypeScriptInheritFruit.js │ │ │ ├── TypeScriptInheritFruit.js.map │ │ │ ├── TypeScriptInheritFruit.ts │ │ │ ├── TypeScriptInheritTest.js │ │ │ ├── TypeScriptInheritTest.js.map │ │ │ ├── TypeScriptInheritTest.ts │ │ │ ├── TypeScriptOut │ │ │ │ ├── TypeScriptTest.js │ │ │ │ └── TypeScriptTest.js.map │ │ │ ├── TypeScriptTest.js │ │ │ ├── TypeScriptTest.js.map │ │ │ ├── TypeScriptTest.ts │ │ │ ├── TypeScriptTest2.js │ │ │ ├── TypeScriptTest2.js.map │ │ │ ├── TypeScriptTest2.ts │ │ │ ├── TypeScriptTest3.js │ │ │ ├── TypeScriptTest3.js.map │ │ │ ├── TypeScriptTest3.ts │ │ │ ├── WellKnownHandledException.js │ │ │ ├── WellKnownUnHandledException.js │ │ │ └── node_modules │ │ │ │ └── mymod.js │ │ ├── HelloWorld │ │ │ ├── HelloWorld.njsproj │ │ │ ├── HelloWorld.sln │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── HelloWorld2 │ │ │ ├── HelloWorld2.njsproj │ │ │ ├── HelloWorld2.sln │ │ │ ├── README.md │ │ │ ├── TestFolder │ │ │ │ └── SubItem.js │ │ │ ├── TestFolder2 │ │ │ │ └── SubItem.js │ │ │ ├── TestFolder3 │ │ │ │ └── SubItem.js │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── HelloWorld3 │ │ │ ├── HelloWorld3.njsproj │ │ │ ├── HelloWorld3.sln │ │ │ ├── README.md │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ └── myapp.js │ │ │ │ └── mymod.js │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── HelloWorld4 │ │ │ ├── Baz │ │ │ │ └── .gitignore │ │ │ ├── node_modules │ │ │ │ └── .gitignore │ │ │ └── server.js │ │ ├── HelloWorld5 │ │ │ ├── README.md │ │ │ ├── TestFolder │ │ │ │ └── SubItem.js │ │ │ ├── TestFolderWith.Extension │ │ │ │ └── SubItem.js │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── HelloWorld6 │ │ │ ├── Baz │ │ │ │ └── .gitignore │ │ │ ├── bower_components │ │ │ │ └── .gitignore │ │ │ └── server.js │ │ ├── HelloWorldApp │ │ │ ├── HelloWorld.njsproj │ │ │ ├── HelloWorld.sln │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ └── package.json │ │ ├── HelloWorldOther │ │ │ ├── HelloWorld.njsproj │ │ │ ├── HelloWorld.sln │ │ │ ├── README.md │ │ │ ├── other.js │ │ │ └── package.json │ │ ├── HelloWorldTypeScript │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── server.ts │ │ ├── Jade │ │ │ ├── 001.pug │ │ │ ├── 001.pug.tokens │ │ │ ├── 002.pug │ │ │ ├── 002.pug.tokens │ │ │ ├── 003.pug │ │ │ ├── 003.pug.tokens │ │ │ ├── 004.pug │ │ │ ├── 004.pug.tokens │ │ │ ├── 005.pug │ │ │ ├── 005.pug.tokens │ │ │ ├── 006.pug │ │ │ ├── 006.pug.tokens │ │ │ ├── 007.pug │ │ │ ├── 007.pug.tokens │ │ │ ├── 008.pug │ │ │ ├── 008.pug.tokens │ │ │ ├── 009.pug │ │ │ ├── 009.pug.tokens │ │ │ ├── 010.pug │ │ │ ├── 010.pug.tokens │ │ │ ├── 011.pug │ │ │ ├── 011.pug.tokens │ │ │ ├── 012.pug │ │ │ ├── 012.pug.tokens │ │ │ ├── 013.pug │ │ │ ├── 013.pug.tokens │ │ │ ├── 014.pug │ │ │ ├── 014.pug.tokens │ │ │ ├── 015.pug │ │ │ ├── 015.pug.tokens │ │ │ ├── 016.pug │ │ │ ├── 016.pug.tokens │ │ │ ├── 017.pug │ │ │ ├── 017.pug.tokens │ │ │ ├── 018.pug │ │ │ ├── 018.pug.tokens │ │ │ ├── 019.pug │ │ │ ├── 019.pug.tokens │ │ │ ├── 020.pug │ │ │ ├── 020.pug.tokens │ │ │ ├── 021.pug │ │ │ ├── 021.pug.tokens │ │ │ ├── 022.pug │ │ │ ├── 022.pug.tokens │ │ │ ├── 023.pug │ │ │ └── 023.pug.tokens │ │ ├── NodeAppWithModule │ │ │ ├── NodeAppWithModule.sln │ │ │ └── NodeAppWithModule │ │ │ │ ├── NodeAppWithModule.njsproj │ │ │ │ ├── Web.cloud.config │ │ │ │ ├── Web.config │ │ │ │ ├── intellisensemod.js │ │ │ │ ├── mutatemod.js │ │ │ │ ├── mymod.js │ │ │ │ └── server.js │ │ ├── NodeAppWithModule2 │ │ │ ├── NodeAppWithModule.sln │ │ │ └── NodeAppWithModule │ │ │ │ ├── NodeAppWithModule.njsproj │ │ │ │ ├── Web.cloud.config │ │ │ │ ├── Web.config │ │ │ │ ├── intellisensemod.js │ │ │ │ ├── mutatemod.js │ │ │ │ ├── mymod.js │ │ │ │ └── server.js │ │ ├── NodejsProfileTest │ │ │ ├── JustMyCode.js │ │ │ ├── NodejsProfileTest.njsproj │ │ │ ├── NodejsProfileTest.sln │ │ │ ├── infiniteProfile.js │ │ │ └── program.js │ │ ├── NodejsProjectData │ │ │ ├── AbsolutePath.sln │ │ │ ├── AbsolutePath │ │ │ │ ├── AbsolutePath.njsproj │ │ │ │ └── server.js │ │ │ ├── AddExistingFolder.sln │ │ │ ├── AddExistingFolder │ │ │ │ ├── AddExistingFolder.njsproj │ │ │ │ ├── SubFolder │ │ │ │ │ └── TestFolder2 │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── TestFolder │ │ │ │ │ └── TestFile.txt │ │ │ │ └── server.js │ │ │ ├── AddFolderCopyAndPasteFile.sln │ │ │ ├── AddFolderCopyAndPasteFile │ │ │ │ ├── AddFolderCopyAndPasteFile.njsproj │ │ │ │ └── server.js │ │ │ ├── AddFolderExists.sln │ │ │ ├── AddFolderExists │ │ │ │ ├── AddFolderExists.njsproj │ │ │ │ ├── Y │ │ │ │ │ └── .gitignore │ │ │ │ └── server.js │ │ │ ├── ConsoleApplication1 │ │ │ │ ├── App.config │ │ │ │ ├── ConsoleApplication1.csproj │ │ │ │ ├── CopiedFolderWithItemsNotInProject │ │ │ │ │ ├── Class.cs │ │ │ │ │ └── Text.txt │ │ │ │ ├── CrossHierarchyCut.cs │ │ │ │ ├── CrossHierarchyFileDragAndDrop.cs │ │ │ │ ├── DoubleCrossHierarchy.cs │ │ │ │ ├── DragTwiceAndOverwrite.cs │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── CopiedFiles │ │ │ │ ├── Foo │ │ │ │ │ └── SomeOtherFile.js │ │ │ │ └── SomeFile.js │ │ │ ├── CopyAndPasteFolder.sln │ │ │ ├── CopyAndPasteFolder │ │ │ │ ├── CopyAndPasteFolder.njsproj │ │ │ │ ├── X │ │ │ │ │ └── file.js │ │ │ │ └── server.js │ │ │ ├── DebuggerProject │ │ │ │ └── LocalsTest.js │ │ │ ├── DeleteFile.sln │ │ │ ├── DeleteFile │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ └── server.js │ │ │ ├── DeleteLockedFolder.sln │ │ │ ├── DeleteLockedFolder │ │ │ │ ├── DeleteLockedFolder.njsproj │ │ │ │ ├── Folder │ │ │ │ │ └── Text.txt │ │ │ │ └── server.js │ │ │ ├── DragDropTest.sln │ │ │ ├── DragDropTest │ │ │ │ ├── DragDropTest.njsproj │ │ │ │ ├── TestFolder │ │ │ │ │ ├── SubItem.js │ │ │ │ │ ├── SubItem2.js │ │ │ │ │ └── SubItem3.js │ │ │ │ ├── TestFolder2 │ │ │ │ │ ├── SubFolder │ │ │ │ │ │ └── SubSubItem.js │ │ │ │ │ └── SubItem.js │ │ │ │ └── server.js │ │ │ ├── DuplicateItems.sln │ │ │ ├── DuplicateItems │ │ │ │ ├── A │ │ │ │ │ ├── B │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── DuplicateItems.njsproj │ │ │ │ └── server.js │ │ │ ├── FolderMultipleItems.sln │ │ │ ├── FolderMultipleItems │ │ │ │ ├── A │ │ │ │ │ ├── a.js │ │ │ │ │ └── b.js │ │ │ │ ├── FolderMultipleItems.njsproj │ │ │ │ └── server.js │ │ │ ├── HelloWorld.njsproj │ │ │ ├── HelloWorld.sln │ │ │ ├── HelloWorld │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ └── server.js │ │ │ ├── HelloWorld2.sln │ │ │ ├── HelloWorld2 │ │ │ │ ├── HelloWorld2.njsproj │ │ │ │ ├── TestFolder │ │ │ │ │ └── SubItem.js │ │ │ │ ├── TestFolder2 │ │ │ │ │ └── SubItem.js │ │ │ │ ├── TestFolder3 │ │ │ │ │ └── SubItem.js │ │ │ │ └── server.js │ │ │ ├── HelloWorld3.sln │ │ │ ├── LFN.njsproj │ │ │ ├── LinkedFile.js │ │ │ ├── LongFileNames.sln │ │ │ ├── LongFileNames │ │ │ │ └── server.js │ │ │ ├── MoveStartupFile.sln │ │ │ ├── MoveStartupFile │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ ├── TestDir │ │ │ │ │ └── .gitignore │ │ │ │ └── server.js │ │ │ ├── MovedIntoShowAllFiles │ │ │ │ └── Text.txt │ │ │ ├── MultiSelectCopyAndPaste.sln │ │ │ ├── MultiSelectCopyAndPaste │ │ │ │ ├── MultiSelectCopyAndPaste.njsproj │ │ │ │ ├── server.js │ │ │ │ ├── server2.js │ │ │ │ └── server3.js │ │ │ ├── RelativePaths.sln │ │ │ ├── RelativePaths │ │ │ │ └── RelativePaths.njsproj │ │ │ ├── RenameItemsTest.sln │ │ │ ├── RenameItemsTest │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ ├── Program.js │ │ │ │ ├── ProgramDelete.js │ │ │ │ ├── ProgramX.js │ │ │ │ ├── ProgramY.js │ │ │ │ ├── ProgramZ.js │ │ │ │ ├── SubFolder │ │ │ │ │ └── SubItem.js │ │ │ │ └── server.js │ │ │ ├── RenameItemsTestUI.sln │ │ │ ├── RenameItemsTestUI │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ ├── Sub1 │ │ │ │ │ └── Sub2 │ │ │ │ │ │ └── Foo.js │ │ │ │ └── server.js │ │ │ ├── RenameProjectTest.sln │ │ │ ├── RenameProjectTest │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ └── server.js │ │ │ ├── RenameProjectTestUI.sln │ │ │ ├── RenameProjectTestUI │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ ├── HelloWorldExisting.njsproj │ │ │ │ └── server.js │ │ │ ├── SaveAsUI.sln │ │ │ └── SaveAsUI │ │ │ │ ├── HelloWorld.njsproj │ │ │ │ └── server.js │ │ ├── NodejsProjectPropertiesTest │ │ │ ├── NodejsProjectPropertiesTest.sln │ │ │ └── NodejsProjectPropertiesTest │ │ │ │ ├── NodejsProjectPropertiesTest.njsproj │ │ │ │ ├── Web.cloud.config │ │ │ │ ├── Web.config │ │ │ │ ├── bin │ │ │ │ ├── ChangeConfig.ps1 │ │ │ │ ├── download.ps1 │ │ │ │ └── setup_web.cmd │ │ │ │ ├── server.js │ │ │ │ └── server2.js │ │ ├── NodejsTypeScriptProfileTest │ │ │ ├── NodejsProfileTest.njsproj │ │ │ ├── NodejsProfileTest.sln │ │ │ ├── program.js │ │ │ ├── program.js.map │ │ │ └── program.ts │ │ ├── NodejsTypeScriptProfileTestNeedsBuild │ │ │ ├── NodejsProfileTest.njsproj │ │ │ ├── NodejsProfileTest.sln │ │ │ └── program.ts │ │ ├── NodejsTypeScriptProfileTestWithErrors │ │ │ ├── NodejsProfileTest.njsproj │ │ │ ├── NodejsProfileTest.sln │ │ │ └── program.ts │ │ ├── Outlining │ │ │ ├── Outlining.sln │ │ │ └── Outlining │ │ │ │ ├── Outlining.njsproj │ │ │ │ ├── broken.js │ │ │ │ ├── nested.js │ │ │ │ └── toplevel.js │ │ ├── ProjectUpgrade │ │ │ └── EnvironmentVariables.njsproj │ │ ├── RequireTestApp │ │ │ ├── RequireTestApp.sln │ │ │ └── RequireTestApp │ │ │ │ ├── RequireTestApp.njsproj │ │ │ │ ├── baz │ │ │ │ └── dup.js │ │ │ │ ├── dup.js │ │ │ │ ├── indexfolder │ │ │ │ └── index.js │ │ │ │ ├── node_modules │ │ │ │ ├── bar │ │ │ │ │ ├── entry.js │ │ │ │ │ └── package.json │ │ │ │ ├── bar2 │ │ │ │ │ ├── package.json │ │ │ │ │ └── sub_folder │ │ │ │ │ │ └── entry.js │ │ │ │ ├── dup.js │ │ │ │ ├── foo │ │ │ │ │ ├── dup.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── dup.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── nested.js │ │ │ │ │ └── other.js │ │ │ │ └── mymod.js │ │ │ │ ├── recursive1.js │ │ │ │ ├── recursive2.js │ │ │ │ └── server.js │ │ └── TypeScriptMultfile │ │ │ ├── all.js │ │ │ ├── all.js.map │ │ │ ├── app.ts │ │ │ ├── file1.ts │ │ │ └── file2.ts │ ├── TestProjectAfter.settings │ ├── TestProjectBefore.settings │ ├── Utilities.Nodejs │ │ ├── MockClassificationTypeRegistryService.cs │ │ ├── NodejsTestData.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestUtilities.Nodejs.csproj │ │ └── app.config │ └── Utilities.UI │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TestUtilities.UI.Nodejs.csproj │ │ └── UI │ │ └── Nodejs │ │ ├── ComparePerfReports.cs │ │ ├── NodejsPerfExplorer.cs │ │ ├── NodejsPerfTarget.cs │ │ ├── NodejsPerfToolBar.cs │ │ └── NodejsVisualStudioApp.cs └── UnitTestAdapter.sln ├── README.md ├── RunTests.ps1 ├── SECURITY.md ├── appveyor.yml ├── azure-pipelines ├── build-insertion.yml ├── build.yml ├── release-deployment-prep.yml └── variables │ ├── BusinessGroupName.ps1 │ ├── DropRoot.ps1 │ ├── InsertAutoComplete.ps1 │ ├── InsertBuildPolicy.ps1 │ ├── InsertJsonValues.ps1 │ ├── InsertReviewers.ps1 │ ├── InsertTargetBranch.ps1 │ ├── LocLanguages.ps1 │ ├── ProfilingInputsDropName.ps1 │ ├── SymbolsFeatureName.ps1 │ ├── TeamName.ps1 │ ├── VstsDropNames.ps1 │ ├── _all.ps1 │ └── _define.ps1 ├── loc ├── lci │ └── .folder └── lcl │ ├── CHS │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── CHT │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── CSY │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── DEU │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── ESN │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── FRA │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── ITA │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── JPN │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── KOR │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── PLK │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── PTB │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ ├── RUS │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl │ └── TRK │ ├── Microsoft.NodejsTools.InteractiveWindow.dll.lcl │ ├── Microsoft.NodejsTools.Npm.dll.lcl │ ├── Microsoft.NodejsTools.ProjectWizard.dll.lcl │ └── Microsoft.NodejsTools.dll.lcl ├── nuget.config ├── package.json ├── signWhiteList.txt └── tools └── empty-powershell.ps1 /.eslintignore: -------------------------------------------------------------------------------- 1 | # Ignore d.ts files 2 | **/*.d.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/.gitignore -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | .hg 2 | .hgignore 3 | BuildOutput 4 | Python\TestResults 5 | -------------------------------------------------------------------------------- /Build/Common.Build.CSharp.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.CSharp.settings -------------------------------------------------------------------------------- /Build/Common.Build.CSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.CSharp.targets -------------------------------------------------------------------------------- /Build/Common.Build.Traversal.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.Traversal.targets -------------------------------------------------------------------------------- /Build/Common.Build.VSSDK.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.VSSDK.targets -------------------------------------------------------------------------------- /Build/Common.Build.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.settings -------------------------------------------------------------------------------- /Build/Common.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/Common.Build.targets -------------------------------------------------------------------------------- /Build/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/CustomDictionary.xml -------------------------------------------------------------------------------- /Build/FinalPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/FinalPublicKey.snk -------------------------------------------------------------------------------- /Build/default.14.0Exp.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/default.14.0Exp.testsettings -------------------------------------------------------------------------------- /Build/fileVersion.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/fileVersion.targets -------------------------------------------------------------------------------- /Build/xTVS.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Build/xTVS.ruleset -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/LICENSE -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Folder_6221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Folder_6221.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Folder_6221_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Folder_6221_24.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Folder_6222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Folder_6222.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Folder_6222_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Folder_6222_24.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/GenericPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/GenericPackage.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Images_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Images_32bit.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Images_32bit.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Launch_7018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Launch_7018.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Launch_7018_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Launch_7018_24.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/ProfilingCmdBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/ProfilingCmdBar.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/ProfilingTreeView.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PyFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PyFile.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PyProjectBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PyProjectBig.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonFile.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonImageList.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonImageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonImageList.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonProject.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonProjectBig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonProjectBig.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonWebSite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonWebSite.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/PythonWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/PythonWindowsForm.ico -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/ReplToolBarImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/ReplToolBarImages.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Stop_8817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Stop_8817.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Stop_8817_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Stop_8817_24.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Undo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Undo_16x.png -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/Undo_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/Undo_16x_24.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/completionset.bmp -------------------------------------------------------------------------------- /Common/Product/Icons/Dev15.0/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/Icons/Dev15.0/imagelis.bmp -------------------------------------------------------------------------------- /Common/Product/SharedProject/CommonConstants.VS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/CommonConstants.VS.cs -------------------------------------------------------------------------------- /Common/Product/SharedProject/CommonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/CommonConstants.cs -------------------------------------------------------------------------------- /Common/Product/SharedProject/CommonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/CommonUtils.cs -------------------------------------------------------------------------------- /Common/Product/SharedProject/ProcessOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/ProcessOutput.cs -------------------------------------------------------------------------------- /Common/Product/SharedProject/ProjectResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/ProjectResources.cs -------------------------------------------------------------------------------- /Common/Product/SharedProject/ProjectResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Product/SharedProject/ProjectResources.resx -------------------------------------------------------------------------------- /Common/Tests/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/CachedVsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/CachedVsInfo.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/HierarchyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/HierarchyExtensions.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/HierarchyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/HierarchyItem.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/IContentTypeMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/IContentTypeMetadata.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/IFocusable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/IFocusable.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/IMockPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/IMockPackage.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/LanguageServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/LanguageServiceInfo.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockCodeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockCodeWindow.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockCompletionBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockCompletionBroker.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockCompletionSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockCompletionSession.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockDTE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockDTE.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockDTEProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockDTEProperties.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockDTEProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockDTEProperty.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockDTESolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockDTESolution.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockDialog.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockEditorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockEditorOperations.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockGlyphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockGlyphService.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockIncrementalSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockIncrementalSearch.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockLocalRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockLocalRegistry.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockMessageBox.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockOutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockOutputWindow.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockOutputWindowPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockOutputWindowPane.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockQuickInfoBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockQuickInfoBroker.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockSmartTagBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockSmartTagBroker.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockSmartTagSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockSmartTagSession.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockToolWindow.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockTreeNode.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVs.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsDebugger.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsExtensibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsExtensibility.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsMonitorSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsMonitorSelection.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsProfferCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsProfferCommands.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsServiceProvider.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsShell.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsSolution.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTestExtensions.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTests.csproj -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTextLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTextLines.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTextManager.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTextView.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsTrackSelectionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsTrackSelectionEx.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/MockVsUIShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/MockVsUIShell.cs -------------------------------------------------------------------------------- /Common/Tests/MockVsTests/ProjectAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/MockVsTests/ProjectAggregator.cs -------------------------------------------------------------------------------- /Common/Tests/Prerequisites/VSTestHost.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Prerequisites/VSTestHost.msi -------------------------------------------------------------------------------- /Common/Tests/SccPackage/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/Guids.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/PkgCmdId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/PkgCmdId.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/SccPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/SccPackage.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/SccPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/SccPackage.vsct -------------------------------------------------------------------------------- /Common/Tests/SccPackage/TestSccPackage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/TestSccPackage.csproj -------------------------------------------------------------------------------- /Common/Tests/SccPackage/TestSccProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/TestSccProvider.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/VSPackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/VSPackage.Designer.cs -------------------------------------------------------------------------------- /Common/Tests/SccPackage/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SccPackage/VSPackage.resx -------------------------------------------------------------------------------- /Common/Tests/SharedProjectTests/LinkedFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SharedProjectTests/LinkedFileTests.cs -------------------------------------------------------------------------------- /Common/Tests/SharedProjectTests/ShowAllFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SharedProjectTests/ShowAllFiles.cs -------------------------------------------------------------------------------- /Common/Tests/SharedProjectTests/SourceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/SharedProjectTests/SourceControl.cs -------------------------------------------------------------------------------- /Common/Tests/TestProjectAfter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/TestProjectAfter.settings -------------------------------------------------------------------------------- /Common/Tests/TestProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/TestProjectBefore.settings -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/TestUtilities.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/TestUtilities.UI.csproj -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/AddReferenceDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/AddReferenceDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/AutomationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/AutomationDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/AutomationWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/AutomationWrapper.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Button.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/CheckBox.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/CheckListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/CheckListView.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ComboBox.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/CredentialsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/CredentialsDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/DetailPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/DetailPane.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/EditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/EditorWindow.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ExceptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ExceptionButton.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Header.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/InteractiveWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/InteractiveWindow.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Keyboard.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ListBox.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ListBoxItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ListItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ListView.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Menu.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/MenuItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Mouse.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/NavigateToDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/NavigateToDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/NewItemDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/NewItemDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/NewProjectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/NewProjectDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ObjectBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ObjectBrowser.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/OpenProjectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/OpenProjectDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/RemoveItemDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/RemoveItemDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/SaveDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/SaveDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/SaveProjectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/SaveProjectDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/SelectFolderDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/SelectFolderDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/Table.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TestExtensions.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TextBox.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/ToolsOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/ToolsOptionsDialog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TreeNode.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TreeView.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TypeBrowserPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TypeBrowserPane.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/TypeNavigatorPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/TypeNavigatorPane.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities.UI/UI/VisualStudioApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities.UI/UI/VisualStudioApp.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/AssertListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/AssertListener.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/AssertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/AssertUtil.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/AzureUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/AzureUtility.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Classification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Classification.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/FileUtils.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IAddExistingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IAddExistingItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IAddNewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IAddNewItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IEditor.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IOverwriteFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IOverwriteFile.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/ITreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/ITreeNode.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IVisualStudioInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IVisualStudioInstance.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/IWarningLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/IWarningLogger.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/MessageBoxButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/MessageBoxButton.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockActivityLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockActivityLog.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockBufferGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockBufferGraph.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockComponentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockComponentModel.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockContentType.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockGlyphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockGlyphService.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockMappingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockMappingPoint.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockReplWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockReplWindow.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockSettingsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockSettingsStore.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextBuffer.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextCaret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextCaret.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextChange.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextDocument.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextEdit.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextOptions.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextSelection.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextSnapshot.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextVersion.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextView.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTextViewModel.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTrackingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTrackingPoint.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockTrackingSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockTrackingSpan.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Mocks/MockVsShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Mocks/MockVsShell.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/NativeMethods.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/OutputReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/OutputReceiver.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/ProcessScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/ProcessScope.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/SessionHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/SessionHolder.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/SharedProject/CustomItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/SharedProject/CustomItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/SharedProject/FolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/SharedProject/FolderItem.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/TestData.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/TestExtensions.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/TestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/TestMethod.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/TestUtilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/TestUtilities.csproj -------------------------------------------------------------------------------- /Common/Tests/Utilities/VCCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/VCCompiler.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/WebDownloadUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/WebDownloadUtility.cs -------------------------------------------------------------------------------- /Common/Tests/Utilities/WpfProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Common/Tests/Utilities/WpfProxy.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/LICENSE -------------------------------------------------------------------------------- /Nodejs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/.editorconfig -------------------------------------------------------------------------------- /Nodejs/Extras/Commands/OpenReplWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Commands/OpenReplWindowCommand.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Extensions.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Extras.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Extras.csproj -------------------------------------------------------------------------------- /Nodejs/Extras/ExtrasKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/ExtrasKey.snk -------------------------------------------------------------------------------- /Nodejs/Extras/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Images_32bit.png -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Classifier/ICompositeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Classifier/ICompositeToken.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Classifier/JadeClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Classifier/JadeClassifier.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Editor/CommonEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Editor/CommonEditorFactory.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/EntityTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/EntityTable.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/ITextSnapshotProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/ITextSnapshotProvider.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/IdleTimeAsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/IdleTimeAsyncTask.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/JadeContentTypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/JadeContentTypeDefinition.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/JadeEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/JadeEditorFactory.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/JadeLanguageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/JadeLanguageInfo.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Outlining/OutlineRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Outlining/OutlineRegion.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Outlining/OutliningTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Outlining/OutliningTagger.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/ServiceManager.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/CharacterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/CharacterStream.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/Def/ICompositeTextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/Def/ICompositeTextRange.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/Def/ITextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/Def/ITextProvider.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/Def/ITextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/Def/ITextRange.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/TextChangeArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/TextChangeArgs.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/TextHelper.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/TextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/TextRange.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/TextRangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/TextRangeCollection.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/TextStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/TextStream.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Text/textchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Text/textchange.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/TextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/TextProvider.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/TextUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/TextUtility.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/TimeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/TimeUtility.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/JadeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/JadeToken.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/JadeTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/JadeTokenType.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/JadeTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/JadeTokenizer.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/FilterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/FilterState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/HtmlState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/HtmlState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/ScriptState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/ScriptState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/StyleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/StyleState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/TagState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/TagState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokenizer/States/TextState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokenizer/States/TextState.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokens/IToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokens/IToken.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokens/ITokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokens/ITokenizer.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokens/Token.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Jade/Tokens/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Jade/Tokens/Tokenizer.cs -------------------------------------------------------------------------------- /Nodejs/Extras/NodeExtrasPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/NodeExtrasPackage.cs -------------------------------------------------------------------------------- /Nodejs/Extras/NodeJSInteractiveWindow_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/NodeJSInteractiveWindow_16x.png -------------------------------------------------------------------------------- /Nodejs/Extras/NodejsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/NodejsConstants.cs -------------------------------------------------------------------------------- /Nodejs/Extras/NodejsTools.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/NodejsTools.vsct -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Key.snk -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/NativeMethods.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/NodeProfiling.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/NodeProfiling.vsct -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/NodejsProfilingPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/NodejsProfilingPackage.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/PkgCmdID.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Profiling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Profiling.csproj -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Profiling/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Profiling/Profile.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Profiling/SessionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Profiling/SessionNode.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Profiling/SessionsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Profiling/SessionsNode.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/ProfilingGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/ProfilingGuids.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.Designer.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.cs.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.de.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.es.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.fr.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.it.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.ja.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.ko.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.pl.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.pt-BR.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.ru.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.tr.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/Resources.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/Resources.zh-Hant.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.cs.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.de.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.es.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.fr.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.it.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.ja.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.ko.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.pl.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.pt-BR.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.ru.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.tr.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.zh-Hans.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/VSPackage.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/VSPackage.zh-Hant.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Profiling/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Profiling/app.config -------------------------------------------------------------------------------- /Nodejs/Extras/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Properties/Resources.resx -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/InfoReplCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/InfoReplCommand.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/InteractiveWindowColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/InteractiveWindowColor.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/InteractiveWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/InteractiveWindowCommand.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/InteractiveWindowContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/InteractiveWindowContentType.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/InteractiveWindowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/InteractiveWindowProvider.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/NodejsReplEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/NodejsReplEvaluator.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/NpmReplCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/NpmReplCommand.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/ReplOutputClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/ReplOutputClassifier.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/ReplOutputClassifierProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/ReplOutputClassifierProvider.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Repl/SaveReplCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Repl/SaveReplCommand.cs -------------------------------------------------------------------------------- /Nodejs/Extras/Theme/contrast.vstheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Theme/contrast.vstheme -------------------------------------------------------------------------------- /Nodejs/Extras/Theme/dark.vstheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Theme/dark.vstheme -------------------------------------------------------------------------------- /Nodejs/Extras/Theme/make_theme_pkgdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/Theme/make_theme_pkgdef.py -------------------------------------------------------------------------------- /Nodejs/Extras/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/VSPackage.resx -------------------------------------------------------------------------------- /Nodejs/Extras/VsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/VsExtensions.cs -------------------------------------------------------------------------------- /Nodejs/Extras/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Nodejs/Extras/visualstudio_nodejs_repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Extras/visualstudio_nodejs_repl.js -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/EsprojFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/EsprojFileModel.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/EsprojFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/EsprojFileWriter.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/JspsProjectCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/JspsProjectCreator.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/LaunchJson/Compound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/LaunchJson/Compound.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/LaunchJson/LaunchJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/LaunchJson/LaunchJson.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/LaunchJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/LaunchJsonWriter.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/Logger.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Jsps/NugetConfigWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Jsps/NugetConfigWriter.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/MigrateToJsps.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/MigrateToJsps.csproj -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/MigrationLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/MigrationLibrary.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Ntvs/NjsprojFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Ntvs/NjsprojFileModel.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Ntvs/NjsprojFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Ntvs/NjsprojFileReader.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Ntvs/ProjectGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Ntvs/ProjectGuids.cs -------------------------------------------------------------------------------- /Nodejs/MigrateToJsps/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/MigrateToJsps/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/NodejsExtras.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/NodejsExtras.sln -------------------------------------------------------------------------------- /Nodejs/NodejsTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/NodejsTools.sln -------------------------------------------------------------------------------- /Nodejs/NodejsTools.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/NodejsTools.sln.DotSettings -------------------------------------------------------------------------------- /Nodejs/Prerequisites/DisableSkipVerification.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Prerequisites/DisableSkipVerification.reg -------------------------------------------------------------------------------- /Nodejs/Prerequisites/EnableSkipVerification.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Prerequisites/EnableSkipVerification.reg -------------------------------------------------------------------------------- /Nodejs/Prerequisites/EnableSkipVerificationX86.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Prerequisites/EnableSkipVerificationX86.reg -------------------------------------------------------------------------------- /Nodejs/Prerequisites/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Prerequisites/generate.js -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AboutBoxPNG/NodeJS_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AboutBoxPNG/NodeJS_64x.png -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AddNewItemICO/CSS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AddNewItemICO/CSS.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AddNewItemICO/HTML.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AddNewItemICO/HTML.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AddNewItemICO/JADEScript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AddNewItemICO/JADEScript.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AddNewItemICO/StylusSheet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AddNewItemICO/StylusSheet.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/AddNewItemICO/xml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/AddNewItemICO/xml.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/Images_32bit.png -------------------------------------------------------------------------------- /Nodejs/Product/Icons/JScript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/JScript.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/NodejsImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/NodejsImageList.bmp -------------------------------------------------------------------------------- /Nodejs/Product/Icons/NodejsProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/NodejsProject.ico -------------------------------------------------------------------------------- /Nodejs/Product/Icons/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Nodejs/Product/Icons/ProfilingCmdBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/ProfilingCmdBar.png -------------------------------------------------------------------------------- /Nodejs/Product/Icons/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Nodejs/Product/Icons/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/ProfilingTreeView.png -------------------------------------------------------------------------------- /Nodejs/Product/Icons/ReplToolBarImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/ReplToolBarImages.bmp -------------------------------------------------------------------------------- /Nodejs/Product/Icons/SharedProjectImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Icons/SharedProjectImageList.bmp -------------------------------------------------------------------------------- /Nodejs/Product/LogConverter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/LogConverter/App.config -------------------------------------------------------------------------------- /Nodejs/Product/LogConverter/EtlNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/LogConverter/EtlNativeMethods.cs -------------------------------------------------------------------------------- /Nodejs/Product/LogConverter/LogConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/LogConverter/LogConverter.csproj -------------------------------------------------------------------------------- /Nodejs/Product/LogConverter/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/LogConverter/NativeMethods.cs -------------------------------------------------------------------------------- /Nodejs/Product/LogConverter/TraceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/LogConverter/TraceLog.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/BaseNodeProjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/BaseNodeProjectFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Credits.txt -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Debugger/NodeProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Debugger/NodeProcess.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Diagnostics/HierarchyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Diagnostics/HierarchyItem.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Extensions.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/FeatureFlags.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/FeatureFlags.pkgdef -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/GeneratedHelpAboutVersion.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/GeneratedHelpAboutVersion.tt -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Guids.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ImportWizardResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/ImportWizardResources.resx -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/JsonListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/JsonListener.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Key.snk -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/License.html -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Logging/LiveLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Logging/LiveLogger.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/MigrateToJspsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/MigrateToJspsResources.resx -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Nodejs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Nodejs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Nodejs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Nodejs.csproj -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsConstants.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsPackage.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsProject.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsProjectConfig.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsProjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsProjectFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NodejsTools.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NodejsTools.vsct -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NpmUI/ErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NpmUI/ErrorHelper.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/NpmUI/NpmWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/NpmUI/NpmWorker.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/OpenFolder.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/OpenFolder.pkgdef -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Options/NodejsDialogPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Options/NodejsDialogPage.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/PkgCmdId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/PkgCmdId.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/AbstractNpmNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/AbstractNpmNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/Attributes.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/DependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/DependencyNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/LocalModulesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/LocalModulesNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NodeLibraryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NodeLibraryNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NodeModulesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NodeModulesNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NodejsFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NodejsFileNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NodejsFolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NodejsFolderNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NodejsProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NodejsProjectNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/NpmNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/NpmNodeProperties.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Project/ProjectResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Project/ProjectResources.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/AzureNodejsWorker/startup.js: -------------------------------------------------------------------------------- 1 | /** Placeholder for role startup **/ 2 | 'use strict'; 3 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/NodejsConsoleApp/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | console.log('Hello world'); 4 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureNodejsWorker/startup.ts: -------------------------------------------------------------------------------- 1 | /** Placeholder for role startup **/ -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptConsoleApp/app.ts: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptVuejsApp/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProjectTemplates/VuejsApp/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/ProvideLanguageTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/ProvideLanguageTemplates.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Resources.Designer.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Resources.resx -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Attributes.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Command.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/DataObject.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/DebugTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/DebugTimer.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/EnumBSTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/EnumBSTR.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/FileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/FileNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/FolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/FolderNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/IdleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/IdleManager.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Interfaces.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Output.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/OutputGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/OutputGroup.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/ProjectNode.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/PublishFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/PublishFile.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/UIThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/UIThread.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Utilities.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/VsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/VsCommands.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/WaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/WaitDialog.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedProject/Wpf/Dialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedProject/Wpf/Dialogs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SharedResources.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SharedResources.proj -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/SourceMapping/SourceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/SourceMapping/SourceMap.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Telemetry/TelemetryEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Telemetry/TelemetryEvents.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Telemetry/TelemetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Telemetry/TelemetryHelper.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyCss/EmptyCss.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyJs/EmptyJs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyJson/EmptyJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyJsx/EmptyJsx.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyLess/EmptyLess.less: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyTs/EmptyTs.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/EmptyXml/EmptyXml.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Templates/Files/TypeScriptJSX/EmptyTsx.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/VSPackage.resx -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/VSTemplateStore.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/VSTemplateStore.pkgdef -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/VsMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/VsMenus.cs -------------------------------------------------------------------------------- /Nodejs/Product/Nodejs/Workspace/BaseFileScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Nodejs/Workspace/BaseFileScanner.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/DependencyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/DependencyType.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/DependencyUrlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/DependencyUrlType.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IBundledDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IBundledDependencies.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IDependencies.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IDependency.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IDependencyUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IDependencyUrl.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IFiles.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IHomepages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IHomepages.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IKeywords.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/ILicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/ILicense.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/ILicenses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/ILicenses.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/INodeModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/INodeModules.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/INpmCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/INpmCommander.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/INpmController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/INpmController.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/INpmLogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/INpmLogSource.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/INpmPathProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/INpmPathProvider.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPackage.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPackageCatalogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPackageCatalogFilter.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPackageJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPackageJson.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPackageJsonScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPackageJsonScript.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPerson.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IPkgStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IPkgStringArray.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/IRootPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/IRootPackage.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NativeMethods.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NodeModuleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NodeModuleBuilder.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/Npm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/Npm.csproj -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmArgumentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmArgumentBuilder.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmCatalogEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmCatalogEmptyException.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmCommandCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmCommandCompletedEventArgs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmCommandStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmCommandStartedEventArgs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmControllerFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmExceptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmExceptionEventArgs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmExecutionException.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmHelpers.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmLogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmLogEventArgs.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/NpmNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/NpmNotFoundException.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/PackageComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/PackageComparer.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/PackageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/PackageFlags.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/PackageJsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/PackageJsonException.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/PackageJsonFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/PackageJsonFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/Resources.Designer.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/Resources.resx -------------------------------------------------------------------------------- /Nodejs/Product/Npm/RootPackageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/RootPackageFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/AbstractNodeModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/AbstractNodeModules.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/AbstractNpmLogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/AbstractNpmLogSource.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/BundledDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/BundledDependencies.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Dependencies.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Dependency.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/DependencyUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/DependencyUrl.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/GenericNpmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/GenericNpmCommand.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Homepages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Homepages.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Keywords.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NodeModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NodeModules.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NodeModulesProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NodeModulesProxy.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmCommand.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmCommander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmCommander.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmController.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmInstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmInstallCommand.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmUninstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmUninstallCommand.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/NpmUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/NpmUpdateCommand.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Package.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/PackageJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/PackageJson.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/PackageJsonScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/PackageJsonScript.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/PackageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/PackageProxy.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/Person.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/PkgFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/PkgFiles.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/PkgStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/PkgStringArray.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SPI/RootPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SPI/RootPackage.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SemverVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SemverVersion.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SemverVersionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SemverVersionComparer.cs -------------------------------------------------------------------------------- /Nodejs/Product/Npm/SemverVersionFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Npm/SemverVersionFormatException.cs -------------------------------------------------------------------------------- /Nodejs/Product/Performance1.psess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/Performance1.psess -------------------------------------------------------------------------------- /Nodejs/Product/PressAnyKey/PressAnyKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/PressAnyKey/PressAnyKey.cs -------------------------------------------------------------------------------- /Nodejs/Product/PressAnyKey/PressAnyKey.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/PressAnyKey/PressAnyKey.csproj -------------------------------------------------------------------------------- /Nodejs/Product/ProjectAfter.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectAfter.targets -------------------------------------------------------------------------------- /Nodejs/Product/ProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectBefore.settings -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/CloudServiceWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/CloudServiceWizard.cs -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/ImportWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/ImportWizard.cs -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/NpmWizardExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/NpmWizardExtension.cs -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/ProjectWizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/ProjectWizard.csproj -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/UnitTestFileWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/UnitTestFileWizard.cs -------------------------------------------------------------------------------- /Nodejs/Product/ProjectWizard/WizardHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ProjectWizard/WizardHelpers.cs -------------------------------------------------------------------------------- /Nodejs/Product/TargetsVsix/TargetsVsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TargetsVsix/TargetsVsix.csproj -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/AssemblyResolver.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/ProjectTestExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/ProjectTestExecutor.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/SerializationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/SerializationHelpers.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/TestAdapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/TestAdapter.csproj -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/TestDiscovererWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/TestDiscovererWorker.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/TestExecutorWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/TestExecutorWorker.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/TestFrameworkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/TestFrameworkFactory.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapter/UnitTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapter/UnitTestSettings.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapterImpl/TestContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapterImpl/TestContainer.cs -------------------------------------------------------------------------------- /Nodejs/Product/TestAdapterImpl/VisualStudioApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TestAdapterImpl/VisualStudioApp.cs -------------------------------------------------------------------------------- /Nodejs/Product/ToolProjectAfter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ToolProjectAfter.settings -------------------------------------------------------------------------------- /Nodejs/Product/ToolProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/ToolProjectBefore.settings -------------------------------------------------------------------------------- /Nodejs/Product/TypeScript/TypeScriptHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/TypeScript/TypeScriptHelpers.cs -------------------------------------------------------------------------------- /Nodejs/Product/VsixProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/VsixProjectBefore.settings -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/Global.asax -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/Global.asax.cs -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/WebRole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/WebRole.csproj -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/WebSocketProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/WebSocketProxy.cs -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/WebSocketProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/WebSocketProxy.html -------------------------------------------------------------------------------- /Nodejs/Product/WebRole/WebSocketProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Product/WebRole/WebSocketProxyBase.cs -------------------------------------------------------------------------------- /Nodejs/Setup/NodejsSetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Setup/NodejsSetup.sln -------------------------------------------------------------------------------- /Nodejs/Setup/NodejsTools.vsmanproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Setup/NodejsTools.vsmanproj -------------------------------------------------------------------------------- /Nodejs/Setup/SetupProjectAfter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Setup/SetupProjectAfter.settings -------------------------------------------------------------------------------- /Nodejs/Setup/SetupProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Setup/SetupProjectBefore.settings -------------------------------------------------------------------------------- /Nodejs/Setup/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Setup/packages.config -------------------------------------------------------------------------------- /Nodejs/Tests/AzurePublishing.UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/AzurePublishing.UI/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/AzureProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/AzureProjectTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/BasicProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/BasicProjectTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/ClassificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/ClassificationTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/DebuggerUITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/DebuggerUITests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/JadeUITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/JadeUITests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/Key.snk -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/Nodejs.Tests.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/Nodejs.Tests.UI.csproj -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/NodejsBasicProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/NodejsBasicProjectTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/NodejsProjectProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/NodejsProjectProcessor.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/NodejsProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/NodejsProjectTest.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/NodejsTestDefintions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/NodejsTestDefintions.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/NpmUITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/NpmUITests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/OptionHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/OptionHolder.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/ProjectPropertiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/ProjectPropertiesTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/ProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/ProjectTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/ReplWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/ReplWindowTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/UITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/UITests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core.UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core.UI/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/Core/AzureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/AzureTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/BaselineCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/BaselineCompare.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Debugger/BaseDebuggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Debugger/BaseDebuggerTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Debugger/DebuggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Debugger/DebuggerTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Debugger/InfrastructureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Debugger/InfrastructureTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/ImportWizardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/ImportWizardTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/JadeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/JadeTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Key.snk -------------------------------------------------------------------------------- /Nodejs/Tests/Core/LauncherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/LauncherTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Mocks/MockNodeVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Mocks/MockNodeVariable.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Mocks/MockTextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Mocks/MockTextBuffer.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/NodePathResolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/NodePathResolutionTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/NodejsTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/NodejsTests.csproj -------------------------------------------------------------------------------- /Nodejs/Tests/Core/ProjectUpgradeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/ProjectUpgradeTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/ReplWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/ReplWindowTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Resources.Designer.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/Resources.resx -------------------------------------------------------------------------------- /Nodejs/Tests/Core/SerializationTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/SerializationTestData.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/SourceMapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/SourceMapTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/TemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/TemplateTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/TestNodejsReplSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/TestNodejsReplSite.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/packages.config -------------------------------------------------------------------------------- /Nodejs/Tests/Core/ruleFormattingTests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Core/ruleFormattingTests.json -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/MockProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/MockProjects/MockProjects.sln -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithAngularTests/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | console.log('Hello world'); 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithAngularTests/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithAngularTests/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithAngularTests/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithTestsConfiguredOnProject/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | console.log('Hello world'); 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/NodeAppWithTestsConfiguredPerFile/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | console.log('Hello world'); 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/MockProjects/reactappwithjestteststypescript/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/AbstractPackageJsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/AbstractPackageJsonTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/MaxPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/MaxPathTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/MockPackageCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/MockPackageCatalog.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/MockPackageJsonSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/MockPackageJsonSource.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/ModuleHierarchyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/ModuleHierarchyTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/NpmSearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/NpmSearchTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/NpmTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/NpmTests.csproj -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/PackageJsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/PackageJsonTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/PersonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/PersonTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/SemverVersionTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/SemverVersionTestHelper.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/SemverVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/SemverVersionTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/TemporaryFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/TemporaryFileManager.cs -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/TestData/fresh_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/TestData/fresh_package.json -------------------------------------------------------------------------------- /Nodejs/Tests/NpmTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/NpmTests/packages.config -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling.UI/ProfilerUITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling.UI/ProfilerUITests.csproj -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling.UI/ProfilingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling.UI/ProfilingTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling.UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling.UI/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling/Key.snk -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling/LogParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling/LogParserTests.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling/ProfilerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling/ProfilerTests.csproj -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Profiling/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Profiling/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/TestAdapterTests/MockRunContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestAdapterTests/MockRunContext.cs -------------------------------------------------------------------------------- /Nodejs/Tests/TestAdapterTests/TestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestAdapterTests/TestInfo.cs -------------------------------------------------------------------------------- /Nodejs/Tests/TestAdapterTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestAdapterTests/app.config -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/BrowserDirectory/browserCode.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/MixedDirectory/BrowserDirectory/browserCode.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/MixedDirectory/NodeDirectory/NodeSubDirectory/nodeCode.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/NodeDirectory/NodeSubDirectory/nodeCode.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/README.md: -------------------------------------------------------------------------------- 1 | # NodejsConsoleApp105 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ClientServerCode/app.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CloudProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/CloudProject.sln -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CloudProject/WebRole1/README.md: -------------------------------------------------------------------------------- 1 | # WebRole1 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CloudProject/WorkerRole1/README.md: -------------------------------------------------------------------------------- 1 | # WorkerRole1 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CloudProject/WorkerRole1/node.cmd: -------------------------------------------------------------------------------- 1 | node.exe %1 %2 %3 -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CloudProject/WorkerRole1/startup.js: -------------------------------------------------------------------------------- 1 | /** Placeholder for role startup **/ -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/ConsoleApplication1/CopiedFolderWithItemsNotInProject/Text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CopiedFiles/Foo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CopyPasteRenameProject/CopyPasteRenameJs/README.md: -------------------------------------------------------------------------------- 1 | # CopyPasteRenameJs 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CopyPasteRenameProject/CopyPasteRenameJs/app.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CopyPasteRenameProject/CopyPasteRenameProject/README.md: -------------------------------------------------------------------------------- 1 | # CopyPasteRenameProject 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/CopyPasteRenameProject/CopyPasteRenameProject/app.ts: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/BreakpointTest.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/DebuggingDownloaded.js: -------------------------------------------------------------------------------- 1 | console.log("Done"); 2 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/Directory/DuppedFilename.js: -------------------------------------------------------------------------------- 1 | function f() { 2 | console.log('hi'); 3 | } 4 | exports.f = f -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/ExitNormal.js: -------------------------------------------------------------------------------- 1 | console.log("exit normally"); 2 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/LocalsTest2.js: -------------------------------------------------------------------------------- 1 | function f(x) { 2 | } 3 | 4 | f(42); 5 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/LocalsTest3.js: -------------------------------------------------------------------------------- 1 | function f(x) { 2 | var y = 'abc' 3 | } 4 | 5 | f(42); 6 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/NoRequires.js: -------------------------------------------------------------------------------- 1 | console.log("No requires"); 2 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/SteppingTestBug508.js: -------------------------------------------------------------------------------- 1 | console.log('abc'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/TypeScriptTest3.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); 2 | //# sourceMappingURL=TypeScriptTest3.js.map 3 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/TypeScriptTest3.ts: -------------------------------------------------------------------------------- 1 | console.log('Hello world'); -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/DebuggerProject/node_modules/mymod.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld/package.json -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld2/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld2 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld2/package.json -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld2/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld2/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld3/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld3 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld3/node_modules/.bin/myapp.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld3/package.json -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld3/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld3/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld4/Baz/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld4/node_modules/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld4/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld4/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld5/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld2 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld5/package.json -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld5/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld5/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld6/Baz/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld6/bower_components/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorld6/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorld6/server.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldApp/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorldApp/app.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorldApp/package.json -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldOther/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldOther/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/HelloWorldOther/other.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldTypeScript/README.md: -------------------------------------------------------------------------------- 1 | # HelloWorld 2 | 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/HelloWorldTypeScript/server.ts: -------------------------------------------------------------------------------- 1 | console.log('hi!'); 2 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/001.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/001.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/001.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/001.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/002.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/002.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/002.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/002.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/003.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/003.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/003.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/003.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/004.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/004.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/004.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/004.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/005.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/005.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/005.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/005.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/006.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/006.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/006.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/006.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/007.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/007.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/007.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/007.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/008.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/008.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/008.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/008.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/009.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/009.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/009.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/009.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/010.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/010.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/010.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/010.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/011.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/011.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/011.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/011.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/012.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/012.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/012.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/012.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/013.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/013.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/013.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/013.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/014.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/014.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/014.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/014.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/015.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/015.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/015.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/015.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/016.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/016.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/016.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/016.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/017.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/017.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/017.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/017.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/018.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/018.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/018.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/018.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/019.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/019.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/019.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/019.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/020.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/020.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/020.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/020.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/021.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/021.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/021.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/021.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/022.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/022.pug -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/022.pug.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Jade/022.pug.tokens -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/023.pug: -------------------------------------------------------------------------------- 1 | block content 2 | . .jumbotron 3 | 4 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Jade/023.pug.tokens: -------------------------------------------------------------------------------- 1 | TagKeyword [0...5] 2 | ClassLiteral [19...29] -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProfileTest/infiniteProfile.js: -------------------------------------------------------------------------------- 1 | while (true) { 2 | console.log('hi!'); 3 | } -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/AddExistingFolder/SubFolder/TestFolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/AddExistingFolder/TestFolder/TestFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/AddFolderExists/Y/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/ConsoleApplication1/CopiedFolderWithItemsNotInProject/Text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/CopiedFiles/Foo/SomeOtherFile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/CopiedFiles/SomeFile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/CopyAndPasteFolder/X/file.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DeleteLockedFolder/Folder/Text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DragDropTest/TestFolder/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DragDropTest/TestFolder/SubItem2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DragDropTest/TestFolder/SubItem3.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DragDropTest/TestFolder2/SubFolder/SubSubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DragDropTest/TestFolder2/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DuplicateItems/A/B/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DuplicateItems/A/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/DuplicateItems/A/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/FolderMultipleItems/A/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/FolderMultipleItems/A/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/HelloWorld2/TestFolder/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/HelloWorld2/TestFolder2/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/HelloWorld2/TestFolder3/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/LinkedFile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/MoveStartupFile/TestDir/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/MovedIntoShowAllFiles/Text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/RenameItemsTest/SubFolder/SubItem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/NodejsProjectData/RenameItemsTestUI/Sub1/Sub2/Foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/Outlining/Outlining.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/Outlining/Outlining.sln -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/RequireTestApp/RequireTestApp/indexfolder/index.js: -------------------------------------------------------------------------------- 1 | exports.indexfolder = function(a, b, c) { 2 | } -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/TypeScriptMultfile/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/TypeScriptMultfile/all.js -------------------------------------------------------------------------------- /Nodejs/Tests/TestData/TypeScriptMultfile/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestData/TypeScriptMultfile/app.ts -------------------------------------------------------------------------------- /Nodejs/Tests/TestProjectAfter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestProjectAfter.settings -------------------------------------------------------------------------------- /Nodejs/Tests/TestProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/TestProjectBefore.settings -------------------------------------------------------------------------------- /Nodejs/Tests/Utilities.Nodejs/NodejsTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Utilities.Nodejs/NodejsTestData.cs -------------------------------------------------------------------------------- /Nodejs/Tests/Utilities.Nodejs/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/Tests/Utilities.Nodejs/app.config -------------------------------------------------------------------------------- /Nodejs/UnitTestAdapter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/Nodejs/UnitTestAdapter.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/README.md -------------------------------------------------------------------------------- /RunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/RunTests.ps1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines/build-insertion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/build-insertion.yml -------------------------------------------------------------------------------- /azure-pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/build.yml -------------------------------------------------------------------------------- /azure-pipelines/release-deployment-prep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/release-deployment-prep.yml -------------------------------------------------------------------------------- /azure-pipelines/variables/BusinessGroupName.ps1: -------------------------------------------------------------------------------- 1 | 'Visual Studio - VS Core' -------------------------------------------------------------------------------- /azure-pipelines/variables/DropRoot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/DropRoot.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/InsertAutoComplete.ps1: -------------------------------------------------------------------------------- 1 | 'true' -------------------------------------------------------------------------------- /azure-pipelines/variables/InsertBuildPolicy.ps1: -------------------------------------------------------------------------------- 1 | 'Request Perf DDRITs' -------------------------------------------------------------------------------- /azure-pipelines/variables/InsertJsonValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/InsertJsonValues.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/InsertReviewers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/InsertReviewers.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/InsertTargetBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/InsertTargetBranch.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/LocLanguages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/LocLanguages.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/SymbolsFeatureName.ps1: -------------------------------------------------------------------------------- 1 | 'NTVS' -------------------------------------------------------------------------------- /azure-pipelines/variables/TeamName.ps1: -------------------------------------------------------------------------------- 1 | 'Node Tools for Visual Studio' -------------------------------------------------------------------------------- /azure-pipelines/variables/VstsDropNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/VstsDropNames.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/_all.ps1 -------------------------------------------------------------------------------- /azure-pipelines/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/azure-pipelines/variables/_define.ps1 -------------------------------------------------------------------------------- /loc/lci/.folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loc/lcl/CHS/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CHS/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CHS/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CHS/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CHT/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CHT/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CHT/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CHT/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CSY/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CSY/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CSY/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/CSY/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/DEU/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/DEU/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/DEU/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/DEU/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ESN/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/ESN/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ESN/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/ESN/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/FRA/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/FRA/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/FRA/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/FRA/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ITA/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/ITA/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ITA/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/ITA/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/JPN/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/JPN/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/JPN/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/JPN/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/KOR/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/KOR/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/KOR/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/KOR/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PLK/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/PLK/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PLK/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/PLK/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PTB/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/PTB/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PTB/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/PTB/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/RUS/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/RUS/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/RUS/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/RUS/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/TRK/Microsoft.NodejsTools.Npm.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/TRK/Microsoft.NodejsTools.Npm.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/TRK/Microsoft.NodejsTools.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/loc/lcl/TRK/Microsoft.NodejsTools.dll.lcl -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/nuget.config -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/package.json -------------------------------------------------------------------------------- /signWhiteList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/nodejstools/HEAD/signWhiteList.txt -------------------------------------------------------------------------------- /tools/empty-powershell.ps1: -------------------------------------------------------------------------------- 1 | '' --------------------------------------------------------------------------------