ArnolyzerDocumentationGenerator.ArnolyzerDocumentationGenerator.DocumentPath C# (CSharp) Method

DocumentPath() private static method

private static DocumentPath ( DocumentationTarget target ) : string
target DocumentationTarget
return string
        private static string DocumentPath(DocumentationTarget target) =>
            target.Match().To<string>()
                  .With(ReadMe).Do(@"..\..\..\")
                  .With(Wiki).Do(@"..\..\..\..\Arnolyzer.wiki\")
                  .Else(@"..\..\..\..\Arnolyzer_pages\")
                  .Result();