├── .gitattributes ├── .github └── workflows │ ├── cmdlets.ci.yml │ ├── cmdlets.production.yml │ ├── hosts.ci.yml │ ├── vs.yml │ ├── vscode.ci.yml │ ├── vscode.production.yml │ ├── winformdesigner.ci.yml │ └── winformdesigner.production.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Build ├── AssemblyInfoCommon.cs ├── AssemblyVersion.cs ├── Common.Build.CSharp.settings ├── Common.Build.settings ├── Common.Build.targets ├── FinalPublicKey.snk ├── Microsoft.MSXML.dll ├── Microsoft.Windows.Design.Host.dll ├── ProjectAfter.settings ├── ProjectBefore.settings ├── PythonTools.csproj ├── sign.ps1 └── vswhere.exe ├── Common ├── Analysis │ ├── AnalysisIssue.cs │ ├── AnalysisRequest.cs │ ├── AnalysisResult.cs │ ├── AnalysisRule.cs │ ├── AnalysisRules.cs │ ├── AnalysisSuggestion.cs │ ├── ClassDefinition.cs │ └── FunctionDefinition.cs ├── AsyncHelper.cs ├── Common.csproj ├── ConsoleControl.cs ├── Constants.cs ├── Debugging │ └── DebugEngineConstants.cs ├── DependencyUtilities.cs ├── EventArgs.cs ├── Explorer │ ├── ConversionFactory.cs │ ├── ExplorerExecutionHelper.cs │ ├── IPowerShellCommand.cs │ ├── IPowerShellCommandMetadata.cs │ ├── IPowerShellModule.cs │ ├── IPowerShellParameterMetadata.cs │ ├── IPowerShellParameterSetMetadata.cs │ ├── ParameterType.cs │ ├── PowerShellCommand.cs │ ├── PowerShellCommandMetadata.cs │ ├── PowerShellModule.cs │ ├── PowerShellParameterMetadata.cs │ └── PowerShellParameterSetMetadata.cs ├── IPowerShellHostClientService.cs ├── IPowershellService.cs ├── IntelliSense │ ├── CommandCompletionHelper.cs │ ├── EmptyScriptExtent.cs │ └── EmptyScriptPosition.cs ├── Logging │ ├── DiagnosticConfiguration.cs │ ├── ILog.cs │ ├── Log.cs │ └── LogManager.cs ├── PowerShellLocator.cs ├── Resources.Designer.cs ├── Resources.resx ├── ServiceManagement │ ├── DebuggingContract │ │ ├── CallStack.cs │ │ ├── ChoiceItem.cs │ │ ├── DebugScenarioEnum.cs │ │ ├── DebuggerBreakpointUpdatedEventArgs.cs │ │ ├── DebuggerStoppedEventArgs.cs │ │ ├── IDebugEngineCallback.cs │ │ ├── IPowershellDebuggingService.cs │ │ ├── PowerShellRunTerminatingException.cs │ │ ├── PowershellBreakpoint.cs │ │ └── VsKeyInfo.cs │ ├── ExplorerContract │ │ ├── IPowerShellExplorerService.cs │ │ └── IPowerShellExplorerServiceCallback.cs │ ├── IAnalysisService.cs │ ├── IntelliSenseContract │ │ ├── CompletionItem.cs │ │ ├── CompletionResultList.cs │ │ └── IPowershellIntelliSenseService.cs │ ├── PowerShellRawHostOptions.cs │ └── PowershellHostServiceExceptionDetails.cs ├── StringExtensions.cs └── packages.lock.json ├── FormDesigner.Generator ├── FormDesigner.Generator.csproj ├── FormField.cs ├── FormGenerator.cs └── packages.lock.json ├── FormDesigner.Test ├── CSharpAstVisitorTest.cs ├── FormDesigner.Test.csproj ├── FormGeneratorTest.cs ├── FormTest.cs └── packages.lock.json ├── FormDesigner ├── App.ico ├── AssemblyInfo.cs ├── Clipboard.cs ├── CodeDom │ ├── CodeDomAstVisitor.cs │ ├── CodeDomProviderFactory.cs │ ├── CommandLineCodeDomProvider.cs │ ├── DebugCodeGenerator.cs │ └── PowerShellCodeDomProvider.cs ├── DesignerHost │ ├── DesignSite.cs │ ├── DesignerHost.cs │ ├── MegaDesignerTransaction.cs │ └── SelectionService.cs ├── EventTab.cs ├── FormDesigner.Common.csproj ├── ILanguage.cs ├── Languages │ ├── Languages.cs │ └── PowerShell │ │ ├── PowerShellEventBindingService.cs │ │ └── PowerShellLanguage.cs ├── MenuCommandService.cs ├── NameCreationService.cs ├── PowerShellResourceFileGenerator.cs ├── PowerShellWindowsForm.ico ├── ResourceService.cs ├── ToolboxService.cs ├── TypeResolutionService.cs ├── UIService.cs ├── app.config ├── events.bmp ├── frmMain.cs ├── frmMain.resx └── packages.config ├── HostInjection ├── AddTextDocumentTextCommand.cs ├── AstExtensions.cs ├── AstNode.cs ├── Certificate.cs ├── Container.cs ├── Decompiler.cs ├── FormGeneratorService.cs ├── GetCompletionItemCommand.cs ├── GetTerminalCommand.cs ├── GetTextDocumentCommand.cs ├── GetTextDocumentTextCommand.cs ├── GetTextEditorCommand.cs ├── HoverService.cs ├── ICodeConversionService.cs ├── IFormGeneratorService.cs ├── IPackagingService.cs ├── IPoshToolsServer.cs ├── IServerLogger.cs ├── Item.cs ├── MeasureBlockCommand.cs ├── MeasureScriptCommand.cs ├── Models.cs ├── Models │ ├── CompletionItem.cs │ ├── DecorationAttachment.cs │ ├── GridView.cs │ ├── Hover.cs │ ├── Job.cs │ ├── PPTRunspace.cs │ ├── PSHostProcess.cs │ ├── Performance.cs │ ├── Position.cs │ ├── Range.cs │ ├── RapidSenseOptions.cs │ ├── Reflection.cs │ ├── Session.cs │ ├── Terminal.cs │ ├── TextDocument.cs │ ├── TextEditor.cs │ ├── TreeItem.cs │ └── TreeView.cs ├── Module.cs ├── NewPositionCommand.cs ├── NewRangeCommand.cs ├── NewTreeItemCommand.cs ├── OpenTextDocumentCommand.cs ├── OutGridViewCommand.cs ├── ParseErrorItem.cs ├── PerformanceMonitor.cs ├── PipeLogger.cs ├── PoshToolsServer.cs ├── PowerShellProTools.Common.csproj ├── PowerShellProTools.VSCode.psd1 ├── PowerShellProTools.VSCode.psm1 ├── Profiling │ ├── CallTreeNode.cs │ ├── EnumerableExtensions.cs │ ├── Instrumentation.cs │ ├── ProfilingResult.cs │ ├── ProfilingSession.cs │ ├── SequencePoint.cs │ ├── Step.cs │ └── Timing.cs ├── RapidSenseService.cs ├── Refactoring │ ├── CodeGenAst │ │ ├── CodeStringBuilder.cs │ │ ├── Condition.cs │ │ ├── Function.cs │ │ ├── ICodeBuilder.cs │ │ ├── ICodeGenAst.cs │ │ ├── If.cs │ │ ├── MethodInvoke.cs │ │ ├── ParamBlock.cs │ │ ├── Parameter.cs │ │ ├── ParameterSet.cs │ │ └── RawText.cs │ ├── ConvertToDollarUnder.cs │ ├── ConvertToMultilineCommand.cs │ ├── ConvertToPsItem.cs │ ├── ConvertToSplat.cs │ ├── ExportModuleMember.cs │ ├── ExtractFile.cs │ ├── ExtractFunction.cs │ ├── ExtractVariable.cs │ ├── GenerateFunctionFromUsage.cs │ ├── GenerateProxyFunction.cs │ ├── IRefactoring.cs │ ├── IntroduceUsing.cs │ ├── IntroduceVariableForSubstring.cs │ ├── RefactorService.cs │ ├── RenameSymbol.cs │ ├── Reorder.cs │ ├── SplitPipe.cs │ └── WrapDotNetMethod.cs ├── RegisterTreeViewCommand.cs ├── RemoteParser.cs ├── RemoveTextDocumentTextCommand.cs ├── RemoveTextEditorCommand.cs ├── SendTerminalTextCommand.cs ├── ServerConsoleLogger.cs ├── SetStatusBarMessageCommand.cs ├── SetTextEditorDecorationCommand.cs ├── ShowInputBoxCommand.cs ├── ShowMessageCommand.cs ├── ShowQuickPickCommand.cs ├── StartPoshToolsServerCommand.cs ├── TreeViewService.cs ├── VSCodeCmdlet.cs ├── VSCodeHelpers.cs ├── WorkspaceAnalysisService.cs └── packages.lock.json ├── Icons ├── Dev10.0 │ ├── GenericPackage.ico │ ├── Images_32bit.bmp │ ├── IronPythonWPFApplication.ico │ ├── IronPythonWpfWindow.ico │ ├── Package.ico │ ├── ProfilingCmdBar.bmp │ ├── ProfilingTreeView.bmp │ ├── ProfilingTreeView.png │ ├── PyFile.png │ ├── PyProjectBig.png │ ├── PythonEmptyApplication.ico │ ├── PythonFile.ico │ ├── PythonImageList.bmp │ ├── PythonPackageIcons.bmp │ ├── PythonProject.ico │ ├── PythonProjectBig.ico │ ├── PythonWebSite.ico │ ├── PythonWindowsForm.ico │ ├── Refactoring_Commands.bmp │ ├── ReplToolBarImages.png │ ├── completionset.bmp │ └── imagelis.bmp ├── Dev11.0 │ ├── Clearwindowcontent_6304.png │ ├── Clearwindowcontent_6304_24.bmp │ ├── ExitRemoteDebugger_16x_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 │ ├── StartRemoteDebugger_16x_24.bmp │ ├── Stop_8817.png │ ├── Stop_8817_24.bmp │ ├── Undo_16x.png │ ├── Undo_16x_24.bmp │ ├── completionset.bmp │ └── imagelis.bmp ├── Dev12.0 │ ├── Clearwindowcontent_6304.png │ ├── Clearwindowcontent_6304_24.bmp │ ├── ExitRemoteDebugger_16x_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 │ ├── StartRemoteDebugger_16x_24.bmp │ ├── Stop_8817.png │ ├── Stop_8817_24.bmp │ ├── Undo_16x.png │ ├── Undo_16x_24.bmp │ ├── completionset.bmp │ └── imagelis.bmp └── Dev14.0 │ ├── Clearwindowcontent_6304.png │ ├── Clearwindowcontent_6304_24.bmp │ ├── ExitRemoteDebugger_16x_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 │ ├── StartRemoteDebugger_16x_24.bmp │ ├── Stop_8817.png │ ├── Stop_8817_24.bmp │ ├── Undo_16x.png │ ├── Undo_16x_24.bmp │ ├── completionset.bmp │ └── imagelis.bmp ├── IronmanPowerShellHost ├── Executors │ ├── DefaultConsoleExecutor.cs │ ├── ExecutorFactory.cs │ └── IExecutor.cs ├── IronmanPSHost.cs ├── IronmanPSHostUserInterface.cs ├── IronmanPowerShellHost.csproj ├── Program.cs ├── ResourceLoader.cs ├── ResourceSet.cs ├── TestConfig.cs ├── build.ps1 ├── host.manifest.json ├── packages.lock.json └── pslogo.ico ├── IronmanWinFormPowerShellHost ├── Form1.Designer.cs ├── Form1.cs ├── IronmanWinFormPowerShellHost.csproj └── Program.cs ├── LICENSE ├── PSScriptPad.Common ├── PSObjectTreeItemAdapter.cs ├── PSScriptPad.Common.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── PowerShell.HostService.Console ├── PowerShell.HostService.Console.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── PowerShellProTools.Host.Tests ├── PowerShellProTools.Host.Tests.csproj ├── RapidSenseServiceTest.cs ├── Refactoring │ ├── ConvertToMultiLineCommandTests.cs │ ├── ConvertToSplatTests.cs │ ├── ExportModuleMemberTests.cs │ ├── ExtractFileTests.cs │ ├── ExtractFunctionTests.cs │ ├── ExtractVariableTest.cs │ ├── GenerateFunctionFromUsageTests.cs │ ├── IntroduceUsingNamespaceTests.cs │ ├── ReorderTest.cs │ └── SplitPipeTests.cs └── packages.lock.json ├── PowerShellProTools.Host ├── .vscode │ ├── launch.json │ └── tasks.json ├── PackagingService.cs ├── PowerShellProTools.Host.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── global.json └── packages.lock.json ├── PowerShellProTools.SharedCommands ├── DteManager.cs ├── GetPoshToolsVariableCommand.cs ├── OutPoshToolsVariableCommand.cs ├── ParentProcessWatcher.cs ├── PowerShellProTools.SharedCommands.csproj └── Variable.cs ├── PowerShellTools.2022 ├── Microsoft.Windows.Design.Host.dll ├── PowerShellTools.15.0.imagemanifest ├── PowerShellTools.2022.GeneratedMSBuildEditorConfig.editorconfig ├── PowerShellTools.2022.csproj ├── PowerShellTools.targets ├── PowerShellTools.vsct ├── PowerShellToolsColors.pkgdef ├── ReplWindow.vsct ├── Resources │ ├── DataIcon.png │ ├── IMSLogo.png │ ├── Images.png │ ├── Images_0.png │ ├── Images_1.png │ ├── Images_2.png │ ├── Images_3.png │ ├── Images_4.png │ ├── Images_5.png │ ├── ModuleIcon.png │ ├── ModuleProject.pdn │ ├── Package.ico │ ├── PowerShell.ico │ ├── PowerShellInteractiveWindow_16x.png │ ├── Project.pdn │ ├── ProjectIcon.png │ ├── Project_16.bmp │ ├── ScriptIcon.png │ ├── TestIcon.png │ ├── Thumbs.db │ ├── VariablesCommand.png │ ├── VariablesPackage.ico │ ├── completionset.bmp │ ├── powershell.png │ ├── powershell_icon.png │ └── settings.png ├── ToolWindows │ └── Icons │ │ ├── HelpApplication_16x.png │ │ ├── Key_16x.png │ │ ├── Link_16x.png │ │ ├── Save_16x.png │ │ └── ps-logo.png ├── license.txt ├── packages.lock.json ├── prebuild.ps1 ├── preview.png └── source.extension.vsixmanifest ├── PowerShellTools.HostService.UnitTest ├── PowerShellTools.HostService.UnitTest.csproj ├── PowershellIntelliSenseServiceTest.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── PowerShellTools.HostService.x86 ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PowerShellTools.HostService.x86.csproj ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── PowerShellTools.HostService ├── App.xaml ├── App.xaml.cs ├── ConsoleManager.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PowerShellServiceHostBehaviorAttribute.cs ├── PowerShellTools.HostService.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources.Designer.cs ├── Resources.resx ├── ServiceCommon.cs ├── ServiceManagement │ ├── Debugging │ │ ├── DteManager.cs │ │ ├── PowerShellDebuggingService.cs │ │ ├── PowerShellDebuggingServiceAttachUtilities.cs │ │ ├── PowerShellDebuggingServiceEventHandlers.cs │ │ ├── PowerShellDebuggingServiceUtilities40.cs │ │ ├── PowerShellRawHost.cs │ │ ├── PowershellBreakpointRecord.cs │ │ ├── PowershellDebuggingServiceUtilities.cs │ │ ├── PowershellHost.cs │ │ └── PowershellServiceHost.cs │ ├── Explorer │ │ └── PowerShellExplorerService.cs │ └── IntelliSense │ │ └── PowerShellIntelliSenseService.cs └── packages.config ├── PowerShellTools.MSBuild ├── PowerShellTools.MSBuild.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellTools.Module ├── GetVisualStudioServiceCommand.cs ├── PoshToolsCmdlet.cs ├── PowerShellTools.Module.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellTools.PublicContract ├── IPowershellService.cs ├── PowerShellTools.Contracts.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellTools.Repl.Shared ├── PowerShellTools.Repl.Shared.projitems ├── PowerShellTools.Repl.Shared.shproj └── Resources │ ├── PowerShellInteractiveWindow_16x.png │ └── ReplToolBarImages.png ├── PowerShellTools.Shared ├── Arguments.cs ├── AstUtilities.cs ├── Classification │ ├── ClassificationType.cs │ ├── Classifier.cs │ ├── ClassifierServices.cs │ ├── HighlightMatchedBracesFormatDefinition.cs │ ├── HighlightMatchedBracesTag.cs │ ├── IPowerShellTokenizationService.cs │ ├── PowerShellBraceMatchingTagger.cs │ ├── PowerShellBraceMatchingTaggerProvider.cs │ ├── PowerShellClassifier.cs │ ├── PowerShellClassifierProvider.cs │ ├── PowerShellEditorFactory.cs │ ├── PowerShellErrorTagger.cs │ ├── PowerShellErrorTaggerProvider.cs │ ├── PowerShellOutliningTagger.cs │ ├── PowerShellOutliningTaggerProvider.cs │ ├── PowerShellParseUtilities.cs │ ├── PowerShellTokenizationService.cs │ ├── ProfilingTagger.cs │ └── ScriptAnalysisTagger.cs ├── Commands │ ├── ExecuteAsScriptCommand.cs │ ├── ExecuteFromEditorContextMenuCommand.cs │ ├── ExecuteFromSolutionExplorerContextMenuCommand.cs │ ├── ExecuteSelectionCommand.cs │ ├── ExecuteSelectionCommandToolbar.cs │ ├── ExecuteWithParametersAsScriptCommand.cs │ ├── ExecuteWithParametersAsScriptFromSolutionExplorerCommand.cs │ ├── FormatCommand.cs │ ├── GenerateWinFormCommand.cs │ ├── ICommand.cs │ ├── OpenDebugReplCommand.cs │ ├── OpenExplorerCommand.cs │ ├── PacakgeScript.cs │ ├── ProfileScriptCommand.cs │ ├── ScriptParameterResult.cs │ ├── SwitchPowerShellVersionCommand.cs │ └── UserInterface │ │ ├── ConfigurableBoolToVisibilityConveter.cs │ │ ├── Converters │ │ ├── ByteValueConverter.cs │ │ ├── ErrorIconConverter.cs │ │ ├── IntValueConverter.cs │ │ └── LongValueConverter.cs │ │ ├── DataTypeConstants.cs │ │ ├── ParameterEditorHelper.cs │ │ ├── ParameterEditorModel.cs │ │ ├── ParameterEditorTemplateSelector.cs │ │ ├── ParameterEditorView.xaml │ │ ├── ParameterEditorView.xaml.cs │ │ ├── ParameterEditorViewModel.cs │ │ ├── ParameterType.cs │ │ ├── ParameterValueComparer.cs │ │ ├── Resources │ │ ├── StatusAnnotations_Invalid_color_16x.png │ │ └── Warning_yellow_7231_16x16.png │ │ ├── ScriptParameter.cs │ │ ├── ScriptParameterViewModel.cs │ │ └── ValidationResult.cs ├── Constants.cs ├── Controls │ ├── ViewModelCommand.cs │ ├── WaterMark.cs │ └── WatermarkAdorner.cs ├── CredentialUI │ ├── CredentialsDialog.cs │ ├── NativeCredentialsUI.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SecureStringDialog.xaml │ ├── SecureStringDialog.xaml.cs │ └── SecureStringDialogViewModel.cs ├── DebugEngine │ ├── BreakpointManager.cs │ ├── DebugEngineInternalException.cs │ ├── DebugEventManager.cs │ ├── DebugServiceEventsHandlerProxy.cs │ ├── Definitions │ │ ├── Com.cs │ │ ├── Enums.cs │ │ ├── Guids.cs │ │ └── Hresult.cs │ ├── Engine.cs │ ├── Engine │ │ ├── EngineUtils.cs │ │ └── OperationThread.cs │ ├── EngineEvents.cs │ ├── HostUi.cs │ ├── IRunspaceProvider.cs │ ├── Impl │ │ └── AD7Enums.cs │ ├── NativeMethods.cs │ ├── PInvoke.cs │ ├── PendingBreakpoint.cs │ ├── PowerShellTools.DebugEngine.csproj │ ├── PrivateReflectionDynamicObject.cs │ ├── PromptUI │ │ ├── ChoiceButtonItem.cs │ │ ├── ReadHostPromptDialog.xaml │ │ ├── ReadHostPromptDialog.xaml.cs │ │ ├── ReadHostPromptDialogViewModel.cs │ │ ├── ReadHostPromptForChoicesView.xaml │ │ ├── ReadHostPromptForChoicesView.xaml.cs │ │ └── ReadHostPromptForChoicesViewModel.cs │ ├── Remote │ │ ├── IPowerShellToolsPortSupplier.cs │ │ ├── RemoteDebugPort.cs │ │ ├── RemoteDebugPortSupplier.cs │ │ ├── RemoteEnumDebugProcess.cs │ │ ├── RemoteEnumDebugPrograms.cs │ │ ├── RemotePortPicker.cs │ │ ├── RemoteUnsecuredDebugPortSupplier.cs │ │ └── RemoteUnsecuredPortPicker.cs │ ├── ResourceStrings.Designer.cs │ ├── ResourceStrings.resx │ ├── ScirptProgramNode.cs │ ├── ScriptBreakpoint.cs │ ├── ScriptDebugProcess.cs │ ├── ScriptDebugger.cs │ ├── ScriptDocumentContext.cs │ ├── ScriptProgramProvider.cs │ ├── ScriptProperty.cs │ └── ScriptStackFrame.cs ├── EditorImports.cs ├── Explorer │ ├── Controls │ │ ├── BindingProxy.cs │ │ ├── Command.cs │ │ ├── CommandListView.cs │ │ ├── CommandListViewItem.cs │ │ ├── CommandPreview.cs │ │ ├── HostControl.cs │ │ ├── ObservableList.cs │ │ ├── ObservableObject.cs │ │ ├── OptionTemplateSelector.cs │ │ ├── OptionsPanel.xaml │ │ ├── OptionsPanel.xaml.cs │ │ ├── ParameterEditorTemplateSelector.cs │ │ ├── ScrollViewerCorrector.cs │ │ ├── SearchableTextBox.cs │ │ ├── ViewModel.cs │ │ ├── ViewModelCommand.cs │ │ └── VsShellDialogWindow.cs │ ├── Converters │ │ ├── ByteValueConverter.cs │ │ ├── IntValueConverter.cs │ │ ├── LongValueConverter.cs │ │ └── ModuleNameConverter.cs │ ├── DataProvider │ │ └── DataProvider.cs │ ├── Helpers │ │ ├── ClipboardHelper.cs │ │ ├── DTEHelper.cs │ │ ├── DragDropHelper.cs │ │ ├── Extensions.cs │ │ ├── MouseDoubleClickBehaviour.cs │ │ ├── NotifiyTaskCompletion.cs │ │ └── WpfHelper.cs │ ├── Interfaces │ │ ├── IDataProvider.cs │ │ ├── IDialog.cs │ │ ├── IHostWindow.cs │ │ ├── IHostWindowContent.cs │ │ └── ISearchTaskTarget.cs │ ├── Options │ │ ├── OptionModel.cs │ │ ├── OptionSet.cs │ │ ├── OptionType.cs │ │ └── PSParameterEditorOptionSet.cs │ ├── Parameter │ │ ├── CommandFormatStyle.cs │ │ ├── CommandFormatter.cs │ │ ├── CommandFormatterOptions.cs │ │ ├── CommandModel.cs │ │ ├── CommandModelFactory.cs │ │ ├── CommonParameterModel.cs │ │ └── ParameterModel.cs │ ├── Search │ │ └── SearchTask.cs │ ├── Themes │ │ ├── Generic.xaml │ │ └── ThemeResources.cs │ └── UI │ │ ├── Generic.xaml │ │ ├── PSCommandDetails.xaml │ │ ├── PSCommandDetails.xaml.cs │ │ ├── PSCommandDetailsViewModel.cs │ │ ├── PSCommandExplorer.xaml │ │ ├── PSCommandExplorer.xaml.cs │ │ ├── PSCommandExplorerViewModel.cs │ │ ├── PSCommandExplorerWindow.cs │ │ ├── PSParameterEditor.xaml │ │ ├── PSParameterEditor.xaml.cs │ │ ├── PSParameterEditorViewModel.cs │ │ ├── ParameterEditor.xaml │ │ ├── ParameterEditor.xaml.cs │ │ └── ParameterEditorViewModel.cs ├── ExplorerServiceEventsHandlerProxy.cs ├── FormDesigner │ ├── DocDataExtensions.cs │ └── PSCodeDomProvider.cs ├── GlobalSuppressions.cs ├── Guids.cs ├── IVisualStudio.cs ├── Intellisense │ ├── EdgeTrackingMode.cs │ ├── IntelliSenseManager.cs │ ├── IntellisenseController.cs │ ├── IntellisenseControllerProvider.cs │ ├── PowerShellCompletionSource.cs │ ├── PowerShellCompletionSourceProvider.cs │ ├── ProvideBraceCompletion.cs │ ├── QuickInfoProvider.cs │ ├── TabCompleteSession.cs │ └── Utilities.cs ├── LanguageService │ ├── BraceCompletion │ │ ├── BraceCompletionContext.cs │ │ ├── BraceCompletionContextProvider.cs │ │ └── BraceKind.cs │ ├── BreakpointValidation │ │ ├── AstDataTypeConstants.cs │ │ ├── BreakpointDisplayStyle.cs │ │ ├── BreakpointPositionInfo.cs │ │ ├── BreakpointValidationHelper.cs │ │ └── BreakpointValidationService.cs │ ├── CodeWindowManager.cs │ ├── DropDownBar │ │ ├── DropDownBarClient.cs │ │ ├── EntryInfoEnums.cs │ │ ├── FunctionDefinitionEntryInfo.cs │ │ ├── IDropDownEntryInfo.cs │ │ └── ScriptEntryInfo.cs │ ├── EditFilter.cs │ ├── EditorExtensions.cs │ ├── IndentUtilities.cs │ ├── NavigationExtensions.cs │ ├── PowerShellLanaguagePreferences.cs │ ├── PowerShellLanguageInfo.cs │ ├── SmartIndent.cs │ ├── SmartIndentProvider.cs │ ├── TextViewFilter.cs │ └── TodoWindowTaskProvider.cs ├── MSBuild │ └── ResourceSingleFileGenerator.cs ├── ObjectExtensions.cs ├── ObservableObject.cs ├── Options │ ├── AdvancedOptionsPane.cs │ ├── AdvancedOptionsPaneControl.Designer.cs │ ├── AdvancedOptionsPaneControl.cs │ ├── AdvancedOptionsPaneControl.resx │ ├── AnalysisOptions.cs │ ├── BaseOptionModel.cs │ ├── BaseOptionPage.cs │ ├── BitnessEventArgs.cs │ ├── BitnessOption.cs │ ├── DiagnosticOptions.cs │ ├── DialogPageProvider.cs │ ├── GeneralOptions.cs │ ├── GeneralOptionsControl.Designer.cs │ ├── GeneralOptionsControl.cs │ └── GeneralOptionsControl.resx ├── PSExtensions.cs ├── PSToken.cs ├── PackageProperties.cs ├── PowerShellConstants.cs ├── PowerShellTools.Shared.projitems ├── PowerShellTools.Shared.shproj ├── PowerShellToolsColors.pkgdef ├── PowerShellToolsPackage.cs ├── PowerShellToolsProcessHost.exe.config ├── ProToolsPackage.cs ├── ProToolsPackage.resx ├── Project │ ├── DeveloperActivityAttribute.cs │ ├── ImageListIndex.cs │ ├── Images │ │ ├── Application.xaml │ │ └── PowerShellMonikers.cs │ ├── LocDisplayNameAttribute.cs │ ├── PSBuildTask.cs │ ├── PowerShellCodeDomProvider.cs │ ├── PowerShellConfigProvider.cs │ ├── PowerShellFileNode.cs │ ├── PowerShellFileNodeProperties.cs │ ├── PowerShellLibraryManager.cs │ ├── PowerShellNonCodeFileNode.cs │ ├── PowerShellProjectConfig.cs │ ├── PowerShellProjectFactory.cs │ ├── PowerShellProjectLauncher.cs │ ├── PowerShellProjectNode.cs │ ├── PowerShellProjectNodeProperties.cs │ ├── PowerShellProjectPackage.cs │ ├── ProjectConstants.cs │ ├── PropertyPages │ │ ├── AdvancedPropertyPage.cs │ │ ├── AdvancedPropertyPage.xaml │ │ ├── AdvancedPropertyPage.xaml.cs │ │ ├── AdvancedPropertyPageViewModel.cs │ │ ├── AdvanvedPropertyPageControl.Designer.cs │ │ ├── AdvanvedPropertyPageControl.cs │ │ ├── AdvanvedPropertyPageControl.resx │ │ ├── BuildEventPropertyPage.cs │ │ ├── BuildEventPropertyPageControl.Designer.cs │ │ ├── BuildEventPropertyPageControl.cs │ │ ├── BuildEventPropertyPageControl.resx │ │ ├── DebugPropertyPage.cs │ │ ├── DebugPropertyPageControl.Designer.cs │ │ ├── DebugPropertyPageControl.cs │ │ ├── DebugPropertyPageControl.resx │ │ ├── GeneralPropertyPage.cs │ │ ├── GeneralPropertyPageControl.Designer.cs │ │ ├── GeneralPropertyPageControl.cs │ │ ├── GeneralPropertyPageControl.resx │ │ ├── ModuleManifestPropertyPage.cs │ │ ├── ModuleManifestPropertyPageControl.Designer.cs │ │ ├── ModuleManifestPropertyPageControl.cs │ │ ├── ModuleManifestPropertyPageControl.resx │ │ ├── ModulePropertyPage.cs │ │ ├── ModulePropertyPageControl.Designer.cs │ │ ├── ModulePropertyPageControl.cs │ │ ├── ModulePropertyPageControl.resx │ │ ├── PowerShellModulePropertyPageControl.resx │ │ └── PropertyPageUserControl.cs │ ├── ProvideCodeExpansionPathAttribute.cs │ ├── Resources │ │ ├── CommonImageList.bmp │ │ ├── ImageList.bmp │ │ └── ProjectResources.resx │ ├── ResourcesCategoryAttribute.cs │ ├── ResourcesDescriptionAttribute.cs │ ├── SharedProject │ │ ├── AllFilesProjectElement.cs │ │ ├── AssemblyReferenceNode.cs │ │ ├── Attributes.cs │ │ ├── Automation │ │ │ ├── AutomationScope.cs │ │ │ ├── OABuildManager.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 │ │ ├── Command.cs │ │ ├── CommonConfigProvider.cs │ │ ├── CommonConstants.cs │ │ ├── CommonEditorFactory.cs │ │ ├── CommonFileNode.cs │ │ ├── CommonFolderNode.cs │ │ ├── CommonNonCodeFileNode.cs │ │ ├── CommonPackage.cs │ │ ├── CommonProjectConfig.cs │ │ ├── CommonProjectNode.cs │ │ ├── CommonProjectNodeProperties.cs │ │ ├── CommonProjectPackage.cs │ │ ├── CommonPropertyPage.cs │ │ ├── CommonReferenceContainerNode.cs │ │ ├── CommonUtils.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 │ │ ├── FileWatcher.cs │ │ ├── FlavoredProjectFactoryBase.cs │ │ ├── FolderNode.cs │ │ ├── HierarchyIdMap.cs │ │ ├── HierarchyNode.cs │ │ ├── HierarchyNodeFlags.cs │ │ ├── IClipboardService.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 │ │ ├── OleServiceProvider.cs │ │ ├── Output.cs │ │ ├── OutputGroup.cs │ │ ├── OutputWindowRedirector.cs │ │ ├── OverwriteFileDialog.xaml │ │ ├── OverwriteFileDialog.xaml.cs │ │ ├── ProcessOutput.cs │ │ ├── ProcessOutput.cs.rej │ │ ├── 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 │ │ ├── ProjectResources.cs │ │ ├── ProjectResources.resx │ │ ├── PropertiesEditorLauncher.cs │ │ ├── ProvideCodeExpansionPathAttribute.cs │ │ ├── ProvideCodeExpansionsAttribute.cs │ │ ├── ProvideDebugEngineAttribute.cs │ │ ├── ProvideDebugExceptionAttribute.cs │ │ ├── ProvideDebugLanguageAttribute.cs │ │ ├── ProvideDebugPortPickerAttribute.cs │ │ ├── ProvideDebugPortSupplierAttribute.cs │ │ ├── ProvideTextEditorAutomationAttribute.cs │ │ ├── PublishFailedException.cs │ │ ├── PublishFile.cs │ │ ├── PublishProject.cs │ │ ├── PublishProjectOptions.cs │ │ ├── ReferenceContainerNode.cs │ │ ├── ReferenceNode.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── SharedCommands.cs │ │ ├── SharedProject.proj │ │ ├── SingleFileGenerator.cs │ │ ├── SingleFileGeneratorFactory.cs │ │ ├── SingleFileGeneratorNodeProperties.cs │ │ ├── SolutionEventsListener.cs │ │ ├── SolutionListener.cs │ │ ├── SolutionListenerForBuildDependencyUpdate.cs │ │ ├── SolutionListenerForProjectEvents.cs │ │ ├── SolutionListenerForProjectOpen.cs │ │ ├── StructuresEnums.cs │ │ ├── SuspendFileChanges.cs │ │ ├── TaskDialog.cs │ │ ├── TaskExtensions.cs │ │ ├── TaskProgressBar.xaml │ │ ├── TaskProgressBar.xaml.cs │ │ ├── TrackDocumentsHelper.cs │ │ ├── UIThread.cs │ │ ├── UIThreadBase.cs │ │ ├── UIThreadSynchronizer.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 │ │ │ ├── LambdaConverter │ │ │ ├── ILambdaConverterProvider.cs │ │ │ ├── LambdaConverter.cs │ │ │ ├── LambdaExtension.cs │ │ │ └── LambdaProperties.cs │ │ │ └── NativeMethods.cs │ └── Utils │ │ ├── DropDownListProperty.cs │ │ ├── DropDownListPropertyEditor.cs │ │ ├── FileListTypeConverter.cs │ │ └── VersionConverter.cs ├── ProvideDiffSupportedContentTypeAttribute.cs ├── QuickFix │ ├── RefactoringSuggestedAction.cs │ ├── RefactoringSuggestedActionSource.cs │ ├── RefactoringSuggestedActionSourceProvider.cs │ ├── ScriptAnalysisSuggestedActionSource.cs │ ├── ScriptAnalysisSuggestedActionsSourceProvider.cs │ └── ScriptAnalyzerSuggestion.cs ├── RegistrationAttributes.cs ├── Repl │ ├── IPowerShellEvaluator.cs │ ├── PowerShellReplEvaluator.cs │ ├── PowerShellReplEvaluatorProvider.cs │ ├── Repl │ │ ├── Commands │ │ │ ├── CancelExecutionCommand.cs │ │ │ ├── ClearScreenReplCommand.cs │ │ │ ├── EchoReplCommand.cs │ │ │ ├── ResetReplCommand.cs │ │ │ └── WaitReplCommand.cs │ │ ├── CustomTrackingSpan.cs │ │ ├── DialogWindows │ │ │ ├── RemoteSessionEnterWindow.xaml │ │ │ ├── RemoteSessionEnterWindow.xaml.cs │ │ │ ├── RemoteSessionWindowViewModel.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── ExecutionResult.cs │ │ ├── History.cs │ │ ├── IContentTypeMetadata.cs │ │ ├── IMultipleScopeEvaluator.cs │ │ ├── IReplCommand.cs │ │ ├── IReplCommand2.cs │ │ ├── IReplEvaluator.cs │ │ ├── IReplEvaluatorProvider.cs │ │ ├── IReplWindow.cs │ │ ├── IReplWindowCreationListener.cs │ │ ├── IReplWindowProvider.cs │ │ ├── InlineReplAdornment.cs │ │ ├── InlineReplAdornmentManager.cs │ │ ├── Margin │ │ │ ├── GlyphPrompts.cs │ │ │ ├── PromptMargin.cs │ │ │ └── PromptMarginVisualManager.cs │ │ ├── OutputBuffer.cs │ │ ├── OutputColors.cs │ │ ├── ReplAggregateClassifier.cs │ │ ├── ReplAggregateClassifierProvider.cs │ │ ├── ReplConstants.cs │ │ ├── ReplContentType.cs │ │ ├── ReplInput.cs │ │ ├── ReplOptions.cs │ │ ├── ReplOutputClassificationFormatDefinitions.cs │ │ ├── ReplOutputClassifier.cs │ │ ├── ReplOutputClassifierProvider.cs │ │ ├── ReplOutputContentType.cs │ │ ├── ReplRoleAttribute.cs │ │ ├── ReplWindow.cs │ │ ├── ReplWindowExtensions.cs │ │ ├── ReplWindowProvider.cs │ │ ├── ResizingAdorner.cs │ │ └── ZoomableInlineAdornment.cs │ ├── ReplGlobalSuppressions.cs │ ├── ReplGuids.cs │ ├── ReplMouseProcessor.cs │ ├── ReplPkgCmdID.cs │ ├── ReplResources.Designer.cs │ ├── ReplResources.resx │ ├── ReplVSPackage.resx │ ├── ReplWindowPackage.cs │ └── Resources │ │ ├── PowerShellInteractiveWindow_16x.png │ │ └── ReplToolBarImages.png ├── Resources.Designer.cs ├── Resources.resx ├── RunspaceRef.cs ├── SecureStringExtensions.cs ├── Service │ ├── AnalysisService.cs │ ├── AnalysisWatcher.cs │ └── PowerShellHostClientService.cs ├── ServiceManagement │ ├── ConnectionManager.cs │ ├── Debugging │ │ ├── PowerShellDebuggingService.cs │ │ ├── PowerShellDebuggingServiceAttachUtilities.cs │ │ ├── PowerShellRawHost.cs │ │ ├── PowershellBreakpointRecord.cs │ │ └── PowershellHost.cs │ ├── Explorer │ │ └── PowerShellExplorerService.cs │ ├── IntelliSense │ │ └── PowerShellIntelliSenseService.cs │ ├── PowerShellExplorerServiceProxy.cs │ ├── PowershellHostProcessException.cs │ ├── PowershellHostProcessHelper.cs │ └── ServiceCommon.cs ├── Snippets │ ├── PowerShell │ │ ├── advanced function.snippet │ │ ├── commentblock.snippet │ │ ├── dountil.snippet │ │ ├── dowhile.snippet │ │ ├── for.snippet │ │ ├── foreach.snippet │ │ ├── function.snippet │ │ ├── if.snippet │ │ ├── ifelse.snippet │ │ ├── switch.snippet │ │ ├── trycatchfinally.snippet │ │ ├── tryfinally.snippet │ │ └── while.snippet │ ├── SnippetHandler.cs │ └── SnippetsIndex.xml ├── StringExtensions.cs ├── TestAdapter │ ├── Helpers │ │ ├── IProject.cs │ │ ├── ISolution.cs │ │ ├── ISolutionEventsListener.cs │ │ ├── ISolutionProvider.cs │ │ ├── ITestFileAddRemoveListener.cs │ │ ├── ITestFilesUpdateWatcher.cs │ │ ├── Project.cs │ │ ├── Solution.cs │ │ ├── SolutionEventsListener.cs │ │ ├── SolutionEventsListenerEventArgs.cs │ │ ├── SolutionProvider.cs │ │ ├── TestFileAddRemoveListener.cs │ │ ├── TestFileChangedEventArgs.cs │ │ ├── TestFilesUpdateWatcher.cs │ │ ├── ValidateArg.cs │ │ └── VsSolutionHelper.cs │ ├── PowerShellTestContainer.cs │ └── PowerShellTestContainerDiscoverer.cs ├── ToolWindows │ ├── Icons │ │ ├── HelpApplication_16x.png │ │ ├── Key_16x.png │ │ ├── Link_16x.png │ │ ├── Save_16x.png │ │ └── ps-logo.png │ ├── Modules.cs │ ├── ModulesCommand.cs │ ├── ModulesControl.xaml │ ├── ModulesControl.xaml.cs │ ├── Variables.cs │ ├── VariablesCommand.cs │ ├── VariablesControl.xaml │ └── VariablesControl.xaml.cs ├── UiContextUtilities.cs ├── VisualStudio.cs ├── VsShellDialogWindow.cs └── Workspace │ ├── PowerShellFileIconProvider.cs │ ├── PowerShellLaunchConfigurationProvider.cs │ └── PowerShellLaunchDebugTargetProvider.cs ├── PowerShellTools.Templates.Data ├── PowerShellScriptDataFile.ico ├── PowerShellTools.Templates.Data.csproj ├── Properties │ └── AssemblyInfo.cs ├── Script.psd1 └── ScriptDataFile.vstemplate ├── PowerShellTools.Templates.FormProject ├── Form.Designer.ps1 ├── Form.ps1 ├── PowerShellFormProject.pssproj ├── PowerShellFormProject.vstemplate ├── PowerShellTools.Templates.FormProject.csproj ├── PowerShellWindowsForm.ico ├── Properties │ └── AssemblyInfo.cs ├── Resources.resx └── packages.config ├── PowerShellTools.Templates.Module ├── PowerShellScriptModule.ico ├── PowerShellTools.Templates.Module.csproj ├── Properties │ └── AssemblyInfo.cs ├── Script.psm1 └── ScriptModule.vstemplate ├── PowerShellTools.Templates.ModuleProject ├── Module.psm1 ├── Module.tests.ps1 ├── PowerShellModuleProject.ico ├── PowerShellModuleProject.pssproj ├── PowerShellModuleProject.vstemplate ├── PowerShellTools.Templates.ModuleProject.csproj ├── Properties │ └── AssemblyInfo.cs └── module.psd1 ├── PowerShellTools.Templates.Script ├── PowerShellScript.ico ├── PowerShellTools.Templates.Script.csproj ├── Properties │ └── AssemblyInfo.cs ├── Script.ps1 └── Script.vstemplate ├── PowerShellTools.Templates.ScriptProject ├── PowerShellProject.ico ├── PowerShellProject.pssproj ├── PowerShellProject.vstemplate ├── PowerShellTools.Templates.ScriptProject.csproj ├── Properties │ └── AssemblyInfo.cs └── Script.ps1 ├── PowerShellTools.Templates.Test ├── PowerShellTest.ico ├── PowerShellTest.vstemplate ├── PowerShellTools.Templates.Test.csproj ├── Properties │ └── AssemblyInfo.cs └── Script.Tests.ps1 ├── PowerShellTools.Test ├── Assets │ ├── MultiThreadedForm.Designer.ps1 │ ├── MultiThreadedForm.ps1 │ ├── MultiThreadedForm.resx │ └── form.Export.ps1 ├── BreakpointValidation │ └── BreakpointValidationUnitTests.cs ├── Classification │ └── PowerShellParseUtilitiesUnitTests.cs ├── ClassifierService.Test.cs ├── Commands │ ├── ParameterEditorHelperUnitTests.cs │ └── ParameterEditorViewModelUnitTests.cs ├── Common │ ├── ScriptParameterViewModelEqualityComparer.cs │ └── VariableTest.cs ├── DebugEngine │ └── PromptUI │ │ └── ReadHostPromptForChoicesViewModelUnitTests.cs ├── FormsDesigner │ └── CodeDomAstVisitor.Test.cs ├── IntelliSense │ ├── TabCompleteUnitTests.cs │ └── UtilitiesUnitTests.cs ├── LanguageService │ └── NavigationUnitTests.cs ├── MSBuild │ └── PowerShellPackageTaskTest.cs ├── Mocking │ └── TextEditor.cs ├── Modules │ └── Pester-3.3.5 │ │ ├── Functions │ │ ├── Assertions │ │ │ ├── Be.ps1 │ │ │ ├── BeGreaterThan.ps1 │ │ │ ├── BeLessThan.ps1 │ │ │ ├── BeNullOrEmpty.ps1 │ │ │ ├── Contain.ps1 │ │ │ ├── ContainExactly.ps1 │ │ │ ├── Exist.ps1 │ │ │ ├── Match.ps1 │ │ │ ├── MatchExactly.ps1 │ │ │ ├── PesterThrow.ps1 │ │ │ ├── Should.ps1 │ │ │ └── Test-Assertion.ps1 │ │ ├── Context.ps1 │ │ ├── Coverage.ps1 │ │ ├── Describe.ps1 │ │ ├── In.ps1 │ │ ├── InModuleScope.ps1 │ │ ├── It.ps1 │ │ ├── Mock.ps1 │ │ ├── New-Fixture.ps1 │ │ ├── PesterState.ps1 │ │ ├── SetupTeardown.ps1 │ │ └── TestDrive.ps1 │ │ ├── Pester.psd1 │ │ └── Pester.psm1 ├── Packager │ ├── BundlerTests.cs │ └── CSharpCodeGeneratorTest.cs ├── PowerShellCodeDomProviderTest.cs ├── PowerShellTools.Test.csproj ├── Pretty.ps1 ├── Pretty │ ├── Pretty.Tests.ps1 │ └── Pretty.ps1 ├── Properties │ └── AssemblyInfo.cs ├── RegionAndBraceMatchingService.Test.cs ├── RemoteDebuggingTest.cs ├── ScriptDebuggerTest.cs ├── TestAdapter │ ├── PesterTestExecutor.Test.cs │ ├── PowerShellTestContainerDiscoverer.Test.cs │ ├── PowerShellTestDiscoverer.Test.cs │ └── PowerShellTestExecutor.Test.cs ├── TestFile.ps1 ├── TestFile1.ps1 ├── TestUtilities.cs ├── Ugly.ps1 ├── VsxHostTest.cs └── packages.lock.json ├── PowerShellTools.TestAdapter.Shared ├── PowerShellTools.TestAdapter.Shared.projitems └── PowerShellTools.TestAdapter.Shared.shproj ├── PowerShellTools.TestAdapter ├── PowerShellTestDiscoverer.cs ├── PowerShellTestExecutor.cs ├── PowerShellTestResult.cs ├── PowerShellTools.TestAdapter.csproj ├── TestAdapterHost.cs ├── TestCaseSet.cs └── packages.lock.json ├── PowerShellTools.sln ├── PowerShellTools ├── Editors │ ├── ApplicationResources.xaml │ ├── DataModel │ │ ├── ModuleObject.cs │ │ ├── OtherClasses.cs │ │ ├── SnapinView.cs │ │ ├── WriteXMLHelpFileHelperClass.cs │ │ └── XMLReaderHelper.cs │ ├── DescriptionControl.xaml │ ├── DescriptionControl.xaml.cs │ ├── EditorControl.Designer.cs │ ├── EditorControl.cs │ ├── EditorControl.resx │ ├── EditorFactory.cs │ ├── EditorPane.cs │ ├── EditorPane.resx │ ├── EmptyParameterControl.xaml │ ├── EmptyParameterControl.xaml.cs │ ├── ExamplesControl.xaml │ ├── ExamplesControl.xaml.cs │ ├── IEditor.cs │ ├── MainGrid.xaml │ ├── MainGrid.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NavigationControl.xaml │ ├── NavigationControl.xaml.cs │ ├── ParameterControl.xaml │ ├── ParameterControl.xaml.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RelatedLinks.xaml │ ├── RelatedLinks.xaml.cs │ ├── Utility │ │ ├── FileHelper.cs │ │ └── Helpers.cs │ └── ViewModel │ │ ├── DescriptionViewModel.cs │ │ ├── ExampleViewModel.cs │ │ ├── HeaderViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── NavigationViewModel.cs │ │ └── ViewModelBase.cs ├── License.txt ├── Manifest │ └── source.extension.vsixmanifest ├── MyControl.xaml ├── MyControl.xaml.cs ├── MyToolWindow.cs ├── PowerShellTools.15.0.imagemanifest ├── PowerShellTools.csproj ├── PowerShellTools.targets ├── PowerShellTools.vsct ├── PowerShellToolsColors.pkgdef ├── Properties │ └── AssemblyInfo.cs ├── ReplWindow.vsct ├── Resources │ ├── DataIcon.png │ ├── IMSLogo.png │ ├── Images.png │ ├── Images_0.png │ ├── Images_1.png │ ├── Images_2.png │ ├── Images_3.png │ ├── Images_4.png │ ├── Images_5.png │ ├── ModuleIcon.png │ ├── ModuleProject.pdn │ ├── Package.ico │ ├── PowerShell.ico │ ├── PowerShellInteractiveWindow_16x.png │ ├── Project.pdn │ ├── ProjectIcon.png │ ├── Project_16.bmp │ ├── ScriptIcon.png │ ├── TestIcon.png │ ├── Thumbs.db │ ├── VariablesCommand.png │ ├── VariablesPackage.ico │ ├── completionset.bmp │ ├── powershell.png │ ├── powershell_icon.png │ └── settings.png ├── ToolWindows │ └── Icons │ │ ├── HelpApplication_16x.png │ │ ├── Key_16x.png │ │ ├── Link_16x.png │ │ ├── Save_16x.png │ │ └── ps-logo.png ├── packages.lock.json ├── powershell-large.png ├── prebuild.ps1 └── preview.png ├── PowerShellToolsPro.Analytics ├── AnalyticsClient.cs ├── PowerShellToolsPro.Analytics.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellToolsPro.Cmdlets ├── .vscode │ └── launch.json ├── AstCache.cs ├── ConvertToWinFormCommand.cs ├── CreateHelp.ps1 ├── Help │ ├── Merge-Script.md │ └── about_MergeScriptConfig.md ├── MergeScriptCommand.cs ├── NewPackageConfigCommand.cs ├── ObjectExtensions.cs ├── PowerShellProTools.psd1 ├── PowerShellProTools.psm1 ├── PowerShellToolsPro.Cmdlets.csproj ├── ShowWinFormDesignerCommand.cs ├── Tests │ ├── Initialize.ps1 │ └── MergeScript.tests.ps1 ├── app.config ├── build.ps1 ├── en-US │ ├── PowerShellToolsPro.Cmdlets.Installer.dll-Help.xml │ ├── PowerShellToolsPro.Cmdlets.dll-Help.xml │ └── about_MergeScriptConfig.help.txt ├── nuget.exe ├── obfuscar.xml ├── packages.lock.json ├── post-build.ps1 └── publish.ps1 ├── PowerShellToolsPro.MsBuild ├── FodyWeavers.xml ├── MsBuildPowerShellHost.cs ├── PowerShellPackageTask.cs ├── PowerShellToolsPro.MsBuild.csproj ├── Properties │ └── AssemblyInfo.cs ├── RunPowerShellCommand.cs ├── app.config └── packages.lock.json ├── PowerShellToolsPro.Packager.Test.TestModule ├── Class1.cs ├── PowerShellToolsPro.Packager.Test.TestModule.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellToolsPro.Packager.Test ├── AppConfigManagerTests.cs ├── AppManifestManagerTests.cs ├── Assets │ ├── Form.designer.ps1 │ ├── Form.ps1 │ └── icon.ico ├── BundlerTests.cs ├── CSharpCodeGeneratorTest.cs ├── ConfigDeserializerTests.cs ├── ModuleCompilerTests.cs ├── OldCompiler.cs ├── PowerShellToolsPro.Packager.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── packages.lock.json └── xunit.runner.json ├── PowerShellToolsPro.Packager ├── ASMResolver │ ├── AsmResolver.PE.File.dll │ ├── AsmResolver.PE.Win32Resources.dll │ ├── AsmResolver.PE.dll │ └── AsmResolver.dll ├── App.config ├── AppConfigManager.cs ├── AppManifestManager.cs ├── Bundler.cs ├── CodeGenerator.cs ├── Compiler.cs ├── Config │ ├── ConfigDeserializer.cs │ └── PackageConfig.cs ├── GacInfo.cs ├── GetBoundParameters.ps1 ├── HostDownloadService.cs ├── Hosts │ ├── Assembly │ │ ├── AssemblyPowerShellHost.cs │ │ └── AssemblyPowerShellHostUserInterface.cs │ ├── AssemblyCreator.cs │ ├── Console │ │ ├── ConsolePowerShellHost.cs │ │ ├── ConsolePowerShellHost_Core.cs │ │ ├── ConsolePowerShellHost_Hidden.cs │ │ ├── ConsolePowerShellHost_Linux.cs │ │ ├── ConsolePowerShellHost_Osx.cs │ │ └── app.manifest │ └── Service │ │ ├── ConsolePowerShellHost.cs │ │ └── ConsolePowerShellHost_Core.cs ├── IEnumerableExtensions.cs ├── IPathResolver.cs ├── IconChanger.cs ├── ModuleFunctions.ps1 ├── ModuleInfo.cs ├── NativeResourceManager.cs ├── Obfuscar.Console.exe ├── Obfuscator.cs ├── PackageProcess.cs ├── ParameterFinder.cs ├── PowerShellToolsPro.Packager.csproj ├── UpdateHostStage.cs ├── VSEntry.cs └── packages.lock.json ├── PowerShellToolsPro.Shared ├── PowerShellToolsPro.Shared.projitems └── PowerShellToolsPro.Shared.shproj ├── PowerShellToolsPro.Templates.FormItem ├── Form.designer.ps1 ├── Form.ps1 ├── Form.vstemplate ├── PowerShellToolsPro.Templates.FormItem.csproj ├── PowerShellWindowsForm.ico ├── Properties │ └── AssemblyInfo.cs ├── Resources.resx └── packages.config ├── PowerShellToolsPro.Templates.ServiceItem ├── PowerShellService.ico ├── PowerShellToolsPro.Templates.ServiceItem.csproj ├── Properties │ └── AssemblyInfo.cs ├── Service.ps1 └── Service.vstemplate ├── PowerShellToolsPro.Templates.WpfItem ├── PowerShellToolsPro.Templates.WpfItem.csproj ├── PowerShellWpf.ico ├── Properties │ └── AssemblyInfo.cs ├── WpfWindow.vstemplate ├── WpfWindow.xaml ├── WpfWindow.xaml.ps1 └── packages.config ├── PowerShellToolsPro.Test ├── PowerShellToolsPro.Test.csproj └── Properties │ └── AssemblyInfo.cs ├── PowerShellToolsPro ├── Manifest │ └── source.extension.vsixmanifest ├── PowerShellToolsPro.csproj └── Templating │ └── PowerShellGenerator.cs ├── PowershellTools.Common ├── PowershellTools.Common.csproj ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx └── app.config ├── README.md ├── ReplWindow ├── PowerShellTools.Repl.csproj ├── Properties │ └── AssemblyInfo.cs ├── ReplWindow.vsct ├── VSPackage.xform.resx └── source.extension.vsixmanifest ├── ThirdParty ├── PowerGuiVsxLogConfig.xml ├── Src │ └── CSharp │ │ ├── AssemblyReferenceNode.cs │ │ ├── Attributes.cs │ │ ├── Automation │ │ ├── AutomationScope.cs │ │ ├── OAFileItem.cs │ │ ├── OAFolderItem.cs │ │ ├── OANavigableProjectItems.cs │ │ ├── OANestedProjectItem.cs │ │ ├── OANullProperty.cs │ │ ├── OAProject.cs │ │ ├── OAProjectItem.cs │ │ ├── OAProjectItems.cs │ │ ├── OAProperties.cs │ │ ├── OAProperty.cs │ │ ├── OAReferenceFolderItem.cs │ │ ├── OAReferenceItem.cs │ │ ├── OASolutionFolder.cs │ │ └── VSProject │ │ │ ├── OAAssemblyReference.cs │ │ │ ├── OABuildManager.cs │ │ │ ├── OAComReference.cs │ │ │ ├── OAProjectReference.cs │ │ │ ├── OAReferenceBase.cs │ │ │ ├── OAReferences.cs │ │ │ ├── OAVSProject.cs │ │ │ └── OAVSProjectItem.cs │ │ ├── BuildDependency.cs │ │ ├── BuildPropertyPage.cs │ │ ├── ComReferenceNode.cs │ │ ├── ConfigProvider.cs │ │ ├── ConfigurationProperties.cs │ │ ├── DataObject.cs │ │ ├── DependentFileNode.cs │ │ ├── DesignPropertyDescriptor.cs │ │ ├── DesignTimeAssemblyResolution.cs │ │ ├── Diagrams │ │ ├── AutomationClasses.cd │ │ ├── ConfigurationClasses.cd │ │ ├── DocumentManagerClasses.cd │ │ ├── HierarchyClasses.cd │ │ ├── PropertiesClasses.cd │ │ └── ReferenceClasses.cd │ │ ├── DocumentManager.cs │ │ ├── EnumDependencies.cs │ │ ├── FileChangeManager.cs │ │ ├── FileDocumentManager.cs │ │ ├── FileNode.cs │ │ ├── FolderNode.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HierarchyNode.cs │ │ ├── IDEBuildLogger.cs │ │ ├── ImageHandler.cs │ │ ├── Interfaces.cs │ │ ├── Key.snk │ │ ├── LocalizableProperties.cs │ │ ├── Microsoft.VisualStudio.Project.csproj │ │ ├── Misc │ │ ├── ConnectionPointContainer.cs │ │ ├── ExternDll.cs │ │ ├── NativeMethods.cs │ │ └── UnsafeNativeMethods.cs │ │ ├── NestedProjectBuildDependency.cs │ │ ├── NestedProjectNode.cs │ │ ├── NodeProperties.cs │ │ ├── OleServiceProvider.cs │ │ ├── Output.cs │ │ ├── OutputGroup.cs │ │ ├── ProjectConfig.cs │ │ ├── ProjectContainerNode.cs │ │ ├── ProjectDesignerDocumentManager.cs │ │ ├── ProjectDocumentsListener.cs │ │ ├── ProjectElement.cs │ │ ├── ProjectFactory.cs │ │ ├── ProjectFileConstants.cs │ │ ├── ProjectNode.CopyPaste.cs │ │ ├── ProjectNode.Events.cs │ │ ├── ProjectNode.cs │ │ ├── ProjectOptions.cs │ │ ├── ProjectPackage.cs │ │ ├── ProjectReferenceNode.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── PropertiesEditorLauncher.cs │ │ ├── ReferenceContainerNode.cs │ │ ├── ReferenceNode.cs │ │ ├── RegisteredProjectType.cs │ │ ├── Resources │ │ └── imagelis.bmp │ │ ├── SelectionListener.cs │ │ ├── SettingsPage.cs │ │ ├── SingleFileGenerator.cs │ │ ├── SolutionListener.cs │ │ ├── SolutionListenerForBuildDependencyUpdate.cs │ │ ├── SolutionListenerForProjectEvents.cs │ │ ├── SolutionListenerForProjectOpen.cs │ │ ├── SolutionListenerForProjectReferenceUpdate.cs │ │ ├── StructuresEnums.cs │ │ ├── SuspendFileChanges.cs │ │ ├── TokenProcessor.cs │ │ ├── Tracing.cs │ │ ├── TrackDocumentsHelper.cs │ │ ├── TypeConverters.cs │ │ ├── UIThread.cs │ │ ├── UpdateSolutionEventsListener.cs │ │ ├── Utilities.cs │ │ ├── VSShellUtilities.cs │ │ ├── VisualStudio.Project.cs │ │ ├── VisualStudio.Project.resx │ │ └── VsCommands.cs └── log4net.dll ├── WinFormDesigner ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Save.ico ├── Save.png ├── WinFormDesigner.Designer.cs ├── WinFormDesigner.cs ├── WinFormDesigner.csproj ├── WinFormDesigner.resx ├── packages.config └── version.txt ├── branding ├── PowerShellService.png ├── PowerShellWindowsForm.png ├── PowerShellWpf.png ├── Thumbs.db ├── logo.ico ├── logo.png └── logo.svg ├── cert ├── Microsoft.Windows.Build.Appx.AppxPackaging.dll.manifest ├── Microsoft.Windows.Build.Appx.AppxSip.dll.manifest ├── Microsoft.Windows.Build.Appx.OpcServices.dll.manifest ├── Microsoft.Windows.Build.Signing.mssign32.dll.manifest ├── Microsoft.Windows.Build.Signing.wintrust.dll.manifest ├── WinAppDeployCmd.exe ├── WinAppDeployCommon.dll ├── appxpackaging.dll ├── appxsip.dll ├── en-US │ └── AppxPackaging.dll.mui ├── en │ ├── Microsoft.Tools.Deploy.resources.dll │ └── WinAppDeployCmd.resources.dll ├── mssign32.dll ├── opcservices.dll ├── signtool.exe ├── signtool.exe.manifest ├── wintrust.dll └── wintrust.dll.ini ├── packages.config ├── poshtools.version.txt ├── setenv.cmd ├── tests ├── Merge-Script.tests.ps1 └── TestUtilities.psm1 └── vscode ├── .yo-rc.json ├── package-lock.json ├── powershellprotools ├── .gitattributes ├── .gitignore ├── .hintrc ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── global.json ├── logo.png ├── media │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ ├── bootstrap.rtl.min.css.map │ │ ├── theme.css │ │ └── theme.dark.css │ ├── dark │ │ ├── bolt.svg │ │ ├── box.svg │ │ ├── browser.svg │ │ ├── brush.svg │ │ ├── code.svg │ │ ├── external-link.svg │ │ ├── icon-download.svg │ │ ├── icon-pull.svg │ │ ├── refresh.svg │ │ └── trash-solid.svg │ ├── images │ │ ├── ps-logo.png │ │ └── visual-studio-code.gif │ ├── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ └── fontawesome.js │ ├── light │ │ ├── bolt.svg │ │ ├── box.svg │ │ ├── browser.svg │ │ ├── brush.svg │ │ ├── code.svg │ │ ├── external-link.svg │ │ ├── icon-download.svg │ │ ├── icon-pull.svg │ │ ├── refresh.svg │ │ └── trash-solid.svg │ ├── logo.svg │ └── pwsh.svg ├── package-lock.json ├── package.json ├── resources │ ├── DataTables-1.10.20 │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.min.css │ │ │ ├── dataTables.bootstrap4.css │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.foundation.css │ │ │ ├── dataTables.foundation.min.css │ │ │ ├── dataTables.jqueryui.css │ │ │ ├── dataTables.jqueryui.min.css │ │ │ ├── dataTables.semanticui.css │ │ │ ├── dataTables.semanticui.min.css │ │ │ ├── jquery.dataTables.css │ │ │ └── jquery.dataTables.min.css │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── dataTables.bootstrap4.js │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── dataTables.foundation.js │ │ │ ├── dataTables.foundation.min.js │ │ │ ├── dataTables.jqueryui.js │ │ │ ├── dataTables.jqueryui.min.js │ │ │ ├── dataTables.semanticui.js │ │ │ ├── dataTables.semanticui.min.js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ ├── datatables.css │ ├── datatables.js │ ├── datatables.min.css │ ├── datatables.min.js │ ├── grid-view.html │ ├── jQuery-3.3.1 │ │ ├── jquery-3.3.1.js │ │ └── jquery-3.3.1.min.js │ └── welcome.html ├── src │ ├── commands │ │ ├── ast.ts │ │ ├── codeLensProvider.ts │ │ ├── command.ts │ │ ├── convertToUdElement.ts │ │ ├── customTreeView.ts │ │ ├── debugging.ts │ │ ├── formsDesigner.ts │ │ ├── generateTool.ts │ │ ├── generateWinForm.ts │ │ ├── help.ts │ │ ├── history.ts │ │ ├── hoverProvider.ts │ │ ├── installPoshToolsModule.ts │ │ ├── jobs.ts │ │ ├── packageAsExe.ts │ │ ├── presentation.ts │ │ ├── profile.ts │ │ ├── providers.ts │ │ ├── quickScripts.ts │ │ ├── refactoring.ts │ │ ├── reflection.ts │ │ ├── sessions.ts │ │ ├── showDataGrid.ts │ │ ├── signOnSave.ts │ │ ├── statusBarItemMenu.ts │ │ ├── variables.ts │ │ └── welcomeCommand.ts │ ├── container.ts │ ├── extension.ts │ ├── services │ │ ├── performanceService.ts │ │ ├── powershellservice.ts │ │ ├── quickScriptService.ts │ │ ├── rapidSenseOptions.ts │ │ ├── rapidsense.ts │ │ ├── renameProvider.ts │ │ └── vscodeService.ts │ ├── settings.ts │ ├── treeView │ │ ├── astTreeView.ts │ │ ├── customTreeView.ts │ │ ├── historyTreeView.ts │ │ ├── hostProcessView.ts │ │ ├── infoTreeView.ts │ │ ├── jobTreeView.ts │ │ ├── moduleTreeView.ts │ │ ├── providerTreeView.ts │ │ ├── quickScriptView.ts │ │ ├── reflectionTreeView.ts │ │ ├── sessionTreeView.ts │ │ ├── treeViewProvider.ts │ │ └── variableTreeView.ts │ ├── types.ts │ ├── util.ts │ ├── utilities │ │ └── versioning.ts │ └── webviews │ │ ├── welcome.html │ │ └── welcome.ts ├── tsconfig.json └── tslint.json └── vscode.build.ps1 /.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf -------------------------------------------------------------------------------- /.github/workflows/cmdlets.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/cmdlets.ci.yml -------------------------------------------------------------------------------- /.github/workflows/cmdlets.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/cmdlets.production.yml -------------------------------------------------------------------------------- /.github/workflows/hosts.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/hosts.ci.yml -------------------------------------------------------------------------------- /.github/workflows/vs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/vs.yml -------------------------------------------------------------------------------- /.github/workflows/vscode.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/vscode.ci.yml -------------------------------------------------------------------------------- /.github/workflows/vscode.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/vscode.production.yml -------------------------------------------------------------------------------- /.github/workflows/winformdesigner.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/winformdesigner.ci.yml -------------------------------------------------------------------------------- /.github/workflows/winformdesigner.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.github/workflows/winformdesigner.production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "PowerShellTools.sln" 3 | } -------------------------------------------------------------------------------- /Build/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /Build/AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/AssemblyVersion.cs -------------------------------------------------------------------------------- /Build/Common.Build.CSharp.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/Common.Build.CSharp.settings -------------------------------------------------------------------------------- /Build/Common.Build.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/Common.Build.settings -------------------------------------------------------------------------------- /Build/Common.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/Common.Build.targets -------------------------------------------------------------------------------- /Build/FinalPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/FinalPublicKey.snk -------------------------------------------------------------------------------- /Build/Microsoft.MSXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/Microsoft.MSXML.dll -------------------------------------------------------------------------------- /Build/Microsoft.Windows.Design.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/Microsoft.Windows.Design.Host.dll -------------------------------------------------------------------------------- /Build/ProjectAfter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/ProjectAfter.settings -------------------------------------------------------------------------------- /Build/ProjectBefore.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/ProjectBefore.settings -------------------------------------------------------------------------------- /Build/PythonTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/PythonTools.csproj -------------------------------------------------------------------------------- /Build/sign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/sign.ps1 -------------------------------------------------------------------------------- /Build/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Build/vswhere.exe -------------------------------------------------------------------------------- /Common/Analysis/AnalysisIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisIssue.cs -------------------------------------------------------------------------------- /Common/Analysis/AnalysisRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisRequest.cs -------------------------------------------------------------------------------- /Common/Analysis/AnalysisResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisResult.cs -------------------------------------------------------------------------------- /Common/Analysis/AnalysisRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisRule.cs -------------------------------------------------------------------------------- /Common/Analysis/AnalysisRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisRules.cs -------------------------------------------------------------------------------- /Common/Analysis/AnalysisSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/AnalysisSuggestion.cs -------------------------------------------------------------------------------- /Common/Analysis/ClassDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/ClassDefinition.cs -------------------------------------------------------------------------------- /Common/Analysis/FunctionDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Analysis/FunctionDefinition.cs -------------------------------------------------------------------------------- /Common/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/AsyncHelper.cs -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/ConsoleControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/ConsoleControl.cs -------------------------------------------------------------------------------- /Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Constants.cs -------------------------------------------------------------------------------- /Common/Debugging/DebugEngineConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Debugging/DebugEngineConstants.cs -------------------------------------------------------------------------------- /Common/DependencyUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/DependencyUtilities.cs -------------------------------------------------------------------------------- /Common/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/EventArgs.cs -------------------------------------------------------------------------------- /Common/Explorer/ConversionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/ConversionFactory.cs -------------------------------------------------------------------------------- /Common/Explorer/ExplorerExecutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/ExplorerExecutionHelper.cs -------------------------------------------------------------------------------- /Common/Explorer/IPowerShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/IPowerShellCommand.cs -------------------------------------------------------------------------------- /Common/Explorer/IPowerShellCommandMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/IPowerShellCommandMetadata.cs -------------------------------------------------------------------------------- /Common/Explorer/IPowerShellModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/IPowerShellModule.cs -------------------------------------------------------------------------------- /Common/Explorer/IPowerShellParameterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/IPowerShellParameterMetadata.cs -------------------------------------------------------------------------------- /Common/Explorer/IPowerShellParameterSetMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/IPowerShellParameterSetMetadata.cs -------------------------------------------------------------------------------- /Common/Explorer/ParameterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/ParameterType.cs -------------------------------------------------------------------------------- /Common/Explorer/PowerShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/PowerShellCommand.cs -------------------------------------------------------------------------------- /Common/Explorer/PowerShellCommandMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/PowerShellCommandMetadata.cs -------------------------------------------------------------------------------- /Common/Explorer/PowerShellModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/PowerShellModule.cs -------------------------------------------------------------------------------- /Common/Explorer/PowerShellParameterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/PowerShellParameterMetadata.cs -------------------------------------------------------------------------------- /Common/Explorer/PowerShellParameterSetMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Explorer/PowerShellParameterSetMetadata.cs -------------------------------------------------------------------------------- /Common/IPowerShellHostClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/IPowerShellHostClientService.cs -------------------------------------------------------------------------------- /Common/IPowershellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/IPowershellService.cs -------------------------------------------------------------------------------- /Common/IntelliSense/CommandCompletionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/IntelliSense/CommandCompletionHelper.cs -------------------------------------------------------------------------------- /Common/IntelliSense/EmptyScriptExtent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/IntelliSense/EmptyScriptExtent.cs -------------------------------------------------------------------------------- /Common/IntelliSense/EmptyScriptPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/IntelliSense/EmptyScriptPosition.cs -------------------------------------------------------------------------------- /Common/Logging/DiagnosticConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Logging/DiagnosticConfiguration.cs -------------------------------------------------------------------------------- /Common/Logging/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Logging/ILog.cs -------------------------------------------------------------------------------- /Common/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Logging/Log.cs -------------------------------------------------------------------------------- /Common/Logging/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Logging/LogManager.cs -------------------------------------------------------------------------------- /Common/PowerShellLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/PowerShellLocator.cs -------------------------------------------------------------------------------- /Common/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Resources.Designer.cs -------------------------------------------------------------------------------- /Common/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/Resources.resx -------------------------------------------------------------------------------- /Common/ServiceManagement/IAnalysisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/ServiceManagement/IAnalysisService.cs -------------------------------------------------------------------------------- /Common/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/StringExtensions.cs -------------------------------------------------------------------------------- /Common/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Common/packages.lock.json -------------------------------------------------------------------------------- /FormDesigner.Generator/FormField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Generator/FormField.cs -------------------------------------------------------------------------------- /FormDesigner.Generator/FormGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Generator/FormGenerator.cs -------------------------------------------------------------------------------- /FormDesigner.Generator/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Generator/packages.lock.json -------------------------------------------------------------------------------- /FormDesigner.Test/CSharpAstVisitorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Test/CSharpAstVisitorTest.cs -------------------------------------------------------------------------------- /FormDesigner.Test/FormDesigner.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Test/FormDesigner.Test.csproj -------------------------------------------------------------------------------- /FormDesigner.Test/FormGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Test/FormGeneratorTest.cs -------------------------------------------------------------------------------- /FormDesigner.Test/FormTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Test/FormTest.cs -------------------------------------------------------------------------------- /FormDesigner.Test/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner.Test/packages.lock.json -------------------------------------------------------------------------------- /FormDesigner/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/App.ico -------------------------------------------------------------------------------- /FormDesigner/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/AssemblyInfo.cs -------------------------------------------------------------------------------- /FormDesigner/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/Clipboard.cs -------------------------------------------------------------------------------- /FormDesigner/CodeDom/CodeDomAstVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/CodeDom/CodeDomAstVisitor.cs -------------------------------------------------------------------------------- /FormDesigner/CodeDom/CodeDomProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/CodeDom/CodeDomProviderFactory.cs -------------------------------------------------------------------------------- /FormDesigner/CodeDom/CommandLineCodeDomProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/CodeDom/CommandLineCodeDomProvider.cs -------------------------------------------------------------------------------- /FormDesigner/CodeDom/DebugCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/CodeDom/DebugCodeGenerator.cs -------------------------------------------------------------------------------- /FormDesigner/DesignerHost/DesignSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/DesignerHost/DesignSite.cs -------------------------------------------------------------------------------- /FormDesigner/DesignerHost/DesignerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/DesignerHost/DesignerHost.cs -------------------------------------------------------------------------------- /FormDesigner/DesignerHost/SelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/DesignerHost/SelectionService.cs -------------------------------------------------------------------------------- /FormDesigner/EventTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/EventTab.cs -------------------------------------------------------------------------------- /FormDesigner/FormDesigner.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/FormDesigner.Common.csproj -------------------------------------------------------------------------------- /FormDesigner/ILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/ILanguage.cs -------------------------------------------------------------------------------- /FormDesigner/Languages/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/Languages/Languages.cs -------------------------------------------------------------------------------- /FormDesigner/MenuCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/MenuCommandService.cs -------------------------------------------------------------------------------- /FormDesigner/NameCreationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/NameCreationService.cs -------------------------------------------------------------------------------- /FormDesigner/PowerShellResourceFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/PowerShellResourceFileGenerator.cs -------------------------------------------------------------------------------- /FormDesigner/PowerShellWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/PowerShellWindowsForm.ico -------------------------------------------------------------------------------- /FormDesigner/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/ResourceService.cs -------------------------------------------------------------------------------- /FormDesigner/ToolboxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/ToolboxService.cs -------------------------------------------------------------------------------- /FormDesigner/TypeResolutionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/TypeResolutionService.cs -------------------------------------------------------------------------------- /FormDesigner/UIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/UIService.cs -------------------------------------------------------------------------------- /FormDesigner/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/app.config -------------------------------------------------------------------------------- /FormDesigner/events.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/events.bmp -------------------------------------------------------------------------------- /FormDesigner/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/frmMain.cs -------------------------------------------------------------------------------- /FormDesigner/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/frmMain.resx -------------------------------------------------------------------------------- /FormDesigner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/FormDesigner/packages.config -------------------------------------------------------------------------------- /HostInjection/AddTextDocumentTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/AddTextDocumentTextCommand.cs -------------------------------------------------------------------------------- /HostInjection/AstExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/AstExtensions.cs -------------------------------------------------------------------------------- /HostInjection/AstNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/AstNode.cs -------------------------------------------------------------------------------- /HostInjection/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Certificate.cs -------------------------------------------------------------------------------- /HostInjection/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Container.cs -------------------------------------------------------------------------------- /HostInjection/Decompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Decompiler.cs -------------------------------------------------------------------------------- /HostInjection/FormGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/FormGeneratorService.cs -------------------------------------------------------------------------------- /HostInjection/GetCompletionItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/GetCompletionItemCommand.cs -------------------------------------------------------------------------------- /HostInjection/GetTerminalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/GetTerminalCommand.cs -------------------------------------------------------------------------------- /HostInjection/GetTextDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/GetTextDocumentCommand.cs -------------------------------------------------------------------------------- /HostInjection/GetTextDocumentTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/GetTextDocumentTextCommand.cs -------------------------------------------------------------------------------- /HostInjection/GetTextEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/GetTextEditorCommand.cs -------------------------------------------------------------------------------- /HostInjection/HoverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/HoverService.cs -------------------------------------------------------------------------------- /HostInjection/ICodeConversionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ICodeConversionService.cs -------------------------------------------------------------------------------- /HostInjection/IFormGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/IFormGeneratorService.cs -------------------------------------------------------------------------------- /HostInjection/IPackagingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/IPackagingService.cs -------------------------------------------------------------------------------- /HostInjection/IPoshToolsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/IPoshToolsServer.cs -------------------------------------------------------------------------------- /HostInjection/IServerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/IServerLogger.cs -------------------------------------------------------------------------------- /HostInjection/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Item.cs -------------------------------------------------------------------------------- /HostInjection/MeasureBlockCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/MeasureBlockCommand.cs -------------------------------------------------------------------------------- /HostInjection/MeasureScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/MeasureScriptCommand.cs -------------------------------------------------------------------------------- /HostInjection/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models.cs -------------------------------------------------------------------------------- /HostInjection/Models/CompletionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/CompletionItem.cs -------------------------------------------------------------------------------- /HostInjection/Models/DecorationAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/DecorationAttachment.cs -------------------------------------------------------------------------------- /HostInjection/Models/GridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/GridView.cs -------------------------------------------------------------------------------- /HostInjection/Models/Hover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Hover.cs -------------------------------------------------------------------------------- /HostInjection/Models/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Job.cs -------------------------------------------------------------------------------- /HostInjection/Models/PPTRunspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/PPTRunspace.cs -------------------------------------------------------------------------------- /HostInjection/Models/PSHostProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/PSHostProcess.cs -------------------------------------------------------------------------------- /HostInjection/Models/Performance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Performance.cs -------------------------------------------------------------------------------- /HostInjection/Models/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Position.cs -------------------------------------------------------------------------------- /HostInjection/Models/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Range.cs -------------------------------------------------------------------------------- /HostInjection/Models/RapidSenseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/RapidSenseOptions.cs -------------------------------------------------------------------------------- /HostInjection/Models/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Reflection.cs -------------------------------------------------------------------------------- /HostInjection/Models/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Session.cs -------------------------------------------------------------------------------- /HostInjection/Models/Terminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/Terminal.cs -------------------------------------------------------------------------------- /HostInjection/Models/TextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/TextDocument.cs -------------------------------------------------------------------------------- /HostInjection/Models/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/TextEditor.cs -------------------------------------------------------------------------------- /HostInjection/Models/TreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/TreeItem.cs -------------------------------------------------------------------------------- /HostInjection/Models/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Models/TreeView.cs -------------------------------------------------------------------------------- /HostInjection/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Module.cs -------------------------------------------------------------------------------- /HostInjection/NewPositionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/NewPositionCommand.cs -------------------------------------------------------------------------------- /HostInjection/NewRangeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/NewRangeCommand.cs -------------------------------------------------------------------------------- /HostInjection/NewTreeItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/NewTreeItemCommand.cs -------------------------------------------------------------------------------- /HostInjection/OpenTextDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/OpenTextDocumentCommand.cs -------------------------------------------------------------------------------- /HostInjection/OutGridViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/OutGridViewCommand.cs -------------------------------------------------------------------------------- /HostInjection/ParseErrorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ParseErrorItem.cs -------------------------------------------------------------------------------- /HostInjection/PerformanceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PerformanceMonitor.cs -------------------------------------------------------------------------------- /HostInjection/PipeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PipeLogger.cs -------------------------------------------------------------------------------- /HostInjection/PoshToolsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PoshToolsServer.cs -------------------------------------------------------------------------------- /HostInjection/PowerShellProTools.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PowerShellProTools.Common.csproj -------------------------------------------------------------------------------- /HostInjection/PowerShellProTools.VSCode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PowerShellProTools.VSCode.psd1 -------------------------------------------------------------------------------- /HostInjection/PowerShellProTools.VSCode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/PowerShellProTools.VSCode.psm1 -------------------------------------------------------------------------------- /HostInjection/Profiling/CallTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/CallTreeNode.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/EnumerableExtensions.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/Instrumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/Instrumentation.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/ProfilingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/ProfilingResult.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/ProfilingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/ProfilingSession.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/SequencePoint.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/Step.cs -------------------------------------------------------------------------------- /HostInjection/Profiling/Timing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Profiling/Timing.cs -------------------------------------------------------------------------------- /HostInjection/RapidSenseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/RapidSenseService.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/CodeGenAst/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/CodeGenAst/Function.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/CodeGenAst/If.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/CodeGenAst/If.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/CodeGenAst/RawText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/CodeGenAst/RawText.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ConvertToPsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ConvertToPsItem.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ConvertToSplat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ConvertToSplat.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ExportModuleMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ExportModuleMember.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ExtractFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ExtractFile.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ExtractFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ExtractFunction.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/ExtractVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/ExtractVariable.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/IRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/IRefactoring.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/IntroduceUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/IntroduceUsing.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/RefactorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/RefactorService.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/RenameSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/RenameSymbol.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/Reorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/Reorder.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/SplitPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/SplitPipe.cs -------------------------------------------------------------------------------- /HostInjection/Refactoring/WrapDotNetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/Refactoring/WrapDotNetMethod.cs -------------------------------------------------------------------------------- /HostInjection/RegisterTreeViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/RegisterTreeViewCommand.cs -------------------------------------------------------------------------------- /HostInjection/RemoteParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/RemoteParser.cs -------------------------------------------------------------------------------- /HostInjection/RemoveTextDocumentTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/RemoveTextDocumentTextCommand.cs -------------------------------------------------------------------------------- /HostInjection/RemoveTextEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/RemoveTextEditorCommand.cs -------------------------------------------------------------------------------- /HostInjection/SendTerminalTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/SendTerminalTextCommand.cs -------------------------------------------------------------------------------- /HostInjection/ServerConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ServerConsoleLogger.cs -------------------------------------------------------------------------------- /HostInjection/SetStatusBarMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/SetStatusBarMessageCommand.cs -------------------------------------------------------------------------------- /HostInjection/SetTextEditorDecorationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/SetTextEditorDecorationCommand.cs -------------------------------------------------------------------------------- /HostInjection/ShowInputBoxCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ShowInputBoxCommand.cs -------------------------------------------------------------------------------- /HostInjection/ShowMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ShowMessageCommand.cs -------------------------------------------------------------------------------- /HostInjection/ShowQuickPickCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/ShowQuickPickCommand.cs -------------------------------------------------------------------------------- /HostInjection/StartPoshToolsServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/StartPoshToolsServerCommand.cs -------------------------------------------------------------------------------- /HostInjection/TreeViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/TreeViewService.cs -------------------------------------------------------------------------------- /HostInjection/VSCodeCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/VSCodeCmdlet.cs -------------------------------------------------------------------------------- /HostInjection/VSCodeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/VSCodeHelpers.cs -------------------------------------------------------------------------------- /HostInjection/WorkspaceAnalysisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/WorkspaceAnalysisService.cs -------------------------------------------------------------------------------- /HostInjection/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/HostInjection/packages.lock.json -------------------------------------------------------------------------------- /Icons/Dev10.0/GenericPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/GenericPackage.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/Images_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/Images_32bit.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/IronPythonWPFApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/IronPythonWPFApplication.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/IronPythonWpfWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/IronPythonWpfWindow.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/Package.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/ProfilingTreeView.png -------------------------------------------------------------------------------- /Icons/Dev10.0/PyFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PyFile.png -------------------------------------------------------------------------------- /Icons/Dev10.0/PyProjectBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PyProjectBig.png -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonEmptyApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonEmptyApplication.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonFile.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonImageList.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonPackageIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonPackageIcons.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonProject.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonProjectBig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonProjectBig.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonWebSite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonWebSite.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/PythonWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/PythonWindowsForm.ico -------------------------------------------------------------------------------- /Icons/Dev10.0/Refactoring_Commands.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/Refactoring_Commands.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/ReplToolBarImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/ReplToolBarImages.png -------------------------------------------------------------------------------- /Icons/Dev10.0/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/completionset.bmp -------------------------------------------------------------------------------- /Icons/Dev10.0/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev10.0/imagelis.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Clearwindowcontent_6304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Clearwindowcontent_6304.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Clearwindowcontent_6304_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Clearwindowcontent_6304_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ExitRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ExitRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Folder_6221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Folder_6221.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Folder_6221_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Folder_6221_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Folder_6222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Folder_6222.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Folder_6222_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Folder_6222_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/GenericPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/GenericPackage.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/Images_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Images_32bit.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Images_32bit.png -------------------------------------------------------------------------------- /Icons/Dev11.0/IronPythonWPFApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/IronPythonWPFApplication.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/IronPythonWpfWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/IronPythonWpfWindow.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/Launch_7018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Launch_7018.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Launch_7018_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Launch_7018_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/NewPerformanceSession_8866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/NewPerformanceSession_8866.png -------------------------------------------------------------------------------- /Icons/Dev11.0/NewPerformanceSession_8866_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/NewPerformanceSession_8866_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Packaging_Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Packaging_Explorer.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Packaging_Explorer_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Packaging_Explorer_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ProfilingCmdBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ProfilingCmdBar.png -------------------------------------------------------------------------------- /Icons/Dev11.0/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ProfilingTreeView.png -------------------------------------------------------------------------------- /Icons/Dev11.0/PyFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PyFile.png -------------------------------------------------------------------------------- /Icons/Dev11.0/PyProjectBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PyProjectBig.png -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonEmptyApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonEmptyApplication.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonFile.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonImageList.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonImageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonImageList.png -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonPackageIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonPackageIcons.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonPackageIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonPackageIcons.png -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonProject.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonProjectBig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonProjectBig.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonWebSite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonWebSite.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/PythonWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/PythonWindowsForm.ico -------------------------------------------------------------------------------- /Icons/Dev11.0/Refactoring_Commands.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Refactoring_Commands.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ReplToolBarImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ReplToolBarImages.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ShowPerformanceSession_7015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ShowPerformanceSession_7015.png -------------------------------------------------------------------------------- /Icons/Dev11.0/ShowPerformanceSession_7015_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ShowPerformanceSession_7015_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/ShowReferences_5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ShowReferences_5551.png -------------------------------------------------------------------------------- /Icons/Dev11.0/ShowReferences_5551_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/ShowReferences_5551_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/StartRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/StartRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Stop_8817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Stop_8817.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Stop_8817_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Stop_8817_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/Undo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Undo_16x.png -------------------------------------------------------------------------------- /Icons/Dev11.0/Undo_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/Undo_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/completionset.bmp -------------------------------------------------------------------------------- /Icons/Dev11.0/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev11.0/imagelis.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Clearwindowcontent_6304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Clearwindowcontent_6304.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Clearwindowcontent_6304_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Clearwindowcontent_6304_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ExitRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ExitRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Folder_6221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Folder_6221.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Folder_6221_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Folder_6221_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Folder_6222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Folder_6222.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Folder_6222_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Folder_6222_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/GenericPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/GenericPackage.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/Images_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Images_32bit.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Images_32bit.png -------------------------------------------------------------------------------- /Icons/Dev12.0/IronPythonWPFApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/IronPythonWPFApplication.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/IronPythonWpfWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/IronPythonWpfWindow.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/Launch_7018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Launch_7018.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Launch_7018_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Launch_7018_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/NewPerformanceSession_8866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/NewPerformanceSession_8866.png -------------------------------------------------------------------------------- /Icons/Dev12.0/NewPerformanceSession_8866_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/NewPerformanceSession_8866_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Packaging_Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Packaging_Explorer.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Packaging_Explorer_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Packaging_Explorer_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ProfilingCmdBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ProfilingCmdBar.png -------------------------------------------------------------------------------- /Icons/Dev12.0/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ProfilingTreeView.png -------------------------------------------------------------------------------- /Icons/Dev12.0/PyFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PyFile.png -------------------------------------------------------------------------------- /Icons/Dev12.0/PyProjectBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PyProjectBig.png -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonEmptyApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonEmptyApplication.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonFile.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonImageList.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonImageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonImageList.png -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonPackageIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonPackageIcons.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonPackageIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonPackageIcons.png -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonProject.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonProjectBig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonProjectBig.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonWebSite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonWebSite.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/PythonWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/PythonWindowsForm.ico -------------------------------------------------------------------------------- /Icons/Dev12.0/Refactoring_Commands.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Refactoring_Commands.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ReplToolBarImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ReplToolBarImages.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ShowPerformanceSession_7015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ShowPerformanceSession_7015.png -------------------------------------------------------------------------------- /Icons/Dev12.0/ShowPerformanceSession_7015_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ShowPerformanceSession_7015_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/ShowReferences_5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ShowReferences_5551.png -------------------------------------------------------------------------------- /Icons/Dev12.0/ShowReferences_5551_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/ShowReferences_5551_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/StartRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/StartRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Stop_8817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Stop_8817.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Stop_8817_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Stop_8817_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/Undo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Undo_16x.png -------------------------------------------------------------------------------- /Icons/Dev12.0/Undo_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/Undo_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/completionset.bmp -------------------------------------------------------------------------------- /Icons/Dev12.0/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev12.0/imagelis.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Clearwindowcontent_6304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Clearwindowcontent_6304.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Clearwindowcontent_6304_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Clearwindowcontent_6304_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ExitRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ExitRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Folder_6221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Folder_6221.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Folder_6221_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Folder_6221_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Folder_6222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Folder_6222.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Folder_6222_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Folder_6222_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/GenericPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/GenericPackage.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/Images_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Images_32bit.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Images_32bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Images_32bit.png -------------------------------------------------------------------------------- /Icons/Dev14.0/IronPythonWPFApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/IronPythonWPFApplication.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/IronPythonWpfWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/IronPythonWpfWindow.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/Launch_7018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Launch_7018.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Launch_7018_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Launch_7018_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/NewPerformanceSession_8866.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/NewPerformanceSession_8866.png -------------------------------------------------------------------------------- /Icons/Dev14.0/NewPerformanceSession_8866_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/NewPerformanceSession_8866_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Packaging_Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Packaging_Explorer.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Packaging_Explorer_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Packaging_Explorer_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ProfilingCmdBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ProfilingCmdBar.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ProfilingCmdBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ProfilingCmdBar.png -------------------------------------------------------------------------------- /Icons/Dev14.0/ProfilingTreeView.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ProfilingTreeView.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ProfilingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ProfilingTreeView.png -------------------------------------------------------------------------------- /Icons/Dev14.0/PyFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PyFile.png -------------------------------------------------------------------------------- /Icons/Dev14.0/PyProjectBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PyProjectBig.png -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonEmptyApplication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonEmptyApplication.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonFile.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonImageList.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonImageList.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonImageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonImageList.png -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonPackageIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonPackageIcons.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonPackageIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonPackageIcons.png -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonProject.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonProjectBig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonProjectBig.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonWebSite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonWebSite.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/PythonWindowsForm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/PythonWindowsForm.ico -------------------------------------------------------------------------------- /Icons/Dev14.0/Refactoring_Commands.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Refactoring_Commands.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ReplToolBarImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ReplToolBarImages.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ShowPerformanceSession_7015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ShowPerformanceSession_7015.png -------------------------------------------------------------------------------- /Icons/Dev14.0/ShowPerformanceSession_7015_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ShowPerformanceSession_7015_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/ShowReferences_5551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ShowReferences_5551.png -------------------------------------------------------------------------------- /Icons/Dev14.0/ShowReferences_5551_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/ShowReferences_5551_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/StartRemoteDebugger_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/StartRemoteDebugger_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Stop_8817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Stop_8817.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Stop_8817_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Stop_8817_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/Undo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Undo_16x.png -------------------------------------------------------------------------------- /Icons/Dev14.0/Undo_16x_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/Undo_16x_24.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/completionset.bmp -------------------------------------------------------------------------------- /Icons/Dev14.0/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/Icons/Dev14.0/imagelis.bmp -------------------------------------------------------------------------------- /IronmanPowerShellHost/Executors/IExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/Executors/IExecutor.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/IronmanPSHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/IronmanPSHost.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/Program.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/ResourceLoader.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/ResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/ResourceSet.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/TestConfig.cs -------------------------------------------------------------------------------- /IronmanPowerShellHost/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/build.ps1 -------------------------------------------------------------------------------- /IronmanPowerShellHost/host.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/host.manifest.json -------------------------------------------------------------------------------- /IronmanPowerShellHost/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/packages.lock.json -------------------------------------------------------------------------------- /IronmanPowerShellHost/pslogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanPowerShellHost/pslogo.ico -------------------------------------------------------------------------------- /IronmanWinFormPowerShellHost/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanWinFormPowerShellHost/Form1.Designer.cs -------------------------------------------------------------------------------- /IronmanWinFormPowerShellHost/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanWinFormPowerShellHost/Form1.cs -------------------------------------------------------------------------------- /IronmanWinFormPowerShellHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/IronmanWinFormPowerShellHost/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptPad.Common/PSObjectTreeItemAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PSScriptPad.Common/PSObjectTreeItemAdapter.cs -------------------------------------------------------------------------------- /PSScriptPad.Common/PSScriptPad.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PSScriptPad.Common/PSScriptPad.Common.csproj -------------------------------------------------------------------------------- /PSScriptPad.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PSScriptPad.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PSScriptPad.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PSScriptPad.Common/packages.config -------------------------------------------------------------------------------- /PowerShell.HostService.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShell.HostService.Console/Program.cs -------------------------------------------------------------------------------- /PowerShell.HostService.Console/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShell.HostService.Console/app.config -------------------------------------------------------------------------------- /PowerShellProTools.Host.Tests/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host.Tests/packages.lock.json -------------------------------------------------------------------------------- /PowerShellProTools.Host/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/.vscode/launch.json -------------------------------------------------------------------------------- /PowerShellProTools.Host/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/.vscode/tasks.json -------------------------------------------------------------------------------- /PowerShellProTools.Host/PackagingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/PackagingService.cs -------------------------------------------------------------------------------- /PowerShellProTools.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/Program.cs -------------------------------------------------------------------------------- /PowerShellProTools.Host/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/global.json -------------------------------------------------------------------------------- /PowerShellProTools.Host/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.Host/packages.lock.json -------------------------------------------------------------------------------- /PowerShellProTools.SharedCommands/DteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.SharedCommands/DteManager.cs -------------------------------------------------------------------------------- /PowerShellProTools.SharedCommands/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellProTools.SharedCommands/Variable.cs -------------------------------------------------------------------------------- /PowerShellTools.2022/PowerShellTools.2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/PowerShellTools.2022.csproj -------------------------------------------------------------------------------- /PowerShellTools.2022/PowerShellTools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/PowerShellTools.targets -------------------------------------------------------------------------------- /PowerShellTools.2022/PowerShellTools.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/PowerShellTools.vsct -------------------------------------------------------------------------------- /PowerShellTools.2022/ReplWindow.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/ReplWindow.vsct -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/DataIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/DataIcon.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/IMSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/IMSLogo.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_0.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_1.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_2.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_3.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_4.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Images_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Images_5.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/ModuleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/ModuleIcon.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/ModuleProject.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/ModuleProject.pdn -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Package.ico -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/PowerShell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/PowerShell.ico -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Project.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Project.pdn -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/ProjectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/ProjectIcon.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Project_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Project_16.bmp -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/ScriptIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/ScriptIcon.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/TestIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/TestIcon.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/Thumbs.db -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/completionset.bmp -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/powershell.png -------------------------------------------------------------------------------- /PowerShellTools.2022/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/Resources/settings.png -------------------------------------------------------------------------------- /PowerShellTools.2022/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/license.txt -------------------------------------------------------------------------------- /PowerShellTools.2022/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/packages.lock.json -------------------------------------------------------------------------------- /PowerShellTools.2022/prebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/prebuild.ps1 -------------------------------------------------------------------------------- /PowerShellTools.2022/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.2022/preview.png -------------------------------------------------------------------------------- /PowerShellTools.HostService.UnitTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService.UnitTest/app.config -------------------------------------------------------------------------------- /PowerShellTools.HostService.x86/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService.x86/App.xaml -------------------------------------------------------------------------------- /PowerShellTools.HostService.x86/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService.x86/App.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools.HostService.x86/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService.x86/MainWindow.xaml -------------------------------------------------------------------------------- /PowerShellTools.HostService.x86/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService.x86/packages.config -------------------------------------------------------------------------------- /PowerShellTools.HostService/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/App.xaml -------------------------------------------------------------------------------- /PowerShellTools.HostService/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/App.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools.HostService/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/ConsoleManager.cs -------------------------------------------------------------------------------- /PowerShellTools.HostService/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/MainWindow.xaml -------------------------------------------------------------------------------- /PowerShellTools.HostService/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools.HostService/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/Resources.resx -------------------------------------------------------------------------------- /PowerShellTools.HostService/ServiceCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/ServiceCommon.cs -------------------------------------------------------------------------------- /PowerShellTools.HostService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.HostService/packages.config -------------------------------------------------------------------------------- /PowerShellTools.Module/PoshToolsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Module/PoshToolsCmdlet.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Arguments.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/AstUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/AstUtilities.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Commands/FormatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Commands/FormatCommand.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Commands/ICommand.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Commands/PacakgeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Commands/PacakgeScript.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Constants.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Controls/WaterMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Controls/WaterMark.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/DebugEngine/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/DebugEngine/Engine.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/DebugEngine/HostUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/DebugEngine/HostUi.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/DebugEngine/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/DebugEngine/PInvoke.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/EditorImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/EditorImports.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Explorer/UI/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Explorer/UI/Generic.xaml -------------------------------------------------------------------------------- /PowerShellTools.Shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Guids.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/IVisualStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/IVisualStudio.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Intellisense/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Intellisense/Utilities.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ObjectExtensions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ObservableObject.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Options/BaseOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Options/BaseOptionPage.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Options/BitnessOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Options/BitnessOption.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Options/GeneralOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Options/GeneralOptions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/PSExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/PSExtensions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/PSToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/PSToken.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/PackageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/PackageProperties.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/PowerShellConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/PowerShellConstants.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/PowerShellToolsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/PowerShellToolsPackage.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ProToolsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ProToolsPackage.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ProToolsPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ProToolsPackage.resx -------------------------------------------------------------------------------- /PowerShellTools.Shared/Project/ImageListIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Project/ImageListIndex.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Project/PSBuildTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Project/PSBuildTask.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/RegistrationAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/RegistrationAttributes.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/History.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/IReplCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/IReplCommand.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/IReplWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/IReplWindow.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/OutputBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/OutputBuffer.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/OutputColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/OutputColors.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/ReplInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/ReplInput.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/ReplOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/ReplOptions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/Repl/ReplWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/Repl/ReplWindow.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/ReplGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/ReplGuids.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/ReplPkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/ReplPkgCmdID.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/ReplResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/ReplResources.resx -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/ReplVSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/ReplVSPackage.resx -------------------------------------------------------------------------------- /PowerShellTools.Shared/Repl/ReplWindowPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Repl/ReplWindowPackage.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Resources.Designer.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/Resources.resx -------------------------------------------------------------------------------- /PowerShellTools.Shared/RunspaceRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/RunspaceRef.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/SecureStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/SecureStringExtensions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/StringExtensions.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ToolWindows/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ToolWindows/Modules.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/ToolWindows/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/ToolWindows/Variables.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/UiContextUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/UiContextUtilities.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/VisualStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/VisualStudio.cs -------------------------------------------------------------------------------- /PowerShellTools.Shared/VsShellDialogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Shared/VsShellDialogWindow.cs -------------------------------------------------------------------------------- /PowerShellTools.Templates.Data/Script.psd1: -------------------------------------------------------------------------------- 1 | # 2 | # $safeitemname$.psd1 3 | # 4 | -------------------------------------------------------------------------------- /PowerShellTools.Templates.FormProject/Form.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Templates.FormProject/Form.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Templates.Module/Script.psm1: -------------------------------------------------------------------------------- 1 | # 2 | # $safeitemname$.psm1 3 | # 4 | -------------------------------------------------------------------------------- /PowerShellTools.Templates.Script/Script.ps1: -------------------------------------------------------------------------------- 1 | # 2 | # $safeitemname$.ps1 3 | # 4 | -------------------------------------------------------------------------------- /PowerShellTools.Templates.ScriptProject/Script.ps1: -------------------------------------------------------------------------------- 1 | # 2 | # Script.ps1 3 | # 4 | -------------------------------------------------------------------------------- /PowerShellTools.Templates.Test/Script.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Templates.Test/Script.Tests.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/Assets/form.Export.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Assets/form.Export.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/ClassifierService.Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/ClassifierService.Test.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/Common/VariableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Common/VariableTest.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/Mocking/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Mocking/TextEditor.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/Packager/BundlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Packager/BundlerTests.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/PowerShellTools.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/PowerShellTools.Test.csproj -------------------------------------------------------------------------------- /PowerShellTools.Test/Pretty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Pretty.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/Pretty/Pretty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Pretty/Pretty.Tests.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/Pretty/Pretty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Pretty/Pretty.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/RemoteDebuggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/RemoteDebuggingTest.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/ScriptDebuggerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/ScriptDebuggerTest.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/TestFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/TestFile.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/TestFile1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/TestFile1.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/TestUtilities.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/Ugly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/Ugly.ps1 -------------------------------------------------------------------------------- /PowerShellTools.Test/VsxHostTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/VsxHostTest.cs -------------------------------------------------------------------------------- /PowerShellTools.Test/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.Test/packages.lock.json -------------------------------------------------------------------------------- /PowerShellTools.TestAdapter/TestAdapterHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.TestAdapter/TestAdapterHost.cs -------------------------------------------------------------------------------- /PowerShellTools.TestAdapter/TestCaseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.TestAdapter/TestCaseSet.cs -------------------------------------------------------------------------------- /PowerShellTools.TestAdapter/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.TestAdapter/packages.lock.json -------------------------------------------------------------------------------- /PowerShellTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools.sln -------------------------------------------------------------------------------- /PowerShellTools/Editors/DataModel/SnapinView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/DataModel/SnapinView.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/DescriptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/DescriptionControl.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/EditorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/EditorControl.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/EditorControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/EditorControl.resx -------------------------------------------------------------------------------- /PowerShellTools/Editors/EditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/EditorFactory.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/EditorPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/EditorPane.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/EditorPane.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/EditorPane.resx -------------------------------------------------------------------------------- /PowerShellTools/Editors/ExamplesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/ExamplesControl.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/ExamplesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/ExamplesControl.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/IEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/IEditor.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/MainGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/MainGrid.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/MainGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/MainGrid.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/MainWindow.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/NavigationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/NavigationControl.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/ParameterControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/ParameterControl.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/ParameterControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/ParameterControl.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/RelatedLinks.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/RelatedLinks.xaml -------------------------------------------------------------------------------- /PowerShellTools/Editors/RelatedLinks.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/RelatedLinks.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/Utility/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/Utility/FileHelper.cs -------------------------------------------------------------------------------- /PowerShellTools/Editors/Utility/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Editors/Utility/Helpers.cs -------------------------------------------------------------------------------- /PowerShellTools/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/License.txt -------------------------------------------------------------------------------- /PowerShellTools/MyControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/MyControl.xaml -------------------------------------------------------------------------------- /PowerShellTools/MyControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/MyControl.xaml.cs -------------------------------------------------------------------------------- /PowerShellTools/MyToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/MyToolWindow.cs -------------------------------------------------------------------------------- /PowerShellTools/PowerShellTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/PowerShellTools.csproj -------------------------------------------------------------------------------- /PowerShellTools/PowerShellTools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/PowerShellTools.targets -------------------------------------------------------------------------------- /PowerShellTools/PowerShellTools.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/PowerShellTools.vsct -------------------------------------------------------------------------------- /PowerShellTools/PowerShellToolsColors.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/PowerShellToolsColors.pkgdef -------------------------------------------------------------------------------- /PowerShellTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerShellTools/ReplWindow.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/ReplWindow.vsct -------------------------------------------------------------------------------- /PowerShellTools/Resources/DataIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/DataIcon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/IMSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/IMSLogo.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_0.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_1.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_2.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_3.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_4.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Images_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Images_5.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/ModuleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/ModuleIcon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/ModuleProject.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/ModuleProject.pdn -------------------------------------------------------------------------------- /PowerShellTools/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Package.ico -------------------------------------------------------------------------------- /PowerShellTools/Resources/PowerShell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/PowerShell.ico -------------------------------------------------------------------------------- /PowerShellTools/Resources/Project.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Project.pdn -------------------------------------------------------------------------------- /PowerShellTools/Resources/ProjectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/ProjectIcon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Project_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Project_16.bmp -------------------------------------------------------------------------------- /PowerShellTools/Resources/ScriptIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/ScriptIcon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/TestIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/TestIcon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/Thumbs.db -------------------------------------------------------------------------------- /PowerShellTools/Resources/VariablesCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/VariablesCommand.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/VariablesPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/VariablesPackage.ico -------------------------------------------------------------------------------- /PowerShellTools/Resources/completionset.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/completionset.bmp -------------------------------------------------------------------------------- /PowerShellTools/Resources/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/powershell.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/powershell_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/powershell_icon.png -------------------------------------------------------------------------------- /PowerShellTools/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/Resources/settings.png -------------------------------------------------------------------------------- /PowerShellTools/ToolWindows/Icons/Key_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/ToolWindows/Icons/Key_16x.png -------------------------------------------------------------------------------- /PowerShellTools/ToolWindows/Icons/Link_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/ToolWindows/Icons/Link_16x.png -------------------------------------------------------------------------------- /PowerShellTools/ToolWindows/Icons/Save_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/ToolWindows/Icons/Save_16x.png -------------------------------------------------------------------------------- /PowerShellTools/ToolWindows/Icons/ps-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/ToolWindows/Icons/ps-logo.png -------------------------------------------------------------------------------- /PowerShellTools/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/packages.lock.json -------------------------------------------------------------------------------- /PowerShellTools/powershell-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/powershell-large.png -------------------------------------------------------------------------------- /PowerShellTools/prebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/prebuild.ps1 -------------------------------------------------------------------------------- /PowerShellTools/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellTools/preview.png -------------------------------------------------------------------------------- /PowerShellToolsPro.Analytics/AnalyticsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Analytics/AnalyticsClient.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/.vscode/launch.json -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/AstCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/AstCache.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/CreateHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/CreateHelp.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/Help/Merge-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/Help/Merge-Script.md -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/MergeScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/MergeScriptCommand.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/ObjectExtensions.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/Tests/Initialize.ps1: -------------------------------------------------------------------------------- 1 | Import-Module (Join-Path $PSScriptRoot "..\bin\Debug\net462\PowerShellToolsPro.Cmdlets.dll") -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/app.config -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/build.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/nuget.exe -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/obfuscar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/obfuscar.xml -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/packages.lock.json -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/post-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/post-build.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro.Cmdlets/publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Cmdlets/publish.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro.MsBuild/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.MsBuild/FodyWeavers.xml -------------------------------------------------------------------------------- /PowerShellToolsPro.MsBuild/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.MsBuild/app.config -------------------------------------------------------------------------------- /PowerShellToolsPro.MsBuild/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.MsBuild/packages.lock.json -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager.Test/Assets/Form.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager.Test/Assets/Form.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager.Test/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager.Test/Assets/icon.ico -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager.Test/BundlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager.Test/BundlerTests.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager.Test/OldCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager.Test/OldCompiler.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/App.config -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/AppConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/AppConfigManager.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/Bundler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/Bundler.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/CodeGenerator.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/Compiler.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/GacInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/GacInfo.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/IPathResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/IPathResolver.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/IconChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/IconChanger.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/ModuleFunctions.ps1: -------------------------------------------------------------------------------- 1 | function Find-RootModule { 2 | param($Psd1) 3 | 4 | 5 | } -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/ModuleInfo.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/Obfuscar.Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/Obfuscar.Console.exe -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/Obfuscator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/Obfuscator.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/PackageProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/PackageProcess.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/ParameterFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/ParameterFinder.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/UpdateHostStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/UpdateHostStage.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/VSEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/VSEntry.cs -------------------------------------------------------------------------------- /PowerShellToolsPro.Packager/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Packager/packages.lock.json -------------------------------------------------------------------------------- /PowerShellToolsPro.Templates.FormItem/Form.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro.Templates.FormItem/Form.ps1 -------------------------------------------------------------------------------- /PowerShellToolsPro/PowerShellToolsPro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowerShellToolsPro/PowerShellToolsPro.csproj -------------------------------------------------------------------------------- /PowershellTools.Common/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowershellTools.Common/Resources.Designer.cs -------------------------------------------------------------------------------- /PowershellTools.Common/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowershellTools.Common/Resources.resx -------------------------------------------------------------------------------- /PowershellTools.Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/PowershellTools.Common/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/README.md -------------------------------------------------------------------------------- /ReplWindow/PowerShellTools.Repl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ReplWindow/PowerShellTools.Repl.csproj -------------------------------------------------------------------------------- /ReplWindow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ReplWindow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReplWindow/ReplWindow.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ReplWindow/ReplWindow.vsct -------------------------------------------------------------------------------- /ReplWindow/VSPackage.xform.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ReplWindow/VSPackage.xform.resx -------------------------------------------------------------------------------- /ReplWindow/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ReplWindow/source.extension.vsixmanifest -------------------------------------------------------------------------------- /ThirdParty/PowerGuiVsxLogConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/PowerGuiVsxLogConfig.xml -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/AssemblyReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/AssemblyReferenceNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Attributes.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Automation/OAFileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Automation/OAFileItem.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Automation/OAFolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Automation/OAFolderItem.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Automation/OAProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Automation/OAProject.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Automation/OAProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Automation/OAProperties.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Automation/OAProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Automation/OAProperty.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/BuildDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/BuildDependency.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/BuildPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/BuildPropertyPage.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ComReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ComReferenceNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ConfigProvider.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ConfigurationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ConfigurationProperties.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/DataObject.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/DependentFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/DependentFileNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/DocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/DocumentManager.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/EnumDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/EnumDependencies.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/FileChangeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/FileChangeManager.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/FileDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/FileDocumentManager.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/FileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/FileNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/FolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/FolderNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/GlobalSuppressions.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/HierarchyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/HierarchyNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/IDEBuildLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/IDEBuildLogger.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ImageHandler.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Interfaces.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Key.snk -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/LocalizableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/LocalizableProperties.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Misc/ExternDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Misc/ExternDll.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Misc/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Misc/NativeMethods.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/NestedProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/NestedProjectNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/NodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/NodeProperties.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/OleServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/OleServiceProvider.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Output.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/OutputGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/OutputGroup.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectConfig.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectContainerNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectElement.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectFactory.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectFileConstants.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectNode.CopyPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectNode.CopyPaste.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectNode.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectNode.Events.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectOptions.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectPackage.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ProjectReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ProjectReferenceNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ReferenceContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ReferenceContainerNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/ReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/ReferenceNode.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/RegisteredProjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/RegisteredProjectType.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Resources/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Resources/imagelis.bmp -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/SelectionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/SelectionListener.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/SettingsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/SettingsPage.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/SingleFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/SingleFileGenerator.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/SolutionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/SolutionListener.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/StructuresEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/StructuresEnums.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/SuspendFileChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/SuspendFileChanges.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/TokenProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/TokenProcessor.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Tracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Tracing.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/TrackDocumentsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/TrackDocumentsHelper.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/TypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/TypeConverters.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/UIThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/UIThread.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/Utilities.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/VSShellUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/VSShellUtilities.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/VisualStudio.Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/VisualStudio.Project.cs -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/VisualStudio.Project.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/VisualStudio.Project.resx -------------------------------------------------------------------------------- /ThirdParty/Src/CSharp/VsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/Src/CSharp/VsCommands.cs -------------------------------------------------------------------------------- /ThirdParty/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/ThirdParty/log4net.dll -------------------------------------------------------------------------------- /WinFormDesigner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/App.config -------------------------------------------------------------------------------- /WinFormDesigner/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/FodyWeavers.xml -------------------------------------------------------------------------------- /WinFormDesigner/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/FodyWeavers.xsd -------------------------------------------------------------------------------- /WinFormDesigner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Program.cs -------------------------------------------------------------------------------- /WinFormDesigner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinFormDesigner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinFormDesigner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Properties/Resources.resx -------------------------------------------------------------------------------- /WinFormDesigner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinFormDesigner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Properties/Settings.settings -------------------------------------------------------------------------------- /WinFormDesigner/Save.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Save.ico -------------------------------------------------------------------------------- /WinFormDesigner/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/Save.png -------------------------------------------------------------------------------- /WinFormDesigner/WinFormDesigner.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/WinFormDesigner.Designer.cs -------------------------------------------------------------------------------- /WinFormDesigner/WinFormDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/WinFormDesigner.cs -------------------------------------------------------------------------------- /WinFormDesigner/WinFormDesigner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/WinFormDesigner.csproj -------------------------------------------------------------------------------- /WinFormDesigner/WinFormDesigner.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/WinFormDesigner.resx -------------------------------------------------------------------------------- /WinFormDesigner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/WinFormDesigner/packages.config -------------------------------------------------------------------------------- /WinFormDesigner/version.txt: -------------------------------------------------------------------------------- 1 | 2024.7.0 -------------------------------------------------------------------------------- /branding/PowerShellService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/PowerShellService.png -------------------------------------------------------------------------------- /branding/PowerShellWindowsForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/PowerShellWindowsForm.png -------------------------------------------------------------------------------- /branding/PowerShellWpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/PowerShellWpf.png -------------------------------------------------------------------------------- /branding/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/Thumbs.db -------------------------------------------------------------------------------- /branding/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/logo.ico -------------------------------------------------------------------------------- /branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/logo.png -------------------------------------------------------------------------------- /branding/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/branding/logo.svg -------------------------------------------------------------------------------- /cert/WinAppDeployCmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/WinAppDeployCmd.exe -------------------------------------------------------------------------------- /cert/WinAppDeployCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/WinAppDeployCommon.dll -------------------------------------------------------------------------------- /cert/appxpackaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/appxpackaging.dll -------------------------------------------------------------------------------- /cert/appxsip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/appxsip.dll -------------------------------------------------------------------------------- /cert/en-US/AppxPackaging.dll.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/en-US/AppxPackaging.dll.mui -------------------------------------------------------------------------------- /cert/en/Microsoft.Tools.Deploy.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/en/Microsoft.Tools.Deploy.resources.dll -------------------------------------------------------------------------------- /cert/en/WinAppDeployCmd.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/en/WinAppDeployCmd.resources.dll -------------------------------------------------------------------------------- /cert/mssign32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/mssign32.dll -------------------------------------------------------------------------------- /cert/opcservices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/opcservices.dll -------------------------------------------------------------------------------- /cert/signtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/signtool.exe -------------------------------------------------------------------------------- /cert/signtool.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/signtool.exe.manifest -------------------------------------------------------------------------------- /cert/wintrust.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/wintrust.dll -------------------------------------------------------------------------------- /cert/wintrust.dll.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/cert/wintrust.dll.ini -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/packages.config -------------------------------------------------------------------------------- /poshtools.version.txt: -------------------------------------------------------------------------------- 1 | 2025.11.0 -------------------------------------------------------------------------------- /setenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/setenv.cmd -------------------------------------------------------------------------------- /tests/Merge-Script.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/tests/Merge-Script.tests.ps1 -------------------------------------------------------------------------------- /tests/TestUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/tests/TestUtilities.psm1 -------------------------------------------------------------------------------- /vscode/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/.yo-rc.json -------------------------------------------------------------------------------- /vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/package-lock.json -------------------------------------------------------------------------------- /vscode/powershellprotools/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.gitattributes -------------------------------------------------------------------------------- /vscode/powershellprotools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.gitignore -------------------------------------------------------------------------------- /vscode/powershellprotools/.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.hintrc -------------------------------------------------------------------------------- /vscode/powershellprotools/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.vscode/launch.json -------------------------------------------------------------------------------- /vscode/powershellprotools/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.vscode/settings.json -------------------------------------------------------------------------------- /vscode/powershellprotools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.vscode/tasks.json -------------------------------------------------------------------------------- /vscode/powershellprotools/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/.vscodeignore -------------------------------------------------------------------------------- /vscode/powershellprotools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/powershellprotools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/LICENSE -------------------------------------------------------------------------------- /vscode/powershellprotools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/README.md -------------------------------------------------------------------------------- /vscode/powershellprotools/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/global.json -------------------------------------------------------------------------------- /vscode/powershellprotools/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/logo.png -------------------------------------------------------------------------------- /vscode/powershellprotools/media/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/css/theme.css -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/bolt.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/box.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/browser.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/brush.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/code.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/dark/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/dark/refresh.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/js/bootstrap.js -------------------------------------------------------------------------------- /vscode/powershellprotools/media/light/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/light/bolt.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/light/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/light/box.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/light/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/light/brush.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/light/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/light/code.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/logo.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/media/pwsh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/media/pwsh.svg -------------------------------------------------------------------------------- /vscode/powershellprotools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/package-lock.json -------------------------------------------------------------------------------- /vscode/powershellprotools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/package.json -------------------------------------------------------------------------------- /vscode/powershellprotools/resources/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/resources/welcome.html -------------------------------------------------------------------------------- /vscode/powershellprotools/src/commands/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/commands/ast.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/commands/help.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/commands/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/commands/jobs.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/container.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/extension.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/settings.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/types.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/src/util.ts -------------------------------------------------------------------------------- /vscode/powershellprotools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/tsconfig.json -------------------------------------------------------------------------------- /vscode/powershellprotools/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/powershellprotools/tslint.json -------------------------------------------------------------------------------- /vscode/vscode.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironmansoftware/powershell-pro-tools/HEAD/vscode/vscode.build.ps1 --------------------------------------------------------------------------------