├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .paket ├── paket.bootstrapper.exe └── paket.targets ├── .travis.yml ├── Deployment.sln ├── FSharpVSPowerTools.Core.nuspec ├── FSharpVSPowerTools.sln ├── LICENSE.txt ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── docs ├── content │ ├── codeformatting.fsx │ ├── depthcolorizer.fsx │ ├── faq.fsx │ ├── findallreferences.fsx │ ├── folderorganization.fsx │ ├── generatereferences.fsx │ ├── gotometadata.fsx │ ├── highlightusage.fsx │ ├── implementinterface.fsx │ ├── index.fsx │ ├── lint.fsx │ ├── navigateto.fsx │ ├── navigatetosource.fsx │ ├── outlining.fsx │ ├── peekdefinition.fsx │ ├── quickinfopanel.fsx │ ├── recordstubgeneration.fsx │ ├── rename.fsx │ ├── resolveunopenednamespaces.fsx │ ├── syntaxcoloring.fsx │ ├── tasklistcomments.fsx │ ├── unionpatternmatchcasegeneration.fsx │ └── xmldoc.fsx ├── files │ └── img │ │ ├── FSDCDarkCustom.reg │ │ ├── FSDCDarkDefault.reg │ │ ├── FSDCLightGrey.reg │ │ ├── FSDCLightRedBlue.reg │ │ ├── FolderOrganization_ContextMenu.png │ │ ├── FolderOrganization_NewFolderDialog.png │ │ ├── auto_generate_xml_doc.gif │ │ ├── code_generation_options.png │ │ ├── configuration_dialog.png │ │ ├── depth_colorizer_dark_theme.png │ │ ├── depth_colorizer_light_theme.png │ │ ├── fantomas_options.png │ │ ├── find_all_references.png │ │ ├── general_options.png │ │ ├── generate_references.png │ │ ├── gotometadata.png │ │ ├── highlight_active_patterns.png │ │ ├── highlight_generic_parameters.png │ │ ├── highlight_operators.png │ │ ├── highlight_references.gif │ │ ├── highlight_statically_resolved_type_parameters.png │ │ ├── implement_interface.gif │ │ ├── lambda_pattern_match_case_generation_non_qualified.gif │ │ ├── lint_add_hint.gif │ │ ├── lint_change_rule_setting.gif │ │ ├── lint_disable_rule.gif │ │ ├── lint_rule_warning.gif │ │ ├── logo.pdn │ │ ├── logo.png │ │ ├── navbar.gif │ │ ├── navigate_to.gif │ │ ├── navigate_to_source.gif │ │ ├── outlining.gif │ │ ├── outlining_options.png │ │ ├── pattern_match_case_generation_non_qualified.gif │ │ ├── pattern_match_case_generation_qualified.gif │ │ ├── peek_definition.gif │ │ ├── preview.png │ │ ├── quick_info_panel.gif │ │ ├── record_stub_generation_non_qualified_field.gif │ │ ├── record_stub_generation_qualified_field.gif │ │ ├── record_stub_generation_typed_binding.gif │ │ ├── rename_refactoring.gif │ │ ├── resolve_unopened_namespaces.gif │ │ ├── syntax_coloring_demo_blue.png │ │ ├── syntax_coloring_demo_dark.png │ │ ├── syntax_coloring_options.png │ │ ├── syntax_coloring_unused_decl.png │ │ └── task_list_comments.gif └── tools │ ├── generate.fsx │ └── templates │ └── template.cshtml ├── lib └── native │ ├── x64 │ └── srcsrv.dll │ └── x86 │ └── srcsrv.dll ├── paket.dependencies ├── paket.lock ├── src ├── FSharp.Editing.VisualStudio.Tests.v2015 │ └── AssemblyInfo.fs ├── FSharp.Editing.VisualStudio.v2015 │ ├── AssemblyInfo.fs │ ├── FSharp.Editing.VisualStudio.v2015.fsproj │ ├── ImplementInterfaceSuggestedActionsSourceProvider.fs │ ├── PeekDefinition.fs │ ├── RecordStubGeneratorSuggestedActionsSourceProvider.fs │ ├── ResolveUnopenedNamespaceSuggestedActionsSourceProvider.fs │ ├── UnionPatternMatchCaseGeneratorSuggestedActionsSourceProvider.fs │ └── paket.references ├── FSharp.Editing.VisualStudio │ ├── AssemblyInfo.fs │ ├── CodeGeneration │ │ ├── CodeGenerationService.fs │ │ ├── CodeGenerationUtils.fs │ │ ├── ImplementInterfaceSmartTagger.fs │ │ ├── RecordStubGeneratorSmartTagger.fs │ │ ├── ResolveUnopenedNamespaceTagger.fs │ │ ├── UnionPatternMatchCaseGeneratorSmartTagger.fs │ │ └── XmlDocFilter.fs │ ├── Coloring │ │ ├── ClassifierTypes.fs │ │ ├── DepthAdornmentManager.fs │ │ ├── DepthTagger.fs │ │ ├── SymbolClassifier.fs │ │ ├── UnusedDeclarationMargin.fs │ │ └── UnusedSymbolClassifier.fs │ ├── Common │ │ ├── Constants.fs │ │ ├── EventHandling.fs │ │ ├── Logger.fs │ │ ├── Resource.fs │ │ ├── Setting.fs │ │ ├── Status.fs │ │ ├── ThemeManager.fs │ │ ├── Utils.fs │ │ ├── VS.fs │ │ ├── VSColors.fs │ │ └── VisualStudioVersion.fs │ ├── FSharp.Editing.VisualStudio.fsproj │ ├── Folders │ │ ├── FolderMenuCommands.fs │ │ ├── FolderMenuUI.fs │ │ ├── FolderNameDialog.fs │ │ └── MoveToFolderDialog.fs │ ├── Formatting │ │ ├── CodeFormattingCommands.fs │ │ ├── CodeFormattingServices.fs │ │ ├── FormatDocumentCommand.fs │ │ └── FormatSelectionCommand.fs │ ├── Gui │ │ ├── CommonResources.xaml │ │ ├── CommonResources.xaml.fs │ │ ├── FolderNameDialog.xaml │ │ ├── LintOptionsPageControl.xaml │ │ ├── MoveToFolderDialog.xaml │ │ ├── QuickInfoMargin.xaml │ │ └── RenameDialog.xaml │ ├── Linting │ │ ├── FileViewModel.fs │ │ ├── LintOptionsPage.fs │ │ ├── LintOptionsPageControl.xaml.fs │ │ ├── LintQuickInfoSource.fs │ │ ├── LintTagger.fs │ │ ├── LintUtils.fs │ │ ├── OptionsViewModel.fs │ │ └── RuleViewModel.fs │ ├── Navigation │ │ ├── ActiveViewsRegistratorListener.fs │ │ ├── GoToDefinitionFilter.fs │ │ ├── NavigableItemCache.fs │ │ ├── NavigateToItem.fs │ │ ├── NavigateToMetadataService.fs │ │ ├── NoPeekDefinitionFilterProvider.fs │ │ └── ReferenceSourceProvider.fs │ ├── Outlining │ │ ├── OutliningFilter.fs │ │ └── OutliningTagger.fs │ ├── ProjectSystem │ │ ├── FileSystem.fs │ │ ├── OpenDocumentsTracker.fs │ │ ├── ProjectFactory.fs │ │ ├── ProjectProvider.fs │ │ ├── ProjectSystem.fs │ │ ├── SolutionBuildEventListener.fs │ │ └── VSLanguageService.fs │ ├── Reference │ │ └── FsiReferenceCommand.fs │ ├── Symbol │ │ ├── FindReferencesFilter.fs │ │ ├── HighlightUsageFilter.fs │ │ ├── HighlightUsageTagger.fs │ │ ├── Library.fs │ │ ├── LibraryNode.fs │ │ ├── PrintfSpecifiersUsageTagger.fs │ │ ├── QuickInfoMargin.fs │ │ ├── RenameCommandFilter.fs │ │ └── RenameDialog.fs │ ├── TaskList │ │ ├── CrossSolutionTaskListCommentManager.fs │ │ ├── TaskListCommentFilter.fs │ │ ├── TaskListCommentOptions.fs │ │ └── TaskListManager.fs │ └── paket.references ├── FSharp.Editing │ ├── AssemblyInfo.fs │ ├── CodeGeneration │ │ ├── CodeGeneration.fs │ │ ├── InterfaceStubGenerator.fs │ │ ├── RecordStubGenerator.fs │ │ ├── SignatureGenerator.fs │ │ └── UnionPatternMatchCaseGenerator.fs │ ├── Coloring │ │ ├── DepthParser.fs │ │ ├── HighlightUsageInFile.fs │ │ ├── OpenDeclarationsGetter.fs │ │ ├── PrintfSpecifiersUsageGetter.fs │ │ └── UnopenedNamespacesResolver.fs │ ├── Common │ │ ├── CompilerLocationUtils.fs │ │ ├── IdentifierUtils.fs │ │ ├── Lexer.fs │ │ ├── TypedAstUtils.fs │ │ ├── UntypedAstUtils.fs │ │ ├── Utils.fs │ │ └── XmlDocParser.fs │ ├── FSharp.Editing.fsproj │ ├── Navigation │ │ ├── NavigableItemsCollector.fs │ │ └── NavigateToIndex.fs │ ├── ProjectSystem │ │ ├── AssemblyContentProvider.fs │ │ ├── LanguageService.fs │ │ ├── OpenDocumentsTracker.fs │ │ └── SolutionProvider.fs │ ├── Scratchpad.fsx │ ├── Symbols │ │ └── SourceCodeClassifier.fs │ ├── TaskListCommentExtractor.fs │ └── paket.references ├── FSharpVSPowerTools.Breadcrumb │ ├── FSharpVSPowerTools.Breadcrumb.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── source.extension.vsixmanifest └── FSharpVSPowerTools │ ├── Commands │ ├── CodeFormattingHookHelper.cs │ ├── DepthColorizerManager.cs │ ├── FindReferencesFilterProvider.cs │ ├── FontColor.cs │ ├── GotoDefinitionFilterProvider.cs │ ├── HighlightUsageFilterProvider.cs │ ├── HighlightUsageTaggerProvider.cs │ ├── ImplementInterfaceSmartTaggerProvider.cs │ ├── LintQuickInfoProvider.cs │ ├── LintTaggerProvider.cs │ ├── OutliningFilterProvider.cs │ ├── OutliningTaggerProvider.cs │ ├── PrintfSpecifiersUsageTaggerProvider.cs │ ├── QuickInfoMarginProvider.cs │ ├── RecordStubGeneratorSmartTaggerProvider.cs │ ├── RenameCommandFilterProvider.cs │ ├── ResolveUnopenedNamespaceSmartTaggerProvider.cs │ ├── StandardCommandDispatcher.cs │ ├── SymbolClassifiersProvider.cs │ ├── TaskListCommentFilterProvider.cs │ ├── UnionPatternMatchCaseGeneratorSmartTaggerProvider.cs │ ├── UnusedDeclarationMarginProvider.cs │ ├── Utils.cs │ └── XmlDocCommandFilterProvider.cs │ ├── FSharpVSPowerTools.csproj │ ├── FSharpVSPowerTools.vsct │ ├── PowerToolsCommandsPackage.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── FSharpVSPowerTools.Designer.cs │ ├── FSharpVSPowerTools.resx │ ├── Images.png │ └── Package.ico │ ├── UI │ ├── CodeGenerationOptionsControl.Designer.cs │ ├── CodeGenerationOptionsControl.cs │ ├── CodeGenerationOptionsControl.resx │ ├── CodeGenerationOptionsPage.cs │ ├── FantomasOptionsPage.cs │ ├── GeneralOptionsControl.Designer.cs │ ├── GeneralOptionsControl.cs │ ├── GeneralOptionsControl.resx │ ├── GeneralOptionsPage.cs │ ├── GlobalOptionsPage.cs │ ├── OutliningOptionControl.Designer.cs │ ├── OutliningOptionControl.cs │ ├── OutliningOptionControl.resx │ ├── OutliningOptionsControl.Designer.cs │ ├── OutliningOptionsControl.cs │ ├── OutliningOptionsControl.resx │ ├── OutliningOptionsPage.cs │ ├── OutliningTooltipZoomLevelControl.Designer.cs │ ├── OutliningTooltipZoomLevelControl.cs │ └── OutliningTooltipZoomLevelControl.resx │ ├── paket.references │ └── source.extension.vsixmanifest └── tests ├── FSharp.Editing.Tests ├── CodeGenerationTestInfrastructure.fs ├── DepthColorizerTests.fs ├── FSharp.Editing.Tests.fsproj ├── GetUsesOfSymbolInFileTests.fs ├── GoToDefinitionTests.LoadDirective.fs ├── GoToDefinitionTests.fs ├── IdentifierDetectionTests.fs ├── InterfaceStubGeneratorTests.fs ├── LanguageServiceTests.fs ├── LexerTests.fs ├── NavigableItemsCollectorTests.fs ├── NavigateToIndexTests.fs ├── OpenDeclarationsGetterTests.fs ├── OutliningTests.fs ├── PrintfSpecifiersUsageGetterTests.fs ├── RecordStubGeneratorTests.fs ├── RenameTests.fs ├── SymbolClassifierTests.fs ├── TaskListCommentExtractorTests.fs ├── TestHelpers.fs ├── UnionPatternMatchCaseGeneratorTests.fs ├── UnopenedNamespacesResolverTests.fs ├── UnusedSymbolClassifierTests.fs ├── UtilsTests.fs ├── XmlDocTests.fs ├── app.config └── paket.references ├── FSharp.Editing.VisualStudio.Tests ├── DepthTaggerTests.fs ├── ExternalProjectProvider.fs ├── FSharp.Editing.VisualStudio.Tests.fsproj ├── FindReferencesCommandTests.fs ├── FormattingCommandTests.fs ├── GoToDefinitionFilterCommandTests.fs ├── HighlightUsageTaggerTests.fs ├── ImplementInterfaceSmartTaggerTests.fs ├── LintTaggerTests.fs ├── MockDTE.fs ├── Mocks.fs ├── OutliningTaggerTests.fs ├── PrintfSpecifiersUsageTaggerTests.fs ├── ResolveUnopenedNamespaceSmartTaggerTests.fs ├── SymbolClassifierTests.fs ├── TestHelpers.fs ├── UnusedSymbolClassifierTests.fs ├── VsTestBase.fs ├── VsTestSetup.fs ├── app.config ├── net40 │ └── Foq.Usage.fsx ├── net45 │ └── Foq.Usage.fsx └── paket.references ├── TestUtilities ├── AssemblyInfoCommon.cs ├── AssertListener.cs ├── AssertUtil.cs ├── AzureUtility.cs ├── Classification.cs ├── CommonUtils.cs ├── GlobalSuppressions.cs ├── IWarningLogger.cs ├── Mocks │ ├── MockActivityLog.cs │ ├── MockBufferGraph.cs │ ├── MockClassificationType.cs │ ├── MockComponentModel.cs │ ├── MockContentType.cs │ ├── MockContentTypeRegistryService.cs │ ├── MockErrorProviderFactory.cs │ ├── MockGlyphService.cs │ ├── MockMappingPoint.cs │ ├── MockNormalizedTextChangeCollection.cs │ ├── MockReplWindow.cs │ ├── MockServiceProvider.cs │ ├── MockSettingsManager.cs │ ├── MockSettingsStore.cs │ ├── MockTextBuffer.cs │ ├── MockTextCaret.cs │ ├── MockTextChange.cs │ ├── MockTextDocument.cs │ ├── MockTextEdit.cs │ ├── MockTextOptions.cs │ ├── MockTextSelection.cs │ ├── MockTextSnapshot.cs │ ├── MockTextSnapshotLine.cs │ ├── MockTextVersion.cs │ ├── MockTextView.cs │ ├── MockTrackingPoint.cs │ ├── MockTrackingSpan.cs │ └── MockVsShell.cs ├── NativeMethods.cs ├── OutputReceiver.cs ├── Properties │ └── AssemblyInfo.cs ├── SharedProject │ ├── CodeExtensionAttribute.cs │ ├── CompileItem.cs │ ├── ContentItem.cs │ ├── CustomItem.cs │ ├── FolderItem.cs │ ├── IProjectProcessor.cs │ ├── IProjectProcessorMetadata.cs │ ├── IProjectTypeDefinitionMetadata.cs │ ├── ISolutionElement.cs │ ├── ImportDefinition.cs │ ├── ProjectContentGenerator.cs │ ├── ProjectContentGroup.cs │ ├── ProjectDefinition.cs │ ├── ProjectExtensionAttribute.cs │ ├── ProjectProperty.cs │ ├── ProjectType.cs │ ├── ProjectTypeDefinition.cs │ ├── ProjectTypeGuidAttribute.cs │ ├── SampleCodeAttribute.cs │ ├── SharedProjectTest.cs │ ├── SolutionElementFlags.cs │ ├── SolutionFile.cs │ ├── SolutionFolder.cs │ ├── StartupFileProjectProperty.cs │ └── TargetDefinition.cs ├── TestData.cs ├── TestExtensions.cs ├── TestMethod.cs ├── TestUtilities.csproj ├── VSUtility.cs ├── VsIdeHostAdapter.cs ├── WebDownloadUtility.cs └── paket.references └── data ├── DepthColorizerSampleFile.fs ├── FSharpSignature ├── FSharpSignature.fsproj ├── Program.fs ├── Sample.fs └── Sample.fsi ├── InterfaceSampleFile.fs ├── LanguageServiceSampleFile.fs ├── MultiProjects ├── MultiProjects.sln ├── Project1 │ ├── Project1.fsproj │ └── Project11.fs └── Project2 │ ├── Project2.fsproj │ └── Project21.fs ├── NavigateToSource ├── FAKETests.fs ├── NavigateToSource.fsproj ├── NavigateToSource.sln ├── OctokitTests.fs └── paket.references ├── ParseLoadDirectives ├── includes │ ├── a.fs │ └── b.fs └── test1.fsx ├── TypeProviderTests ├── FSharp.Data.DesignTime.dll ├── FSharp.Data.dll ├── TypeProviderTests.fs ├── TypeProviderTests.fsproj └── TypeProviderTests.sln ├── XmlDocSampleFile.fs └── gotodef ├── generic-cases ├── adds-necessary-parenthesis-to-function-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── adds-necessary-parenthesis-to-tuple-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-5 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-6 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-7 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── double-backtick-identifiers-are-supported-8 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-abstract-class-definition-with-default-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-class-definition-with-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-constructor-less-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-class-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-interface-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-empty-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-enum-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-exception-definition-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-exception-definition-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-f#-list-'t-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-interface-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-metadata-from-module-and-module-function-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-metadata-from-module-and-module-function-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-non-abstract-class-definition-with-virtual-member │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-partial-active-patterns │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-property-definition-generate-enclosing-type-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-record-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-struct-metadata │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-subclass-class-definition-with-override-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-total-active-patterns-should-display-enclosing-module-or-namespace │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-total-active-patterns │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-tuple-definition-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-tuple-definition-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-type-abbreviation-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-type-definition-that-contains-c#-events │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-union-case │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── go-to-union-type-definition │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-class-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-class-properties-with-setter │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-delegates-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-delegates-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-double-backtick-identifiers-on-member-constraints-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-double-backtick-identifiers-on-member-constraints-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-methods │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-module-functions-and-values-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-module-functions-and-values-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-generic-constraints-on-type-5 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-nested-modules │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-optional-parameters │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-property-method-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-record-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-record-field-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-1 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-2 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-3 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-statically-resolved-constraints-4 │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-union-case-attributes │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── handle-union-type-extension-members │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── members-are-sorted-this-way-abstract-member-member-static-member │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── operator-names-are-demangled │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── set-up-transitive-open-declarations-correctly │ ├── expected.fs │ ├── input.fs │ └── settings.json ├── support-compiled-name-attribute │ ├── expected.fs │ ├── input.fs │ └── settings.json └── type-abbreviations-for-basic-types │ ├── expected.fs │ ├── input.fs │ └── settings.json └── generic-sample └── settings.list.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /Deployment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/Deployment.sln -------------------------------------------------------------------------------- /FSharpVSPowerTools.Core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/FSharpVSPowerTools.Core.nuspec -------------------------------------------------------------------------------- /FSharpVSPowerTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/FSharpVSPowerTools.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/content/codeformatting.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/codeformatting.fsx -------------------------------------------------------------------------------- /docs/content/depthcolorizer.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/depthcolorizer.fsx -------------------------------------------------------------------------------- /docs/content/faq.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/faq.fsx -------------------------------------------------------------------------------- /docs/content/findallreferences.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/findallreferences.fsx -------------------------------------------------------------------------------- /docs/content/folderorganization.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/folderorganization.fsx -------------------------------------------------------------------------------- /docs/content/generatereferences.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/generatereferences.fsx -------------------------------------------------------------------------------- /docs/content/gotometadata.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/gotometadata.fsx -------------------------------------------------------------------------------- /docs/content/highlightusage.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/highlightusage.fsx -------------------------------------------------------------------------------- /docs/content/implementinterface.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/implementinterface.fsx -------------------------------------------------------------------------------- /docs/content/index.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/index.fsx -------------------------------------------------------------------------------- /docs/content/lint.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/lint.fsx -------------------------------------------------------------------------------- /docs/content/navigateto.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/navigateto.fsx -------------------------------------------------------------------------------- /docs/content/navigatetosource.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/navigatetosource.fsx -------------------------------------------------------------------------------- /docs/content/outlining.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/outlining.fsx -------------------------------------------------------------------------------- /docs/content/peekdefinition.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/peekdefinition.fsx -------------------------------------------------------------------------------- /docs/content/quickinfopanel.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/quickinfopanel.fsx -------------------------------------------------------------------------------- /docs/content/recordstubgeneration.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/recordstubgeneration.fsx -------------------------------------------------------------------------------- /docs/content/rename.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/rename.fsx -------------------------------------------------------------------------------- /docs/content/resolveunopenednamespaces.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/resolveunopenednamespaces.fsx -------------------------------------------------------------------------------- /docs/content/syntaxcoloring.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/syntaxcoloring.fsx -------------------------------------------------------------------------------- /docs/content/tasklistcomments.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/tasklistcomments.fsx -------------------------------------------------------------------------------- /docs/content/unionpatternmatchcasegeneration.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/unionpatternmatchcasegeneration.fsx -------------------------------------------------------------------------------- /docs/content/xmldoc.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/content/xmldoc.fsx -------------------------------------------------------------------------------- /docs/files/img/FSDCDarkCustom.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FSDCDarkCustom.reg -------------------------------------------------------------------------------- /docs/files/img/FSDCDarkDefault.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FSDCDarkDefault.reg -------------------------------------------------------------------------------- /docs/files/img/FSDCLightGrey.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FSDCLightGrey.reg -------------------------------------------------------------------------------- /docs/files/img/FSDCLightRedBlue.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FSDCLightRedBlue.reg -------------------------------------------------------------------------------- /docs/files/img/FolderOrganization_ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FolderOrganization_ContextMenu.png -------------------------------------------------------------------------------- /docs/files/img/FolderOrganization_NewFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/FolderOrganization_NewFolderDialog.png -------------------------------------------------------------------------------- /docs/files/img/auto_generate_xml_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/auto_generate_xml_doc.gif -------------------------------------------------------------------------------- /docs/files/img/code_generation_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/code_generation_options.png -------------------------------------------------------------------------------- /docs/files/img/configuration_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/configuration_dialog.png -------------------------------------------------------------------------------- /docs/files/img/depth_colorizer_dark_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/depth_colorizer_dark_theme.png -------------------------------------------------------------------------------- /docs/files/img/depth_colorizer_light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/depth_colorizer_light_theme.png -------------------------------------------------------------------------------- /docs/files/img/fantomas_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/fantomas_options.png -------------------------------------------------------------------------------- /docs/files/img/find_all_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/find_all_references.png -------------------------------------------------------------------------------- /docs/files/img/general_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/general_options.png -------------------------------------------------------------------------------- /docs/files/img/generate_references.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/generate_references.png -------------------------------------------------------------------------------- /docs/files/img/gotometadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/gotometadata.png -------------------------------------------------------------------------------- /docs/files/img/highlight_active_patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/highlight_active_patterns.png -------------------------------------------------------------------------------- /docs/files/img/highlight_generic_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/highlight_generic_parameters.png -------------------------------------------------------------------------------- /docs/files/img/highlight_operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/highlight_operators.png -------------------------------------------------------------------------------- /docs/files/img/highlight_references.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/highlight_references.gif -------------------------------------------------------------------------------- /docs/files/img/highlight_statically_resolved_type_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/highlight_statically_resolved_type_parameters.png -------------------------------------------------------------------------------- /docs/files/img/implement_interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/implement_interface.gif -------------------------------------------------------------------------------- /docs/files/img/lambda_pattern_match_case_generation_non_qualified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/lambda_pattern_match_case_generation_non_qualified.gif -------------------------------------------------------------------------------- /docs/files/img/lint_add_hint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/lint_add_hint.gif -------------------------------------------------------------------------------- /docs/files/img/lint_change_rule_setting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/lint_change_rule_setting.gif -------------------------------------------------------------------------------- /docs/files/img/lint_disable_rule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/lint_disable_rule.gif -------------------------------------------------------------------------------- /docs/files/img/lint_rule_warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/lint_rule_warning.gif -------------------------------------------------------------------------------- /docs/files/img/logo.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/logo.pdn -------------------------------------------------------------------------------- /docs/files/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/logo.png -------------------------------------------------------------------------------- /docs/files/img/navbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/navbar.gif -------------------------------------------------------------------------------- /docs/files/img/navigate_to.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/navigate_to.gif -------------------------------------------------------------------------------- /docs/files/img/navigate_to_source.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/navigate_to_source.gif -------------------------------------------------------------------------------- /docs/files/img/outlining.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/outlining.gif -------------------------------------------------------------------------------- /docs/files/img/outlining_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/outlining_options.png -------------------------------------------------------------------------------- /docs/files/img/pattern_match_case_generation_non_qualified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/pattern_match_case_generation_non_qualified.gif -------------------------------------------------------------------------------- /docs/files/img/pattern_match_case_generation_qualified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/pattern_match_case_generation_qualified.gif -------------------------------------------------------------------------------- /docs/files/img/peek_definition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/peek_definition.gif -------------------------------------------------------------------------------- /docs/files/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/preview.png -------------------------------------------------------------------------------- /docs/files/img/quick_info_panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/quick_info_panel.gif -------------------------------------------------------------------------------- /docs/files/img/record_stub_generation_non_qualified_field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/record_stub_generation_non_qualified_field.gif -------------------------------------------------------------------------------- /docs/files/img/record_stub_generation_qualified_field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/record_stub_generation_qualified_field.gif -------------------------------------------------------------------------------- /docs/files/img/record_stub_generation_typed_binding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/record_stub_generation_typed_binding.gif -------------------------------------------------------------------------------- /docs/files/img/rename_refactoring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/rename_refactoring.gif -------------------------------------------------------------------------------- /docs/files/img/resolve_unopened_namespaces.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/resolve_unopened_namespaces.gif -------------------------------------------------------------------------------- /docs/files/img/syntax_coloring_demo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/syntax_coloring_demo_blue.png -------------------------------------------------------------------------------- /docs/files/img/syntax_coloring_demo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/syntax_coloring_demo_dark.png -------------------------------------------------------------------------------- /docs/files/img/syntax_coloring_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/syntax_coloring_options.png -------------------------------------------------------------------------------- /docs/files/img/syntax_coloring_unused_decl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/syntax_coloring_unused_decl.png -------------------------------------------------------------------------------- /docs/files/img/task_list_comments.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/files/img/task_list_comments.gif -------------------------------------------------------------------------------- /docs/tools/generate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/tools/generate.fsx -------------------------------------------------------------------------------- /docs/tools/templates/template.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/docs/tools/templates/template.cshtml -------------------------------------------------------------------------------- /lib/native/x64/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/lib/native/x64/srcsrv.dll -------------------------------------------------------------------------------- /lib/native/x86/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/lib/native/x86/srcsrv.dll -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/paket.lock -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.Tests.v2015/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.Tests.v2015/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/FSharp.Editing.VisualStudio.v2015.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/FSharp.Editing.VisualStudio.v2015.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/ImplementInterfaceSuggestedActionsSourceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/ImplementInterfaceSuggestedActionsSourceProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/PeekDefinition.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/PeekDefinition.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/RecordStubGeneratorSuggestedActionsSourceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/RecordStubGeneratorSuggestedActionsSourceProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/ResolveUnopenedNamespaceSuggestedActionsSourceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/ResolveUnopenedNamespaceSuggestedActionsSourceProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/UnionPatternMatchCaseGeneratorSuggestedActionsSourceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/UnionPatternMatchCaseGeneratorSuggestedActionsSourceProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio.v2015/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio.v2015/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/CodeGenerationService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/CodeGenerationService.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/CodeGenerationUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/CodeGenerationUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/ImplementInterfaceSmartTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/ImplementInterfaceSmartTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/RecordStubGeneratorSmartTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/RecordStubGeneratorSmartTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/ResolveUnopenedNamespaceTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/ResolveUnopenedNamespaceTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/UnionPatternMatchCaseGeneratorSmartTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/UnionPatternMatchCaseGeneratorSmartTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/CodeGeneration/XmlDocFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/CodeGeneration/XmlDocFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/ClassifierTypes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/ClassifierTypes.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/DepthAdornmentManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/DepthAdornmentManager.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/DepthTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/DepthTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/SymbolClassifier.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/SymbolClassifier.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/UnusedDeclarationMargin.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/UnusedDeclarationMargin.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Coloring/UnusedSymbolClassifier.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Coloring/UnusedSymbolClassifier.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Constants.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Constants.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/EventHandling.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/EventHandling.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Logger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Logger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Resource.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Resource.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Setting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Setting.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Status.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Status.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/ThemeManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/ThemeManager.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/Utils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/VS.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/VS.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/VSColors.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/VSColors.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Common/VisualStudioVersion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Common/VisualStudioVersion.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/FSharp.Editing.VisualStudio.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/FSharp.Editing.VisualStudio.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Folders/FolderMenuCommands.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Folders/FolderMenuCommands.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Folders/FolderMenuUI.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Folders/FolderMenuUI.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Folders/FolderNameDialog.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Folders/FolderNameDialog.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Folders/MoveToFolderDialog.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Folders/MoveToFolderDialog.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Formatting/CodeFormattingCommands.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Formatting/CodeFormattingCommands.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Formatting/CodeFormattingServices.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Formatting/CodeFormattingServices.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Formatting/FormatDocumentCommand.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Formatting/FormatDocumentCommand.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Formatting/FormatSelectionCommand.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Formatting/FormatSelectionCommand.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/CommonResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/CommonResources.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/CommonResources.xaml.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/CommonResources.xaml.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/FolderNameDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/FolderNameDialog.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/LintOptionsPageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/LintOptionsPageControl.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/MoveToFolderDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/MoveToFolderDialog.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/QuickInfoMargin.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/QuickInfoMargin.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Gui/RenameDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Gui/RenameDialog.xaml -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/FileViewModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/FileViewModel.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/LintOptionsPage.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/LintOptionsPage.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/LintOptionsPageControl.xaml.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/LintOptionsPageControl.xaml.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/LintQuickInfoSource.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/LintQuickInfoSource.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/LintTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/LintTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/LintUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/LintUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/OptionsViewModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/OptionsViewModel.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Linting/RuleViewModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Linting/RuleViewModel.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/ActiveViewsRegistratorListener.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/ActiveViewsRegistratorListener.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/GoToDefinitionFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/GoToDefinitionFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/NavigableItemCache.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/NavigableItemCache.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/NavigateToItem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/NavigateToItem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/NavigateToMetadataService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/NavigateToMetadataService.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/NoPeekDefinitionFilterProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/NoPeekDefinitionFilterProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Navigation/ReferenceSourceProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Navigation/ReferenceSourceProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Outlining/OutliningFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Outlining/OutliningFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Outlining/OutliningTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Outlining/OutliningTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/FileSystem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/FileSystem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/OpenDocumentsTracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/OpenDocumentsTracker.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectFactory.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectFactory.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectSystem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/ProjectSystem.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/SolutionBuildEventListener.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/SolutionBuildEventListener.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/ProjectSystem/VSLanguageService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/ProjectSystem/VSLanguageService.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Reference/FsiReferenceCommand.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Reference/FsiReferenceCommand.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/FindReferencesFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/FindReferencesFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/HighlightUsageFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/HighlightUsageFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/HighlightUsageTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/HighlightUsageTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/Library.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/LibraryNode.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/LibraryNode.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/PrintfSpecifiersUsageTagger.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/PrintfSpecifiersUsageTagger.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/QuickInfoMargin.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/QuickInfoMargin.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/RenameCommandFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/RenameCommandFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/Symbol/RenameDialog.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/Symbol/RenameDialog.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/TaskList/CrossSolutionTaskListCommentManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/TaskList/CrossSolutionTaskListCommentManager.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/TaskList/TaskListCommentFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/TaskList/TaskListCommentFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/TaskList/TaskListCommentOptions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/TaskList/TaskListCommentOptions.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/TaskList/TaskListManager.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/TaskList/TaskListManager.fs -------------------------------------------------------------------------------- /src/FSharp.Editing.VisualStudio/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing.VisualStudio/paket.references -------------------------------------------------------------------------------- /src/FSharp.Editing/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/CodeGeneration.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/CodeGeneration/CodeGeneration.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/InterfaceStubGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/CodeGeneration/InterfaceStubGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/RecordStubGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/CodeGeneration/RecordStubGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/SignatureGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/CodeGeneration/SignatureGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/CodeGeneration/UnionPatternMatchCaseGenerator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/CodeGeneration/UnionPatternMatchCaseGenerator.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/DepthParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Coloring/DepthParser.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/HighlightUsageInFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Coloring/HighlightUsageInFile.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/OpenDeclarationsGetter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Coloring/OpenDeclarationsGetter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/PrintfSpecifiersUsageGetter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Coloring/PrintfSpecifiersUsageGetter.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Coloring/UnopenedNamespacesResolver.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Coloring/UnopenedNamespacesResolver.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/CompilerLocationUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/CompilerLocationUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/IdentifierUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/IdentifierUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/Lexer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/Lexer.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/TypedAstUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/TypedAstUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/UntypedAstUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/UntypedAstUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/Utils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/Utils.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Common/XmlDocParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Common/XmlDocParser.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/FSharp.Editing.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/FSharp.Editing.fsproj -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigableItemsCollector.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Navigation/NavigableItemsCollector.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Navigation/NavigateToIndex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Navigation/NavigateToIndex.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/AssemblyContentProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/ProjectSystem/AssemblyContentProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/LanguageService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/ProjectSystem/LanguageService.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/OpenDocumentsTracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/ProjectSystem/OpenDocumentsTracker.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/ProjectSystem/SolutionProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/ProjectSystem/SolutionProvider.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/Scratchpad.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Scratchpad.fsx -------------------------------------------------------------------------------- /src/FSharp.Editing/Symbols/SourceCodeClassifier.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/Symbols/SourceCodeClassifier.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/TaskListCommentExtractor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/TaskListCommentExtractor.fs -------------------------------------------------------------------------------- /src/FSharp.Editing/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharp.Editing/paket.references -------------------------------------------------------------------------------- /src/FSharpVSPowerTools.Breadcrumb/FSharpVSPowerTools.Breadcrumb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools.Breadcrumb/FSharpVSPowerTools.Breadcrumb.csproj -------------------------------------------------------------------------------- /src/FSharpVSPowerTools.Breadcrumb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools.Breadcrumb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools.Breadcrumb/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools.Breadcrumb/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/CodeFormattingHookHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/CodeFormattingHookHelper.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/DepthColorizerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/DepthColorizerManager.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/FindReferencesFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/FindReferencesFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/FontColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/FontColor.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/GotoDefinitionFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/GotoDefinitionFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/HighlightUsageFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/HighlightUsageFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/HighlightUsageTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/HighlightUsageTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/ImplementInterfaceSmartTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/ImplementInterfaceSmartTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/LintQuickInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/LintQuickInfoProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/LintTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/LintTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/OutliningFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/OutliningFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/OutliningTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/OutliningTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/PrintfSpecifiersUsageTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/PrintfSpecifiersUsageTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/QuickInfoMarginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/QuickInfoMarginProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/RecordStubGeneratorSmartTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/RecordStubGeneratorSmartTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/RenameCommandFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/RenameCommandFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/ResolveUnopenedNamespaceSmartTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/ResolveUnopenedNamespaceSmartTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/StandardCommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/StandardCommandDispatcher.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/SymbolClassifiersProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/SymbolClassifiersProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/TaskListCommentFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/TaskListCommentFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/UnionPatternMatchCaseGeneratorSmartTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/UnionPatternMatchCaseGeneratorSmartTaggerProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/UnusedDeclarationMarginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/UnusedDeclarationMarginProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/Utils.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Commands/XmlDocCommandFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Commands/XmlDocCommandFilterProvider.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/FSharpVSPowerTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/FSharpVSPowerTools.csproj -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/FSharpVSPowerTools.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/FSharpVSPowerTools.vsct -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/PowerToolsCommandsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/PowerToolsCommandsPackage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Resources/FSharpVSPowerTools.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Resources/FSharpVSPowerTools.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Resources/FSharpVSPowerTools.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Resources/FSharpVSPowerTools.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Resources/Images.png -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/Resources/Package.ico -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/CodeGenerationOptionsControl.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/CodeGenerationOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/CodeGenerationOptionsPage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/FantomasOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/FantomasOptionsPage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/GeneralOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/GeneralOptionsControl.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/GeneralOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/GeneralOptionsControl.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/GeneralOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/GeneralOptionsControl.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/GeneralOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/GeneralOptionsPage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/GlobalOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/GlobalOptionsPage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionControl.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionControl.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionControl.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionsControl.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionsControl.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionsControl.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningOptionsPage.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.Designer.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.cs -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/UI/OutliningTooltipZoomLevelControl.resx -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/paket.references -------------------------------------------------------------------------------- /src/FSharpVSPowerTools/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/src/FSharpVSPowerTools/source.extension.vsixmanifest -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/CodeGenerationTestInfrastructure.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/CodeGenerationTestInfrastructure.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/DepthColorizerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/DepthColorizerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/FSharp.Editing.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/FSharp.Editing.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GetUsesOfSymbolInFileTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/GetUsesOfSymbolInFileTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GoToDefinitionTests.LoadDirective.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/GoToDefinitionTests.LoadDirective.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/GoToDefinitionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/GoToDefinitionTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/IdentifierDetectionTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/IdentifierDetectionTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/InterfaceStubGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/InterfaceStubGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/LanguageServiceTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/LanguageServiceTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/LexerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/LexerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/NavigableItemsCollectorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/NavigableItemsCollectorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/NavigateToIndexTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/NavigateToIndexTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/OpenDeclarationsGetterTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/OpenDeclarationsGetterTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/OutliningTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/OutliningTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/PrintfSpecifiersUsageGetterTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/PrintfSpecifiersUsageGetterTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/RecordStubGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/RecordStubGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/RenameTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/RenameTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/SymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/SymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/TaskListCommentExtractorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/TaskListCommentExtractorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/TestHelpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/TestHelpers.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnionPatternMatchCaseGeneratorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/UnionPatternMatchCaseGeneratorTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnopenedNamespacesResolverTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/UnopenedNamespacesResolverTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UnusedSymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/UnusedSymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/UtilsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/UtilsTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/XmlDocTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/XmlDocTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/app.config -------------------------------------------------------------------------------- /tests/FSharp.Editing.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.Tests/paket.references -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/DepthTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/DepthTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/ExternalProjectProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/ExternalProjectProvider.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/FSharp.Editing.VisualStudio.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/FSharp.Editing.VisualStudio.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/FindReferencesCommandTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/FindReferencesCommandTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/FormattingCommandTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/FormattingCommandTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/GoToDefinitionFilterCommandTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/GoToDefinitionFilterCommandTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/HighlightUsageTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/HighlightUsageTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/ImplementInterfaceSmartTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/ImplementInterfaceSmartTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/LintTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/LintTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/MockDTE.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/MockDTE.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/Mocks.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/Mocks.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/OutliningTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/OutliningTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/PrintfSpecifiersUsageTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/PrintfSpecifiersUsageTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/ResolveUnopenedNamespaceSmartTaggerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/ResolveUnopenedNamespaceSmartTaggerTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/SymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/SymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/TestHelpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/TestHelpers.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/UnusedSymbolClassifierTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/UnusedSymbolClassifierTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/VsTestBase.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/VsTestBase.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/VsTestSetup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/VsTestSetup.fs -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/app.config -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/net40/Foq.Usage.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/net40/Foq.Usage.fsx -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/net45/Foq.Usage.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/net45/Foq.Usage.fsx -------------------------------------------------------------------------------- /tests/FSharp.Editing.VisualStudio.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/FSharp.Editing.VisualStudio.Tests/paket.references -------------------------------------------------------------------------------- /tests/TestUtilities/AssemblyInfoCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/AssemblyInfoCommon.cs -------------------------------------------------------------------------------- /tests/TestUtilities/AssertListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/AssertListener.cs -------------------------------------------------------------------------------- /tests/TestUtilities/AssertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/AssertUtil.cs -------------------------------------------------------------------------------- /tests/TestUtilities/AzureUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/AzureUtility.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Classification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Classification.cs -------------------------------------------------------------------------------- /tests/TestUtilities/CommonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/CommonUtils.cs -------------------------------------------------------------------------------- /tests/TestUtilities/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/GlobalSuppressions.cs -------------------------------------------------------------------------------- /tests/TestUtilities/IWarningLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/IWarningLogger.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockActivityLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockActivityLog.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockBufferGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockBufferGraph.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockClassificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockClassificationType.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockComponentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockComponentModel.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockContentType.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockContentTypeRegistryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockContentTypeRegistryService.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockErrorProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockErrorProviderFactory.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockGlyphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockGlyphService.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockMappingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockMappingPoint.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockNormalizedTextChangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockNormalizedTextChangeCollection.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockReplWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockReplWindow.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockServiceProvider.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockSettingsManager.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockSettingsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockSettingsStore.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextBuffer.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextCaret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextCaret.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextChange.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextDocument.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextEdit.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextOptions.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextSelection.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextSnapshot.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextSnapshotLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextSnapshotLine.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextVersion.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTextView.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTrackingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTrackingPoint.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockTrackingSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockTrackingSpan.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Mocks/MockVsShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Mocks/MockVsShell.cs -------------------------------------------------------------------------------- /tests/TestUtilities/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/NativeMethods.cs -------------------------------------------------------------------------------- /tests/TestUtilities/OutputReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/OutputReceiver.cs -------------------------------------------------------------------------------- /tests/TestUtilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/CodeExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/CodeExtensionAttribute.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/CompileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/CompileItem.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ContentItem.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/CustomItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/CustomItem.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/FolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/FolderItem.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/IProjectProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/IProjectProcessor.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/IProjectProcessorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/IProjectProcessorMetadata.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/IProjectTypeDefinitionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/IProjectTypeDefinitionMetadata.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ISolutionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ISolutionElement.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ImportDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ImportDefinition.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectContentGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectContentGenerator.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectContentGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectContentGroup.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectDefinition.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectExtensionAttribute.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectProperty.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectType.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectTypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectTypeDefinition.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/ProjectTypeGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/ProjectTypeGuidAttribute.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/SampleCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/SampleCodeAttribute.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/SharedProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/SharedProjectTest.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/SolutionElementFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/SolutionElementFlags.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/SolutionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/SolutionFile.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/SolutionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/SolutionFolder.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/StartupFileProjectProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/StartupFileProjectProperty.cs -------------------------------------------------------------------------------- /tests/TestUtilities/SharedProject/TargetDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/SharedProject/TargetDefinition.cs -------------------------------------------------------------------------------- /tests/TestUtilities/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/TestData.cs -------------------------------------------------------------------------------- /tests/TestUtilities/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/TestExtensions.cs -------------------------------------------------------------------------------- /tests/TestUtilities/TestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/TestMethod.cs -------------------------------------------------------------------------------- /tests/TestUtilities/TestUtilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/TestUtilities.csproj -------------------------------------------------------------------------------- /tests/TestUtilities/VSUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/VSUtility.cs -------------------------------------------------------------------------------- /tests/TestUtilities/VsIdeHostAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/VsIdeHostAdapter.cs -------------------------------------------------------------------------------- /tests/TestUtilities/WebDownloadUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/WebDownloadUtility.cs -------------------------------------------------------------------------------- /tests/TestUtilities/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/TestUtilities/paket.references -------------------------------------------------------------------------------- /tests/data/DepthColorizerSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/DepthColorizerSampleFile.fs -------------------------------------------------------------------------------- /tests/data/FSharpSignature/FSharpSignature.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/FSharpSignature/FSharpSignature.fsproj -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Program.fs: -------------------------------------------------------------------------------- 1 | module Program 2 | 3 | [] 4 | let main argv = 5 | Sample.func 10 -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Sample.fs: -------------------------------------------------------------------------------- 1 | module Sample 2 | 3 | let func (x: int) = x + 1 -------------------------------------------------------------------------------- /tests/data/FSharpSignature/Sample.fsi: -------------------------------------------------------------------------------- 1 | 2 | module Sample 3 | 4 | val func : int -> int -------------------------------------------------------------------------------- /tests/data/InterfaceSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/InterfaceSampleFile.fs -------------------------------------------------------------------------------- /tests/data/LanguageServiceSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/LanguageServiceSampleFile.fs -------------------------------------------------------------------------------- /tests/data/MultiProjects/MultiProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/MultiProjects/MultiProjects.sln -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1/Project1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/MultiProjects/Project1/Project1.fsproj -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project1/Project11.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/MultiProjects/Project1/Project11.fs -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2/Project2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/MultiProjects/Project2/Project2.fsproj -------------------------------------------------------------------------------- /tests/data/MultiProjects/Project2/Project21.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/MultiProjects/Project2/Project21.fs -------------------------------------------------------------------------------- /tests/data/NavigateToSource/FAKETests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/NavigateToSource/FAKETests.fs -------------------------------------------------------------------------------- /tests/data/NavigateToSource/NavigateToSource.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/NavigateToSource/NavigateToSource.fsproj -------------------------------------------------------------------------------- /tests/data/NavigateToSource/NavigateToSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/NavigateToSource/NavigateToSource.sln -------------------------------------------------------------------------------- /tests/data/NavigateToSource/OctokitTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/NavigateToSource/OctokitTests.fs -------------------------------------------------------------------------------- /tests/data/NavigateToSource/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/NavigateToSource/paket.references -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/includes/a.fs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/includes/b.fs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ParseLoadDirectives/test1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/ParseLoadDirectives/test1.fsx -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/FSharp.Data.DesignTime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/TypeProviderTests/FSharp.Data.DesignTime.dll -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/FSharp.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/TypeProviderTests/FSharp.Data.dll -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/TypeProviderTests/TypeProviderTests.fs -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/TypeProviderTests/TypeProviderTests.fsproj -------------------------------------------------------------------------------- /tests/data/TypeProviderTests/TypeProviderTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/TypeProviderTests/TypeProviderTests.sln -------------------------------------------------------------------------------- /tests/data/XmlDocSampleFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/XmlDocSampleFile.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let _ = Async.AwaitTask -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-function-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/adds-necessary-parenthesis-to-tuple-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/expected.fs: -------------------------------------------------------------------------------- 1 | module File 2 | 3 | type ``My abbrev`` = int 4 | -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/input.fs: -------------------------------------------------------------------------------- 1 | type ``My abbrev`` = int -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-5/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-6/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-7/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/double-backtick-identifiers-are-supported-8/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-abstract-class-definition-with-default-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-class-definition-with-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-class-definition-with-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/input.fs: -------------------------------------------------------------------------------- 1 | let x: System.Boolean = false -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-constructor-less-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-class-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-class-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-interface-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-empty-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-enum-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-enum-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-exception-definition-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x: List = [] -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-f#-list-'t-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-interface-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-interface-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/input.fs: -------------------------------------------------------------------------------- 1 | 2 | 3 | let f x = Option.map(x) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/input.fs: -------------------------------------------------------------------------------- 1 | 2 | 3 | let f x = Option.map(x) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-metadata-from-module-and-module-function-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | do Console.WriteLine("xxx") -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-method-definition-generate-enclosing-type-metadata-and-supports-c#-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-non-abstract-class-definition-with-virtual-member/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-partial-active-patterns/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-partial-active-patterns/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-property-definition-generate-enclosing-type-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-record-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-record-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-struct-metadata/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-struct-metadata/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-subclass-class-definition-with-override-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns-should-display-enclosing-module-or-namespace/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-total-active-patterns/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-total-active-patterns/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let x = Tuple(1, 2) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | let x = Tuple(1, 2) -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-tuple-definition-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-tuple-definition-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/input.fs: -------------------------------------------------------------------------------- 1 | 2 | let x: string = null -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-type-abbreviation-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/input.fs: -------------------------------------------------------------------------------- 1 | open System.ComponentModel 2 | 3 | let f (x: INotifyPropertyChanged) = failwith "" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-type-definition-that-contains-c#-events/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-union-case/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x = Choice1Of2 () -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-case/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-union-case/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-union-type-definition/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | 3 | let x: Choice<'T, 'U> = failwith "Not implemented yet" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/go-to-union-type-definition/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/go-to-union-type-definition/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-class-properties-with-setter/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-class-properties-with-setter/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-delegates-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-delegates-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-double-backtick-identifiers-on-member-constraints-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-methods/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-module-functions-and-values-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-generic-constraints-on-type-5/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-nested-modules/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/input.fs: -------------------------------------------------------------------------------- 1 | 2 | let x = Array.map 3 | -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-nested-modules/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-nested-modules/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-optional-parameters/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-optional-parameters/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-property-method-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-property-method-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-record-field-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-record-field-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-1/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-2/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-3/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-statically-resolved-constraints-4/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-case-attributes/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-case-attributes/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/handle-union-type-extension-members/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/handle-union-type-extension-members/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/members-are-sorted-this-way-abstract-member-member-static-member/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/operator-names-are-demangled/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/input.fs: -------------------------------------------------------------------------------- 1 | let inline func x = x + x -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/operator-names-are-demangled/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/operator-names-are-demangled/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/input.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/set-up-transitive-open-declarations-correctly/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/support-compiled-name-attribute/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/input.fs: -------------------------------------------------------------------------------- 1 | open System 2 | [] 3 | type C() = class end -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/support-compiled-name-attribute/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/support-compiled-name-attribute/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/expected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/expected.fs -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/input.fs: -------------------------------------------------------------------------------- 1 | let x: ResizeArray<'T> = failwith "" -------------------------------------------------------------------------------- /tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-cases/type-abbreviations-for-basic-types/settings.json -------------------------------------------------------------------------------- /tests/data/gotodef/generic-sample/settings.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects-archive/zzarchive-VisualFSharpPowerTools/HEAD/tests/data/gotodef/generic-sample/settings.list.json --------------------------------------------------------------------------------