private static FileSystemPath GetPathToDocumentationFolder()

in src/dotnet/RiderPlugin.EnhancedUnrealEngineDocumentation/DocumentationProviderComponent.cs [47:54]


        private static FileSystemPath GetPathToDocumentationFolder(ApplicationPackages applicationPackages, IDeployedPackagesExpandLocationResolver resolver)
        {
            var assembly = Assembly.GetExecutingAssembly();
            var package = applicationPackages.FindPackageWithAssembly(assembly, OnError.LogException);
            var installDirectory = resolver.GetDeployedPackageDirectory(package);
            var editorPluginPathFile = installDirectory.Parent.Combine("documentation").Combine("yaml");
            return editorPluginPathFile;
        }