diff --git a/src/Docfx.Build/ApiPage/ApiPageHtmlTemplate.cs b/src/Docfx.Build/ApiPage/ApiPageHtmlTemplate.cs index c58c4f6614c..f29a26212d9 100644 --- a/src/Docfx.Build/ApiPage/ApiPageHtmlTemplate.cs +++ b/src/Docfx.Build/ApiPage/ApiPageHtmlTemplate.cs @@ -40,17 +40,25 @@ public static HtmlTemplate Render(ApiPage page, Func markup) H6 h6 => Html($"
{h6.h6}
"), }; - HtmlTemplate Api(Api api) => api.Value switch + HtmlTemplate Api(Api api) { - Api1 api1 => Html($"

{api1.api1}

"), - Api2 api2 => Html($"

{api2.api2}

"), - Api3 api3 => Html($"

{api3.api3}

"), - Api4 api4 => Html($"

{api4.api4}

"), - }; - - HtmlTemplate Attributes(Dictionary? metadata) => metadata is null - ? default - : UnsafeHtml(string.Join(" ", metadata.Select(m => $"data-{WebUtility.HtmlEncode(m.Key)}='{WebUtility.HtmlEncode(m.Value)}'"))); + var value = (ApiBase)api.Value; + var attributes = value.metadata is null + ? default + : UnsafeHtml(string.Join(" ", value.metadata.Select(m => $"data-{WebUtility.HtmlEncode(m.Key)}='{WebUtility.HtmlEncode(m.Value)}'"))); + + var src = string.IsNullOrEmpty(value.src) + ? default + : Html($" "); + + return api.Value switch + { + Api1 api1 => Html($"

{api1.api1}{src}

"), + Api2 api2 => Html($"

{api2.api2}{src}

"), + Api3 api3 => Html($"

{api3.api3}{src}

"), + Api4 api4 => Html($"

{api4.api4}{src}

"), + }; + } HtmlTemplate Facts(Facts facts) => facts.facts.Length is 0 ? default : Html( $""" diff --git a/src/Docfx.Common/Git/GitRepoInfo.cs b/src/Docfx.Common/Git/GitRepoInfo.cs deleted file mode 100644 index 187be9a6c01..00000000000 --- a/src/Docfx.Common/Git/GitRepoInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. - -namespace Docfx.Common.Git; - -public class GitRepoInfo -{ - public RepoType RepoType { get; set; } - - public string RepoAccount { get; set; } - - public string RepoName { get; set; } - - public string RepoProject { get; set; } - - public Uri NormalizedRepoUrl { get; set; } -} diff --git a/src/Docfx.Common/Git/GitUtility.cs b/src/Docfx.Common/Git/GitUtility.cs index 032da7885a8..5b3ae50aec4 100644 --- a/src/Docfx.Common/Git/GitUtility.cs +++ b/src/Docfx.Common/Git/GitUtility.cs @@ -11,23 +11,16 @@ namespace Docfx.Common.Git; +public record GitSource(string Repo, string Branch, string Path, int Line); + public static class GitUtility { record Repo(string path, string url, string branch); - private static Regex GitHubRepoUrlRegex = - new(@"^((https|http):\/\/(.+@)?github\.com\/|git@github\.com:)(?\S+)\/(?[A-Za-z0-9_.-]+)(\.git)?\/?$", RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.RightToLeft); - - private static readonly Regex VsoGitRepoUrlRegex = - new(@"^(((https|http):\/\/(?\S+))|((ssh:\/\/)(?\S+)@(?:\S+)))\.visualstudio\.com(?:\d+)?(?:\/DefaultCollection)?(\/(?[^\/]+)(\/.*)*)*\/(?:_git|_ssh)\/(?([^._,]|[^._,][^@~;{}'+=,<>|\/\\?:&$*""#[\]]*[^.,]))$", RegexOptions.Compiled | RegexOptions.IgnoreCase); - - private static readonly string GitHubNormalizedRepoUrlTemplate = "https://github.com/{0}/{1}"; - private static readonly string VsoNormalizedRepoUrlTemplate = "https://{0}.visualstudio.com/DefaultCollection/{1}/_git/{2}"; - private static readonly ConcurrentDictionary s_cache = new(); private static readonly string? s_branch = - Env("DOCFX_SOURCE_BRANCH_NAME") ?? + Env("DOCFX_SOURCE_BRANCH_NAME") ?? Env("GITHUB_REF_NAME") ?? // GitHub Actions Env("APPVEYOR_REPO_BRANCH") ?? // AppVeyor Env("Git_Branch") ?? // Team City @@ -57,9 +50,6 @@ record Repo(string path, string url, string branch); public static string? RawContentUrlToContentUrl(string rawUrl) { - if (EnvironmentContext.GitFeaturesDisabled) - return null; - // GitHub return Regex.Replace( rawUrl, @@ -67,6 +57,38 @@ record Repo(string path, string url, string branch); string.IsNullOrEmpty(s_branch) ? "https://github.com/$1/$2/blob/$3/$4" : $"https://github.com/$1/$2/blob/{s_branch}/$4"); } + public static string? GetSourceUrl(GitSource source) + { + var repo = source.Repo.StartsWith("git") ? GitUrlToHttps(source.Repo) : source.Repo; + repo = repo.TrimEnd('/').TrimEnd(".git"); + + if (!Uri.TryCreate(repo, UriKind.Absolute, out var url)) + return null; + + var path = source.Path.Replace('\\', '/'); + + return url.Host switch + { + "github.com" => $"https://github.com{url.AbsolutePath}/blob/{source.Branch}/{path}{(source.Line > 0 ? $"#L{source.Line}" : null)}", + "bitbucket.org" => $"https://bitbucket.org{url.AbsolutePath}/src/{source.Branch}/{path}{(source.Line > 0 ? $"#lines-{source.Line}" : null)}", + _ when url.Host.EndsWith(".visualstudio.com") || url.Host == "dev.azure.com" => + $"https://{url.Host}{url.AbsolutePath}?path={path}&version={(IsCommit(source.Branch) ? "GC" : "GB")}{source.Branch}{(source.Line > 0 ? $"&line={source.Line}" : null)}", + _ => null, + }; + + static bool IsCommit(string branch) + { + return branch.Length == 40 && branch.All(char.IsLetterOrDigit); + } + + static string GitUrlToHttps(string url) + { + var pos = url.IndexOf('@'); + if (pos == -1) return url; + return $"https://{url.Substring(pos + 1).Replace(":[0-9]+", "").Replace(':', '/')}"; + } + } + private static Repo? GetRepoInfo(string? directory) { if (string.IsNullOrEmpty(directory)) @@ -117,54 +139,4 @@ static bool IsGitRoot(string directory) return Directory.Exists(gitPath); } } - - [Obsolete("Docfx parses repoUrl in template preprocessor. This method is never used.")] - public static GitRepoInfo Parse(string repoUrl) - { -#if NET7_0_OR_GREATER - ArgumentException.ThrowIfNullOrEmpty(repoUrl); -#else - if (string.IsNullOrEmpty(repoUrl)) - { - throw new ArgumentNullException(nameof(repoUrl)); - } -#endif - - var githubMatch = GitHubRepoUrlRegex.Match(repoUrl); - if (githubMatch.Success) - { - var gitRepositoryAccount = githubMatch.Groups["account"].Value; - var gitRepositoryName = githubMatch.Groups["repository"].Value; - return new GitRepoInfo - { - RepoType = RepoType.GitHub, - RepoAccount = gitRepositoryAccount, - RepoName = gitRepositoryName, - RepoProject = null, - NormalizedRepoUrl = new Uri(string.Format(GitHubNormalizedRepoUrlTemplate, gitRepositoryAccount, gitRepositoryName)) - }; - } - - var vsoMatch = VsoGitRepoUrlRegex.Match(repoUrl); - if (vsoMatch.Success) - { - var gitRepositoryAccount = vsoMatch.Groups["account"].Value; - var gitRepositoryName = vsoMatch.Groups["repository"].Value; - - // VSO has this logic: if the project name and repository name are same, then VSO will return the url without project name. - // Sample: if you visit https://cpubwin.visualstudio.com/drivers/_git/drivers, it will return https://cpubwin.visualstudio.com/_git/drivers - // We need to normalize it to keep same behavior with other projects. Always return https://.visualstudio.com///_git/ - var gitRepositoryProject = string.IsNullOrEmpty(vsoMatch.Groups["project"].Value) ? gitRepositoryName : vsoMatch.Groups["project"].Value; - return new GitRepoInfo - { - RepoType = RepoType.Vso, - RepoAccount = gitRepositoryAccount, - RepoName = Uri.UnescapeDataString(gitRepositoryName), - RepoProject = gitRepositoryProject, - NormalizedRepoUrl = new Uri(string.Format(VsoNormalizedRepoUrlTemplate, gitRepositoryAccount, gitRepositoryProject, gitRepositoryName)) - }; - } - - throw new NotSupportedException($"'{repoUrl}' is not a valid Vso/GitHub repository url"); - } } diff --git a/src/Docfx.DataContracts.Common/SourceDetail.cs b/src/Docfx.DataContracts.Common/SourceDetail.cs index 0e85d4b597d..0fe21cf7ab4 100644 --- a/src/Docfx.DataContracts.Common/SourceDetail.cs +++ b/src/Docfx.DataContracts.Common/SourceDetail.cs @@ -13,10 +13,6 @@ public class SourceDetail [JsonProperty("remote")] public GitDetail Remote { get; set; } - [YamlMember(Alias = "base")] - [JsonProperty("base")] - public string BasePath { get; set; } - [YamlMember(Alias = "id")] [JsonProperty("id")] public string Name { get; set; } @@ -42,15 +38,4 @@ public class SourceDetail [YamlMember(Alias = "endLine")] [JsonProperty("endLine")] public int EndLine { get; set; } - - [YamlMember(Alias = "content")] - [JsonProperty("content")] - public string Content { get; set; } - - /// - /// The external path for current source if it is not locally available - /// - [YamlMember(Alias = "isExternal")] - [JsonProperty("isExternal")] - public bool IsExternalPath { get; set; } } diff --git a/src/Docfx.Dotnet/DotnetApiCatalog.Page.cs b/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs similarity index 95% rename from src/Docfx.Dotnet/DotnetApiCatalog.Page.cs rename to src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs index 345403ae698..0061a6817b5 100644 --- a/src/Docfx.Dotnet/DotnetApiCatalog.Page.cs +++ b/src/Docfx.Dotnet/DotnetApiCatalog.ApiPage.cs @@ -7,6 +7,7 @@ using System.Text.RegularExpressions; using Docfx.Build.ApiPage; using Docfx.Common; +using Docfx.Common.Git; using Docfx.DataContracts.ManagedReference; using Docfx.Plugins; using Microsoft.CodeAnalysis; @@ -113,17 +114,22 @@ void Heading(int level, string title, string? id = null) }); } - void Api(int level, string title, ISymbol symbol) + void Api(int level, string title, ISymbol symbol, Compilation compilation) { var uid = VisitorHelper.GetId(symbol); var id = Regex.Replace(uid, @"\W", "_"); var commentId = VisitorHelper.GetCommentId(symbol); + var source = config.DisableGitFeatures ? null : VisitorHelper.GetSourceDetail(symbol, compilation); + var git = source is null || source.Remote is null ? null + : new GitSource(source.Remote.Repo, source.Remote.Branch, source.Remote.Path, source.StartLine + 1); + var src = git is null ? null : options.SourceUrl?.Invoke(git) ?? GitUtility.GetSourceUrl(git); + body.Add(level switch { - 1 => (Api)new Api1 { api1 = title, id = id, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, - 2 => (Api)new Api2 { api2 = title, id = id, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, - 3 => (Api)new Api3 { api3 = title, id = id, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, - 4 => (Api)new Api4 { api4 = title, id = id, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, + 1 => (Api)new Api1 { api1 = title, id = id, src = src, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, + 2 => (Api)new Api2 { api2 = title, id = id, src = src, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, + 3 => (Api)new Api3 { api3 = title, id = id, src = src, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, + 4 => (Api)new Api4 { api4 = title, id = id, src = src, metadata = new() { ["uid"] = uid, ["commentId"] = commentId } }, }); } @@ -135,7 +141,7 @@ from s in allSymbols where s.symbol.Kind is SymbolKind.NamedType && namespaceSymbols.Contains(s.symbol.ContainingNamespace) select (symbol: (INamedTypeSymbol)s.symbol, s.compilation)).ToList(); - Api(1, title = $"Namespace {symbol}", symbol); + Api(1, title = $"Namespace {symbol}", symbol, compilation); Summary(comment); Namespaces(); @@ -173,7 +179,7 @@ void Types(Func predicate, string headingText) void Enum(INamedTypeSymbol type) { - Api(1, title = $"Enum {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol); + Api(1, title = $"Enum {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol, compilation); body.Add(new Facts { facts = Facts().ToArray() }); Summary(comment); @@ -190,7 +196,7 @@ void Enum(INamedTypeSymbol type) void Delegate(INamedTypeSymbol type) { - Api(1, title = $"Delegate {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol); + Api(1, title = $"Delegate {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol, compilation); body.Add(new Facts { facts = Facts().ToArray() }); Summary(comment); @@ -218,7 +224,7 @@ void ClassLike(INamedTypeSymbol type) _ => throw new InvalidOperationException(), }; - Api(1, title = $"{typeHeader} {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol); + Api(1, title = $"{typeHeader} {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp)}", symbol, compilation); body.Add(new Facts { facts = Facts().ToArray() }); Summary(comment); @@ -388,7 +394,7 @@ void InheritedMembers() void MemberHeader(string headingText) { - Api(1, title = $"{headingText} {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp, overload: true)}", symbol); + Api(1, title = $"{headingText} {SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp, overload: true)}", symbol, compilation); body.Add(new Facts { facts = Facts().ToArray() }); } @@ -470,7 +476,7 @@ Parameter ToParameter(ITypeParameterSymbol param) void Method(IMethodSymbol symbol, Compilation compilation, int headingLevel) { - Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol); + Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol, compilation); var comment = Comment(symbol, compilation); Summary(comment); @@ -488,7 +494,7 @@ void Method(IMethodSymbol symbol, Compilation compilation, int headingLevel) void Field(IFieldSymbol symbol, Compilation compilation, int headingLevel) { - Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol); + Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol, compilation); var comment = Comment(symbol, compilation); Summary(comment); @@ -511,7 +517,7 @@ void Field(IFieldSymbol symbol, Compilation compilation, int headingLevel) void Property(IPropertySymbol symbol, Compilation compilation, int headingLevel) { - Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol); + Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol, compilation); var comment = Comment(symbol, compilation); Summary(comment); @@ -534,7 +540,7 @@ void Property(IPropertySymbol symbol, Compilation compilation, int headingLevel) void Event(IEventSymbol symbol, Compilation compilation, int headingLevel) { - Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol); + Api(headingLevel, SymbolFormatter.GetName(symbol, SyntaxLanguage.CSharp), symbol, compilation); var comment = Comment(symbol, compilation); Summary(comment); diff --git a/src/Docfx.Dotnet/DotnetApiCatalog.cs b/src/Docfx.Dotnet/DotnetApiCatalog.cs index 85e6cbe04d8..30ab500933b 100644 --- a/src/Docfx.Dotnet/DotnetApiCatalog.cs +++ b/src/Docfx.Dotnet/DotnetApiCatalog.cs @@ -165,6 +165,7 @@ private static ExtractMetadataConfig ConvertConfig(MetadataJsonItemConfig config OutputFolder = outputFolder, CodeSourceBasePath = configModel?.CodeSourceBasePath, DisableDefaultFilter = configModel?.DisableDefaultFilter ?? false, + DisableGitFeatures = configModel?.DisableGitFeatures ?? false, NoRestore = configModel?.NoRestore ?? false, NamespaceLayout = configModel?.NamespaceLayout ?? default, MemberLayout = configModel?.MemberLayout ?? default, diff --git a/src/Docfx.Dotnet/DotnetApiOptions.cs b/src/Docfx.Dotnet/DotnetApiOptions.cs index 7b6d79fe307..97930579777 100644 --- a/src/Docfx.Dotnet/DotnetApiOptions.cs +++ b/src/Docfx.Dotnet/DotnetApiOptions.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Docfx.Common.Git; using Microsoft.CodeAnalysis; #nullable enable @@ -44,4 +45,10 @@ public class DotnetApiOptions /// Excluding a parent symbol exclude all child symbols underneath it. /// public Func? IncludeAttribute { get; init; } + + /// + /// Customizes the view source URL for files in a git repository. + /// Returns `null` to use built-in support for GitHub, Azure Repos, etc. + /// + public Func? SourceUrl { get; init; } } diff --git a/src/Docfx.Dotnet/ManagedReference/ExtractMetadataConfig.cs b/src/Docfx.Dotnet/ManagedReference/ExtractMetadataConfig.cs index 70e0aa53de8..4bb07859fe1 100644 --- a/src/Docfx.Dotnet/ManagedReference/ExtractMetadataConfig.cs +++ b/src/Docfx.Dotnet/ManagedReference/ExtractMetadataConfig.cs @@ -25,6 +25,8 @@ internal class ExtractMetadataConfig public bool DisableDefaultFilter { get; init; } + public bool DisableGitFeatures { get; init; } + public bool NoRestore { get; init; } public NamespaceLayout NamespaceLayout { get; init; } diff --git a/templates/modern/ApiPage.html.primary.js b/templates/modern/ApiPage.html.primary.js new file mode 100644 index 00000000000..88d110c7f22 --- /dev/null +++ b/templates/modern/ApiPage.html.primary.js @@ -0,0 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +exports.transform = function (model) { + return model; +} diff --git a/test/Docfx.Common.Tests/GitUtilityTest.cs b/test/Docfx.Common.Tests/GitUtilityTest.cs index 88d8907dfc5..7a08ac5c7ea 100644 --- a/test/Docfx.Common.Tests/GitUtilityTest.cs +++ b/test/Docfx.Common.Tests/GitUtilityTest.cs @@ -29,30 +29,19 @@ public void Environment_ForBranchName() Assert.Equal("special-branch", info.Branch); } - [Obsolete("It will be removed in a future version.")] - [Fact] - public void TestParseGitRepoInfo() + [Theory] + [InlineData("https://github.com/user/repo.git", "main", "path/to/file.cs", 0, "https://github.com/user/repo/blob/main/path/to/file.cs")] + [InlineData("https://github.com/user/repo.git", "main", "path/to/file.cs", 10, "https://github.com/user/repo/blob/main/path/to/file.cs#L10")] + [InlineData("https://bitbucket.org/user/repo.git", "main", "path/to/file.cs", 0, "https://bitbucket.org/user/repo/src/main/path/to/file.cs")] + [InlineData("https://bitbucket.org/user/repo.git", "main", "path/to/file.cs", 10, "https://bitbucket.org/user/repo/src/main/path/to/file.cs#lines-10")] + [InlineData("https://dev.azure.com/user/repo/_git/repo", "main", "path/to/file.cs", 0, "https://dev.azure.com/user/repo/_git/repo?path=path/to/file.cs&version=GBmain")] + [InlineData("https://dev.azure.com/user/repo/_git/repo", "0123456789abcdef0123456789abcdef01234567", "path/to/file.cs", 10, "https://dev.azure.com/user/repo/_git/repo?path=path/to/file.cs&version=GC0123456789abcdef0123456789abcdef01234567&line=10")] + [InlineData("https://user.visualstudio.com/repo/_git/repo", "main", "path/to/file.cs", 0, "https://user.visualstudio.com/repo/_git/repo?path=path/to/file.cs&version=GBmain")] + [InlineData("https://user.visualstudio.com/repo/_git/repo", "0123456789abcdef0123456789abcdef01234567", "path/to/file.cs", 10, "https://user.visualstudio.com/repo/_git/repo?path=path/to/file.cs&version=GC0123456789abcdef0123456789abcdef01234567&line=10")] + [InlineData("git@github.com:user/repo.git", "main", "path/to/file.cs", 0, "https://github.com/user/repo/blob/main/path/to/file.cs")] + [InlineData("ssh://mseng@vs-ssh.visualstudio.com:22/FakeProject/_ssh/Docfx", "main", "path/to/file.cs", 0, "https://vs-ssh.visualstudio.com/FakeProject/_ssh/Docfx?path=path/to/file.cs&version=GBmain")] + public static void GetSourceUrlTest(string repo, string branch, string path, int line, string result) { - var repoInfo = GitUtility.Parse("git@github.com:dotnet/docfx"); - Assert.Equal("dotnet", repoInfo.RepoAccount); - Assert.Equal("docfx", repoInfo.RepoName); - Assert.Equal(RepoType.GitHub, repoInfo.RepoType); - - repoInfo = GitUtility.Parse("https://github.com/dotnet/docfx"); - Assert.Equal("dotnet", repoInfo.RepoAccount); - Assert.Equal("docfx", repoInfo.RepoName); - Assert.Equal(RepoType.GitHub, repoInfo.RepoType); - - repoInfo = GitUtility.Parse("ssh://mseng@vs-ssh.visualstudio.com:22/FakeProject/_ssh/Docfx"); - Assert.Equal("mseng", repoInfo.RepoAccount); - Assert.Equal("Docfx", repoInfo.RepoName); - Assert.Equal("FakeProject", repoInfo.RepoProject); - Assert.Equal(RepoType.Vso, repoInfo.RepoType); - - repoInfo = GitUtility.Parse("https://mseng.visualstudio.com/FakeProject/_git/Docfx"); - Assert.Equal("mseng", repoInfo.RepoAccount); - Assert.Equal("Docfx", repoInfo.RepoName); - Assert.Equal("FakeProject", repoInfo.RepoProject); - Assert.Equal(RepoType.Vso, repoInfo.RepoType); + Assert.Equal(result, GitUtility.GetSourceUrl(new(repo, branch, path, line))); } } diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json index 79c0061babb..6d8eafeccdf 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ConstantInterpolatedStrings.html.view.verified.json @@ -168,8 +168,7 @@ "id": "S1", "path": "src/CSharp10.cs", "startLine": 22.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -303,8 +302,7 @@ "id": "S2", "path": "src/CSharp10.cs", "startLine": 23.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -438,8 +436,7 @@ "id": "S3", "path": "src/CSharp10.cs", "startLine": 24.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -507,8 +504,7 @@ "id": "ConstantInterpolatedStrings", "path": "src/CSharp10.cs", "startLine": 20.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json index 544ff6cec64..d5263327b27 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.Issue7737.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Foo", "path": "src/CSharp10.cs", "startLine": 32.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -235,8 +234,7 @@ "id": "Issue7737", "path": "src/CSharp10.cs", "startLine": 27.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json index 36fa3b72ec4..7aff2b900a8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ParameterlessStructConstructors.html.view.verified.json @@ -122,8 +122,7 @@ "id": ".ctor", "path": "src/CSharp10.cs", "startLine": 14.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -308,8 +307,7 @@ "id": "X", "path": "src/CSharp10.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -451,8 +449,7 @@ "id": "Description", "path": "src/CSharp10.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -631,8 +628,7 @@ "id": "Y", "path": "src/CSharp10.cs", "startLine": 11.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -744,8 +740,7 @@ "id": "ParameterlessStructConstructors", "path": "src/CSharp10.cs", "startLine": 8.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json index 6ca199a201f..a2a4dfcdf1a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.ReadOnlyRecordStruct.html.view.verified.json @@ -262,8 +262,7 @@ "id": ".ctor", "path": "src/CSharp10.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -449,8 +448,7 @@ "id": "X", "path": "src/CSharp10.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -629,8 +627,7 @@ "id": "Y", "path": "src/CSharp10.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -809,8 +806,7 @@ "id": "Z", "path": "src/CSharp10.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -922,8 +918,7 @@ "id": "ReadOnlyRecordStruct", "path": "src/CSharp10.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json index e7a21a9d220..7722b164ca3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordClass.html.view.verified.json @@ -216,8 +216,7 @@ "id": ".ctor", "path": "src/CSharp10.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -403,8 +402,7 @@ "id": "FirstName", "path": "src/CSharp10.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -583,8 +581,7 @@ "id": "LastName", "path": "src/CSharp10.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -696,8 +693,7 @@ "id": "RecordClass", "path": "src/CSharp10.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json index c3ae5202a31..7b1aa824746 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp10.RecordStruct.html.view.verified.json @@ -216,8 +216,7 @@ "id": ".ctor", "path": "src/CSharp10.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -403,8 +402,7 @@ "id": "Measurement", "path": "src/CSharp10.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -583,8 +581,7 @@ "id": "TakenAt", "path": "src/CSharp10.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -696,8 +693,7 @@ "id": "RecordStruct", "path": "src/CSharp10.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json index 0e48cd4b825..4c5874a4ad9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.CheckedUserDefinedOperators-1.html.view.verified.json @@ -264,8 +264,7 @@ "id": "op_Addition", "path": "src/CSharp11.cs", "startLine": 28.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -535,8 +534,7 @@ "id": "op_CheckedAddition", "path": "src/CSharp11.cs", "startLine": 37.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -759,8 +757,7 @@ "id": "op_CheckedDecrement", "path": "src/CSharp11.cs", "startLine": 35.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1030,8 +1027,7 @@ "id": "op_CheckedDivision", "path": "src/CSharp11.cs", "startLine": 40.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1253,8 +1249,7 @@ "id": "op_CheckedExplicit", "path": "src/CSharp11.cs", "startLine": 41.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1477,8 +1472,7 @@ "id": "op_CheckedIncrement", "path": "src/CSharp11.cs", "startLine": 34.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1748,8 +1742,7 @@ "id": "op_CheckedMultiply", "path": "src/CSharp11.cs", "startLine": 39.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -2019,8 +2012,7 @@ "id": "op_CheckedSubtraction", "path": "src/CSharp11.cs", "startLine": 38.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -2243,8 +2235,7 @@ "id": "op_CheckedUnaryNegation", "path": "src/CSharp11.cs", "startLine": 36.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -2467,8 +2458,7 @@ "id": "op_Decrement", "path": "src/CSharp11.cs", "startLine": 26.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -2738,8 +2728,7 @@ "id": "op_Division", "path": "src/CSharp11.cs", "startLine": 31.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -2961,8 +2950,7 @@ "id": "op_Explicit", "path": "src/CSharp11.cs", "startLine": 32.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -3185,8 +3173,7 @@ "id": "op_Increment", "path": "src/CSharp11.cs", "startLine": 25.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -3456,8 +3443,7 @@ "id": "op_Multiply", "path": "src/CSharp11.cs", "startLine": 30.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -3727,8 +3713,7 @@ "id": "op_Subtraction", "path": "src/CSharp11.cs", "startLine": 29.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -3951,8 +3936,7 @@ "id": "op_UnaryNegation", "path": "src/CSharp11.cs", "startLine": 27.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -4060,8 +4044,7 @@ "id": "CheckedUserDefinedOperators", "path": "src/CSharp11.cs", "startLine": 23.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json index e97beda9f0e..8b0137b2a39 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.RequiredModifier.html.view.verified.json @@ -169,8 +169,7 @@ "id": "FirstName", "path": "src/CSharp11.cs", "startLine": 46.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -349,8 +348,7 @@ "id": "LastName", "path": "src/CSharp11.cs", "startLine": 48.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -529,8 +527,7 @@ "id": "MiddleName", "path": "src/CSharp11.cs", "startLine": 47.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -642,8 +639,7 @@ "id": "RequiredModifier", "path": "src/CSharp11.cs", "startLine": 44.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json index bfec40d2fb8..7b7eaed4f10 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.ScopedModifier.html.view.verified.json @@ -216,8 +216,7 @@ "id": "CreateSpan", "path": "src/CSharp11.cs", "startLine": 58.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -329,8 +328,7 @@ "id": "ScopedModifier", "path": "src/CSharp11.cs", "startLine": 56.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json index 9d8a2c84965..042fcd91224 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.IGetNext-1.html.view.verified.json @@ -217,8 +217,7 @@ "id": "op_Increment", "path": "src/CSharp11.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -326,8 +325,7 @@ "id": "IGetNext", "path": "src/CSharp11.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json index 655eb1f3073..d6c16d314f1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.RepeatSequence.html.view.verified.json @@ -122,8 +122,7 @@ "id": ".ctor", "path": "src/CSharp11.cs", "startLine": 14.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -308,8 +307,7 @@ "id": "Text", "path": "src/CSharp11.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -450,8 +448,7 @@ "id": "ToString", "path": "src/CSharp11.cs", "startLine": 19.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -726,8 +723,7 @@ "id": "op_Increment", "path": "src/CSharp11.cs", "startLine": 16.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -880,8 +876,7 @@ "id": "RepeatSequence", "path": "src/CSharp11.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json index 441aa94f814..1366f8edb96 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp11.StaticAbstractMembersInInterfaces.html.view.verified.json @@ -94,8 +94,7 @@ "id": "StaticAbstractMembersInInterfaces", "path": "src/CSharp11.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json index 638aa21bfc7..40084c5798a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.CollectionExpressions.html.view.verified.json @@ -168,8 +168,7 @@ "id": "a", "path": "src/CSharp12.cs", "startLine": 52.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -303,8 +302,7 @@ "id": "twoD", "path": "src/CSharp12.cs", "startLine": 56.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -447,8 +445,7 @@ "id": "b", "path": "src/CSharp12.cs", "startLine": 54.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -560,8 +557,7 @@ "id": "CollectionExpressions", "path": "src/CSharp12.cs", "startLine": 50.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json index 25bb756c9de..8cc3387430d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.DefaultLambdaParameters.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Foo", "path": "src/CSharp12.cs", "startLine": 61.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -235,8 +234,7 @@ "id": "DefaultLambdaParameters", "path": "src/CSharp12.cs", "startLine": 59.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json index d1487b63360..b572d68fa44 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.InlineArrays.html.view.verified.json @@ -94,8 +94,7 @@ "id": "InlineArrays", "path": "src/CSharp12.cs", "startLine": 73.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json index 6207056c885..91e124d20be 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.BankAccount.html.view.verified.json @@ -216,8 +216,7 @@ "id": ".ctor", "path": "src/CSharp12.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -403,8 +402,7 @@ "id": "AccountID", "path": "src/CSharp12.cs", "startLine": 14.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -583,8 +581,7 @@ "id": "Owner", "path": "src/CSharp12.cs", "startLine": 15.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -769,8 +766,7 @@ "id": "ToString", "path": "src/CSharp12.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -925,8 +921,7 @@ "id": "BankAccount", "path": "src/CSharp12.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json index 496eb87bf44..51769696d1e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.CheckAccount.html.view.verified.json @@ -262,8 +262,7 @@ "id": ".ctor", "path": "src/CSharp12.cs", "startLine": 20.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -449,8 +448,7 @@ "id": "CurrentBalance", "path": "src/CSharp12.cs", "startLine": 22.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -637,8 +635,7 @@ "id": "Deposit", "path": "src/CSharp12.cs", "startLine": 24.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -816,8 +813,7 @@ "id": "ToString", "path": "src/CSharp12.cs", "startLine": 46.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1040,8 +1036,7 @@ "id": "Withdrawal", "path": "src/CSharp12.cs", "startLine": 33.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1153,8 +1148,7 @@ "id": "CheckAccount", "path": "src/CSharp12.cs", "startLine": 20.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json index eaa5ead44e7..dfb8eee7770 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.Distance.html.view.verified.json @@ -216,8 +216,7 @@ "id": ".ctor", "path": "src/CSharp12.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -402,8 +401,7 @@ "id": "Direction", "path": "src/CSharp12.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -537,8 +535,7 @@ "id": "Magnitude", "path": "src/CSharp12.cs", "startLine": 8.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -606,8 +603,7 @@ "id": "Distance", "path": "src/CSharp12.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json index 54d0ee8653a..e1b9958928b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp12.PrimaryConstructors.html.view.verified.json @@ -94,8 +94,7 @@ "id": "PrimaryConstructors", "path": "src/CSharp12.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json index 74da5689b7f..29228f1ede3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.IA.html.view.verified.json @@ -122,8 +122,7 @@ "id": "M", "path": "src/CSharp8.cs", "startLine": 50.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -235,8 +234,7 @@ "id": "IA", "path": "src/CSharp8.cs", "startLine": 48.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json index 9c51abdd95d..c834014a302 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.Nested.html.view.verified.json @@ -94,8 +94,7 @@ "id": "Nested", "path": "src/CSharp8.cs", "startLine": 40.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json index 33e76776d00..77d6b6b0ef9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DefaultInterfaceMembers.html.view.verified.json @@ -168,8 +168,7 @@ "id": "GravitationalConstant", "path": "src/CSharp8.cs", "startLine": 30.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -303,8 +302,7 @@ "id": "X", "path": "src/CSharp8.cs", "startLine": 29.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -399,8 +397,7 @@ "id": "DoSomething", "path": "src/CSharp8.cs", "startLine": 45.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -532,8 +529,7 @@ "id": "DoSomethingElse", "path": "src/CSharp8.cs", "startLine": 46.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -765,8 +761,7 @@ "id": "op_UnaryPlus", "path": "src/CSharp8.cs", "startLine": 33.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -874,8 +869,7 @@ "id": "DefaultInterfaceMembers", "path": "src/CSharp8.cs", "startLine": 27.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json index 5a6a2b0aa55..88f40391b77 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.DisposableRefStructs.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Dispose", "path": "src/CSharp8.cs", "startLine": 56.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -255,8 +254,7 @@ "id": "DoSomething", "path": "src/CSharp8.cs", "startLine": 60.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -368,8 +366,7 @@ "id": "DisposableRefStructs", "path": "src/CSharp8.cs", "startLine": 54.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json index 99a5bc272e0..856ceb38769 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Issue4007.html.view.verified.json @@ -170,8 +170,7 @@ "id": "SomeMethod", "path": "src/CSharp8.cs", "startLine": 147.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -303,8 +302,7 @@ "id": "SomeOtherMethod", "path": "src/CSharp8.cs", "startLine": 157.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -416,8 +414,7 @@ "id": "Issue4007", "path": "src/CSharp8.cs", "startLine": 145.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json index 0ced36aadb6..32925dd2531 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.Misc.html.view.verified.json @@ -167,8 +167,7 @@ "id": "AsynchronousStreams", "path": "src/CSharp8.cs", "startLine": 97.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -346,8 +345,7 @@ "id": "GenerateSequence", "path": "src/CSharp8.cs", "startLine": 105.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -479,8 +477,7 @@ "id": "IndicesAndRanges", "path": "src/CSharp8.cs", "startLine": 119.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -705,8 +702,7 @@ "id": "IsExpression", "path": "src/CSharp8.cs", "startLine": 77.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -838,8 +834,7 @@ "id": "NullCoalescingAssignment", "path": "src/CSharp8.cs", "startLine": 127.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -971,8 +966,7 @@ "id": "StackallocInNestedExpressions", "path": "src/CSharp8.cs", "startLine": 133.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1197,8 +1191,7 @@ "id": "StaticLocalFunctions", "path": "src/CSharp8.cs", "startLine": 88.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1423,8 +1416,7 @@ "id": "SwitchExpression", "path": "src/CSharp8.cs", "startLine": 80.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1556,8 +1548,7 @@ "id": "UsingDeclaration", "path": "src/CSharp8.cs", "startLine": 114.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1669,8 +1660,7 @@ "id": "Misc", "path": "src/CSharp8.cs", "startLine": 75.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json index 67d0d09b81f..fe31c658657 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.NullableReferenceTypes.html.view.verified.json @@ -168,8 +168,7 @@ "id": "Field", "path": "src/CSharp8.cs", "startLine": 70.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -311,8 +310,7 @@ "id": "Property", "path": "src/CSharp8.cs", "startLine": 68.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -546,8 +544,7 @@ "id": "DoSomething", "path": "src/CSharp8.cs", "startLine": 72.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -659,8 +656,7 @@ "id": "NullableReferenceTypes", "path": "src/CSharp8.cs", "startLine": 66.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json index 9bfb5736ff7..5aa54e4e362 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp8.ReadOnlyMembers.html.view.verified.json @@ -169,8 +169,7 @@ "id": "Counter", "path": "src/CSharp8.cs", "startLine": 20.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -349,8 +348,7 @@ "id": "X", "path": "src/CSharp8.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -529,8 +527,7 @@ "id": "Y", "path": "src/CSharp8.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -714,8 +711,7 @@ "id": "Sum", "path": "src/CSharp8.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -893,8 +889,7 @@ "id": "ToString", "path": "src/CSharp8.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -1049,8 +1044,7 @@ "id": "ReadOnlyMembers", "path": "src/CSharp8.cs", "startLine": 7.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json index 42a50d635c8..eb79f107bee 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.FunctionPointers.html.view.verified.json @@ -381,8 +381,7 @@ "id": "Example", "path": "src/CSharp9.cs", "startLine": 29.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -494,8 +493,7 @@ "id": "FunctionPointers", "path": "src/CSharp9.cs", "startLine": 27.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json index 85d6dd3581e..184e02ab444 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.InitOnlySetters.html.view.verified.json @@ -169,8 +169,7 @@ "id": "PressureInMillibars", "path": "src/CSharp9.cs", "startLine": 18.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -349,8 +348,7 @@ "id": "RecordedAt", "path": "src/CSharp9.cs", "startLine": 16.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -529,8 +527,7 @@ "id": "TemperatureInCelsius", "path": "src/CSharp9.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -642,8 +639,7 @@ "id": "InitOnlySetters", "path": "src/CSharp9.cs", "startLine": 14.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json index d8fe61672d0..d4cc2680d92 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.NativeSizedIntegers.html.view.verified.json @@ -168,8 +168,7 @@ "id": "X", "path": "src/CSharp9.cs", "startLine": 23.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -303,8 +302,7 @@ "id": "Y", "path": "src/CSharp9.cs", "startLine": 24.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -372,8 +370,7 @@ "id": "NativeSizedIntegers", "path": "src/CSharp9.cs", "startLine": 21.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json index 178847c4198..73f2372d84e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Person.html.view.verified.json @@ -216,8 +216,7 @@ "id": ".ctor", "path": "src/CSharp9.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -403,8 +402,7 @@ "id": "FirstName", "path": "src/CSharp9.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -583,8 +581,7 @@ "id": "LastName", "path": "src/CSharp9.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -696,8 +693,7 @@ "id": "Person", "path": "src/CSharp9.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json index c752d0c3a8f..33700f439bd 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.Teacher.html.view.verified.json @@ -262,8 +262,7 @@ "id": ".ctor", "path": "src/CSharp9.cs", "startLine": 11.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -449,8 +448,7 @@ "id": "Grade", "path": "src/CSharp9.cs", "startLine": 11.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" @@ -562,8 +560,7 @@ "id": "Teacher", "path": "src/CSharp9.cs", "startLine": 11.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json index 3ec5e495261..90e720261d9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.CSharp/api/CSharp9.RecordTypes.html.view.verified.json @@ -94,8 +94,7 @@ "id": "RecordTypes", "path": "src/CSharp9.cs", "startLine": 7.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CSharp" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json index 1310683d056..5bbd1062d66 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.-ctor.html.view.verified.json @@ -75,8 +75,7 @@ "id": ".ctor", "path": "src/ExampleClass.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "MyExample", "overload": { @@ -185,8 +184,7 @@ "id": ".ctor", "path": "src/ExampleClass.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "MyExample", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json index 6474ec77fb5..e1cd0381091 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyEvent.html.view.verified.json @@ -61,8 +61,7 @@ "id": "MyEvent", "path": "src/ExampleClass.cs", "startLine": 6.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "MyExample", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json index d8d4f7405f2..e6a194481ff 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyMethod.html.view.verified.json @@ -120,8 +120,7 @@ "id": "MyMethod", "path": "src/ExampleClass.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "MyExample", "overload": { @@ -230,8 +229,7 @@ "id": "MyMethod", "path": "src/ExampleClass.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "MyExample", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json index 89bcb467f4f..98d181fa4b1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.MyProperty.html.view.verified.json @@ -122,8 +122,7 @@ "id": "MyProperty", "path": "src/ExampleClass.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "MyExample", "overload": { @@ -232,8 +231,7 @@ "id": "MyProperty", "path": "src/ExampleClass.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "MyExample", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json index 56e911b0093..fede5bd4a5b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/api/MyExample.ExampleClass.html.view.verified.json @@ -367,8 +367,7 @@ "id": "ExampleClass", "path": "src/ExampleClass.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "MyExample", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json index c40221cbff9..54e20b32f25 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Extensions/index.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "index.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_systemKeys": [ "conceptual", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json index a9e9759d12f..47799ad8dee 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromAssembly.Class1.html.view.verified.json @@ -117,8 +117,7 @@ "source": { "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromAssembly" @@ -251,8 +250,7 @@ "source": { "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromAssembly" @@ -358,8 +356,7 @@ "source": { "href": "https://github.com/dotnet/docfx/blob/main/samples/seed/dotnet/assembly/Class1.cs", "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromAssembly" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json index f917cfaf9eb..5b93e1cbc8a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromCSharpSourceCode.CSharp.html.view.verified.json @@ -170,8 +170,7 @@ "id": "Main", "path": "dotnet/csharp/CSharp.cs", "startLine": 9.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromCSharpSourceCode", "overload": { @@ -280,8 +279,7 @@ "id": "CSharp", "path": "dotnet/csharp/CSharp.cs", "startLine": 7.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "BuildFromCSharpSourceCode", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json index 31c9a0f7986..b1532db4ed1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.IIssue8948.html.view.verified.json @@ -128,8 +128,7 @@ "id": "DoNothing", "path": "dotnet/project/Project/Class1.cs", "startLine": 138.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -241,8 +240,7 @@ "id": "IIssue8948", "path": "dotnet/project/Project/Class1.cs", "startLine": 132.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json index 98a84501df3..b08deefde7e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8665.html.view.verified.json @@ -122,8 +122,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Class1.cs", "startLine": 110.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -303,8 +302,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Class1.cs", "startLine": 112.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -530,8 +528,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Class1.cs", "startLine": 114.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -803,8 +800,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Class1.cs", "startLine": 116.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -990,8 +986,7 @@ "id": "Bar", "path": "dotnet/project/Project/Class1.cs", "startLine": 107.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1170,8 +1165,7 @@ "id": "Baz", "path": "dotnet/project/Project/Class1.cs", "startLine": 108.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1350,8 +1344,7 @@ "id": "Foo", "path": "dotnet/project/Project/Class1.cs", "startLine": 106.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1463,8 +1456,7 @@ "id": "Issue8665", "path": "dotnet/project/Project/Class1.cs", "startLine": 104.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json index 7683282406c..a79ccb8ffa4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json @@ -400,8 +400,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Class1.cs", "startLine": 126.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -513,8 +512,7 @@ "id": "Issue8696Attribute", "path": "dotnet/project/Project/Class1.cs", "startLine": 124.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json index 2048a67f5dc..b69977c7ebf 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Issue8948.html.view.verified.json @@ -128,8 +128,7 @@ "id": "DoNothing", "path": "dotnet/project/Project/Class1.cs", "startLine": 144.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -285,8 +284,7 @@ "id": "Issue8948", "path": "dotnet/project/Project/Class1.cs", "startLine": 141.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json index 24a43f7ea37..860c6786fb6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.Test-1.html.view.verified.json @@ -94,8 +94,7 @@ "id": "Test", "path": "dotnet/project/Project/Class1.cs", "startLine": 4.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json index d1e01524d9d..ecb188fd352 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Class1.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Issue1651", "path": "dotnet/project/Project/Class1.cs", "startLine": 31.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -255,8 +254,7 @@ "id": "Issue1887", "path": "dotnet/project/Project/Class1.cs", "startLine": 150.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -388,8 +386,7 @@ "id": "Issue2623", "path": "dotnet/project/Project/Class1.cs", "startLine": 76.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -523,8 +520,7 @@ "id": "Issue2723", "path": "dotnet/project/Project/Class1.cs", "startLine": 95.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -656,8 +652,7 @@ "id": "Issue4017", "path": "dotnet/project/Project/Class1.cs", "startLine": 54.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -791,8 +786,7 @@ "id": "Issue4392", "path": "dotnet/project/Project/Class1.cs", "startLine": 100.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -924,8 +918,7 @@ "id": "Issue7484", "path": "dotnet/project/Project/Class1.cs", "startLine": 41.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1062,8 +1055,7 @@ "id": "Issue8764", "path": "dotnet/project/Project/Class1.cs", "startLine": 102.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1195,8 +1187,7 @@ "id": "Issue896", "path": "dotnet/project/Project/Class1.cs", "startLine": 18.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1468,8 +1459,7 @@ "id": "Issue9216", "path": "dotnet/project/Project/Class1.cs", "startLine": 161.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1601,8 +1591,7 @@ "id": "XmlCommentIncludeTag", "path": "dotnet/project/Project/Class1.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -1758,8 +1747,7 @@ "id": "Class1", "path": "dotnet/project/Project/Class1.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json index cc625287564..864ac53910a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.IInheritdoc.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Issue7629", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 7.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -235,8 +234,7 @@ "id": "IInheritdoc", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json index b064a92dc86..1200e3ff498 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json @@ -266,8 +266,7 @@ "id": "TestMethod1", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 101.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -379,8 +378,7 @@ "id": "Class1", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 93.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json index 89bc550505c..b03c0cf473f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json @@ -264,8 +264,7 @@ "id": "TestMethod1", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 107.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -421,8 +420,7 @@ "id": "Class2", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 104.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json index fbe4c185ccd..e1f7b3d0b37 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json @@ -94,8 +94,7 @@ "id": "Issue6366", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 91.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json index 342c5bde6af..a8be18adedf 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json @@ -122,8 +122,7 @@ "id": "A", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 85.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -255,8 +254,7 @@ "id": "B", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 88.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -368,8 +366,7 @@ "id": "Issue7035", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 82.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 0f8a64bee86..120c5b147f6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -122,8 +122,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 63.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -309,8 +308,7 @@ "id": "DoDad", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 68.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -544,8 +542,7 @@ "id": "BoolReturningMethod", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 79.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -657,8 +654,7 @@ "id": "Issue7484", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 58.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json index 5ee53fdd67b..235798d44d0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json @@ -359,8 +359,7 @@ "id": "Tween", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 32.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -729,8 +728,7 @@ "id": "Tween", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 29.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -842,8 +840,7 @@ "id": "Issue8101", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 19.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json index 6d431731a24..3d49f404057 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json @@ -170,8 +170,7 @@ "id": ".ctor", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 38.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -283,8 +282,7 @@ "id": "Issue8129", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 35.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json index 705effe2b48..9daee44d5e6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Inheritdoc.html.view.verified.json @@ -122,8 +122,7 @@ "id": "Dispose", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 12.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -299,8 +298,7 @@ "id": "Issue7628", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -432,8 +430,7 @@ "id": "Issue7629", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 14.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" @@ -589,8 +586,7 @@ "id": "Inheritdoc", "path": "dotnet/project/Project/Inheritdoc.cs", "startLine": 10.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json index b4377e6563c..a517faa9580 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.A.A.html.view.verified.json @@ -94,8 +94,7 @@ "id": "A", "path": "dotnet/project/Project/Namespace.cs", "startLine": 2.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json index 42670077cef..c537d152b19 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromProject.Issue8540.B.B.html.view.verified.json @@ -94,8 +94,7 @@ "id": "B", "path": "dotnet/project/Project/Namespace.cs", "startLine": 7.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "BuildFromProject" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index 6c3fa6c6a7b..1d65558b94a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -215,8 +215,7 @@ "id": "WithDeclarationKeyword", "path": "dotnet/vb/Class1.vb", "startLine": 45.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromVBSourceCode", "overload": { @@ -325,8 +324,7 @@ "id": "BaseClass1", "path": "dotnet/vb/Class1.vb", "startLine": 44.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "BuildFromVBSourceCode", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json index cb7ca2a0ef1..929a60a6bce 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -168,8 +168,7 @@ "id": "ValueClass", "path": "dotnet/vb/Class1.vb", "startLine": 13.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromVBSourceCode", "example": [], @@ -308,8 +307,7 @@ "id": "Keyword", "path": "dotnet/vb/Class1.vb", "startLine": 15.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromVBSourceCode", "overload": { @@ -556,8 +554,7 @@ "id": "Value", "path": "dotnet/vb/Class1.vb", "startLine": 36.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromVBSourceCode", "example": [], @@ -779,8 +776,7 @@ "id": "WithDeclarationKeyword", "path": "dotnet/vb/Class1.vb", "startLine": 25.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": "BuildFromVBSourceCode", "example": [], @@ -932,8 +928,7 @@ "id": "Class1", "path": "dotnet/vb/Class1.vb", "startLine": 5.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "namespace": { "uid": "BuildFromVBSourceCode", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json index bea98a91732..7a4d5ad180a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Cat-2.html.view.verified.json @@ -122,8 +122,7 @@ "id": ".ctor", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 121.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -445,8 +444,7 @@ "id": ".ctor", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 136.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -628,8 +626,7 @@ "id": ".ctor", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 127.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -814,8 +811,7 @@ "id": "isHealthy", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 230.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -969,8 +965,7 @@ "id": "Age", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 212.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -1198,8 +1193,7 @@ "id": "this[]", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 203.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -1378,8 +1372,7 @@ "id": "Name", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 254.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -1658,8 +1651,7 @@ "id": "CalculateFood", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 144.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "documentation": { "remote": { @@ -1669,8 +1661,7 @@ }, "path": "specs/Cat.CalculateFood.md", "startLine": 1.0, - "endLine": 15.0, - "isExternal": false + "endLine": 15.0 }, "assemblies": [ "CatLibrary" @@ -1945,8 +1936,7 @@ "id": "Equals", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 164.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -2263,8 +2253,7 @@ "id": "GetTailLength", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 173.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -2541,8 +2530,7 @@ "id": "Jump", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 153.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -2787,8 +2775,7 @@ "id": "ownEat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 222.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -3025,8 +3012,7 @@ "id": "op_Addition", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 182.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -3249,8 +3235,7 @@ "id": "op_Explicit", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 195.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -3517,8 +3502,7 @@ "id": "op_Subtraction", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 187.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -3626,8 +3610,7 @@ "id": "Cat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 112.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "documentation": { "remote": { @@ -3637,8 +3620,7 @@ }, "path": "specs/Cat.md", "startLine": 1.0, - "endLine": 4.0, - "isExternal": false + "endLine": 4.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json index 2c3dcd20e07..30e74ffbaf1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.CatException-1.html.view.verified.json @@ -94,8 +94,7 @@ "id": "CatException", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 316.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json index 79752ab7465..bc48cf5366d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Complex-2.html.view.verified.json @@ -94,8 +94,7 @@ "id": "Complex", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 274.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 65ebe686897..8d1f682daaa 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -168,8 +168,7 @@ "id": "Red", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 28.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -303,8 +302,7 @@ "id": "Blue", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 32.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -438,8 +436,7 @@ "id": "Yellow", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 36.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -507,8 +504,7 @@ "id": "ColorType", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 23.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json index 91b2c080a19..8d86dc9c296 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json @@ -94,8 +94,7 @@ "id": "ContainersRefTypeChild", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 79.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json index 8198f17b506..a99c2183fe8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json @@ -94,8 +94,7 @@ "id": "ContainersRefTypeChildInterface", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 73.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index 8cf12d033fe..00646842528 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -94,8 +94,7 @@ "id": "ContainersRefTypeDelegate", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 43.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json index ecdbd728ade..6420dfef5ac 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -168,8 +168,7 @@ "id": "ColorCount", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 17.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -311,8 +310,7 @@ "id": "GetColorCount", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 49.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -544,8 +542,7 @@ "id": "ContainersRefTypeNonRefMethod", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 67.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -730,8 +727,7 @@ "id": "ContainersRefTypeEventHandler", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 85.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -799,8 +795,7 @@ "id": "ContainersRefType", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 11.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json index 5d122f8c180..effeaeb891a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json @@ -94,8 +94,7 @@ "id": "ExplicitLayoutClass", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 93.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json index 33f7a7f07be..9803b67c279 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Core.Issue231.html.view.verified.json @@ -170,8 +170,7 @@ "id": "Bar", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 420.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -351,8 +350,7 @@ "id": "Foo", "path": "dotnet/solution/CatLibrary.Core/BaseClass.cs", "startLine": 104.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary.Core" @@ -464,8 +462,7 @@ "id": "Issue231", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 418.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json index ae640726fbc..b4d39e1f539 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -94,8 +94,7 @@ "id": "FakeDelegate", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 373.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json index 7e99d796122..9634e0107f3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.IAnimal.html.view.verified.json @@ -218,8 +218,7 @@ "id": "this[]", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 28.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -398,8 +397,7 @@ "id": "Name", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 21.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -538,8 +536,7 @@ "id": "Eat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 33.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -720,8 +717,7 @@ "id": "Eat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 47.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -909,8 +905,7 @@ "id": "Eat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 40.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -1022,8 +1017,7 @@ "id": "IAnimal", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 15.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "documentation": { "remote": { @@ -1033,8 +1027,7 @@ }, "path": "specs/CatLibrary.IAnimal.md", "startLine": 1.0, - "endLine": 4.0, - "isExternal": false + "endLine": 4.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json index 34a36a70d25..90e8fefec60 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICat.html.view.verified.json @@ -168,8 +168,7 @@ "id": "eat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 59.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -237,8 +236,7 @@ "id": "ICat", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 53.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json index 5d9dd2675f0..9a5d087ecb6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.ICatExtension.html.view.verified.json @@ -218,8 +218,7 @@ "id": "Play", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 340.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -447,8 +446,7 @@ "id": "Sleep", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 333.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -560,8 +558,7 @@ "id": "ICatExtension", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 326.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json index 823f56be18e..5b954fd2f82 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -94,8 +94,7 @@ "id": "MRefDelegate", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 360.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json index f76ae44538c..4e683090e20 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -94,8 +94,7 @@ "id": "MRefNormalDelegate", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 349.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json index b4cc27e95fc..3357e0fdf46 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.Tom.html.view.verified.json @@ -267,8 +267,7 @@ "id": "TomMethod", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 293.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -520,8 +519,7 @@ "id": "Tom", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 282.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json index 4b60b4bf5eb..b0933462063 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -171,8 +171,7 @@ "id": ".ctor", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 309.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -284,8 +283,7 @@ "id": "TomFromBaseClass", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 302.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 64109ea5def..26249cbc70f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/api/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -168,8 +168,7 @@ "id": "Red", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 404.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -303,8 +302,7 @@ "id": "Blue", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 408.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -438,8 +436,7 @@ "id": "Yellow", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 412.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" @@ -507,8 +504,7 @@ "id": "ColorType", "path": "dotnet/solution/CatLibrary/Class1.cs", "startLine": 399.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "assemblies": [ "CatLibrary" diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json index 44a5e5e10a4..e59361bb4b0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromCSharpSourceCode.CSharp.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class CSharp", - "content": "

Class CSharp

\r\n
Namespace
BuildFromCSharpSourceCode
\r\n
public class CSharp

Inheritance

\r\n
\nobject\n
\n
\nCSharp\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Main(string[])

public static void Main(string[] args)

Parameters

\r\nargs\r\nstring[]\r\n
\r\n
", + "content": "

Class CSharp

\r\n
Namespace
BuildFromCSharpSourceCode
\r\n
public class CSharp

Inheritance

\r\n
\nobject\n
\n
\nCSharp\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Main(string[])

public static void Main(string[] args)

Parameters

\r\nargs\r\nstring[]\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromCSharpSourceCode.CSharp.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json index f5b4bd9d8ed..26a00e5af07 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.IIssue8948.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Interface Class1.IIssue8948", - "content": "

Interface Class1.IIssue8948

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public interface Class1.IIssue8948

Methods

DoNothing<T>()

Does nothing with generic type T.

\n
void DoNothing<T>()

Type Parameters

\r\nT\r\n\r\n
\r\n

A generic type.

\n
", + "content": "

Interface Class1.IIssue8948

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public interface Class1.IIssue8948

Methods

DoNothing<T>()

Does nothing with generic type T.

\n
void DoNothing<T>()

Type Parameters

\r\nT\r\n\r\n
\r\n

A generic type.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.IIssue8948.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json index 0e03e5e19de..3e35203888c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8665.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1.Issue8665", - "content": "

Class Class1.Issue8665

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8665

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Constructors

Issue8665()

public Issue8665()

Issue8665(int)

public Issue8665(int foo)

Parameters

\r\nfoo\r\nint\r\n
\r\n

Issue8665(int, char)

public Issue8665(int foo, char bar)

Parameters

\r\nfoo\r\nint\r\n
\r\n
\r\nbar\r\nchar\r\n
\r\n

Issue8665(int, char, string)

public Issue8665(int foo, char bar, string baz)

Parameters

\r\nfoo\r\nint\r\n
\r\n
\r\nbar\r\nchar\r\n
\r\n
\r\nbaz\r\nstring\r\n
\r\n

Properties

Bar

public char Bar { get; }

Property Value

\r\n\r\nchar\r\n
\r\n

Baz

public string Baz { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Foo

public int Foo { get; }

Property Value

\r\n\r\nint\r\n
\r\n
", + "content": "

Class Class1.Issue8665

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8665

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Constructors

Issue8665()

public Issue8665()

Issue8665(int)

public Issue8665(int foo)

Parameters

\r\nfoo\r\nint\r\n
\r\n

Issue8665(int, char)

public Issue8665(int foo, char bar)

Parameters

\r\nfoo\r\nint\r\n
\r\n
\r\nbar\r\nchar\r\n
\r\n

Issue8665(int, char, string)

public Issue8665(int foo, char bar, string baz)

Parameters

\r\nfoo\r\nint\r\n
\r\n
\r\nbar\r\nchar\r\n
\r\n
\r\nbaz\r\nstring\r\n
\r\n

Properties

Bar

public char Bar { get; }

Property Value

\r\n\r\nchar\r\n
\r\n

Baz

public string Baz { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Foo

public int Foo { get; }

Property Value

\r\n\r\nint\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.Issue8665.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json index 5a2fe3fd5a9..ce50de6aab8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1.Issue8696Attribute", - "content": "

Class Class1.Issue8696Attribute

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8696Attribute : Attribute

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n

Constructors

Issue8696Attribute(string?, int, int, string[]?, bool, Type?)

[Class1.Issue8696("Changes the name of the server in the server list", 0, 0, null, false, null)]\npublic Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)

Parameters

\r\ndescription\r\nstring?\r\n
\r\n
\r\nboundsMin\r\nint\r\n
\r\n
\r\nboundsMax\r\nint\r\n
\r\n
\r\nvalidGameModes\r\nstring[]?\r\n
\r\n
\r\nhasMultipleSelections\r\nbool\r\n
\r\n
\r\nenumType\r\nType?\r\n
\r\n
", + "content": "

Class Class1.Issue8696Attribute

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8696Attribute : Attribute

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n

Constructors

Issue8696Attribute(string?, int, int, string[]?, bool, Type?)

[Class1.Issue8696("Changes the name of the server in the server list", 0, 0, null, false, null)]\npublic Issue8696Attribute(string? description = null, int boundsMin = 0, int boundsMax = 0, string[]? validGameModes = null, bool hasMultipleSelections = false, Type? enumType = null)

Parameters

\r\ndescription\r\nstring?\r\n
\r\n
\r\nboundsMin\r\nint\r\n
\r\n
\r\nboundsMax\r\nint\r\n
\r\n
\r\nvalidGameModes\r\nstring[]?\r\n
\r\n
\r\nhasMultipleSelections\r\nbool\r\n
\r\n
\r\nenumType\r\nType?\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.Issue8696Attribute.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json index 907f2c6fadf..014c95df215 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Issue8948.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1.Issue8948", - "content": "

Class Class1.Issue8948

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8948 : Class1.IIssue8948

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

DoNothing<T>()

Does nothing with generic type T.

\n
public void DoNothing<T>()

Type Parameters

\r\nT\r\n\r\n
\r\n

A generic type.

\n
", + "content": "

Class Class1.Issue8948

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Issue8948 : Class1.IIssue8948

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

DoNothing<T>()

Does nothing with generic type T.

\n
public void DoNothing<T>()

Type Parameters

\r\nT\r\n\r\n
\r\n

A generic type.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.Issue8948.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json index 91ab0cf3c7c..374184210be 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.Test-1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1.Test", - "content": "

Class Class1.Test<T>

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Test<T>

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class Class1.Test<T>

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1.Test<T>

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.Test-1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json index a3307173ccf..c2884791086 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Class1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1", - "content": "

Class Class1

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1 : IClass1

Inheritance

\r\n
\nobject\n
\n
\nClass1\n
\n\r\n

Implements

\r\n
\nIClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Issue1651()

Pricing models are used to calculate theoretical option values

\n
  • 1Black Scholes
  • 2Black76
  • 3Black76Fut
  • 4Equity Tree
  • 5Variance Swap
  • 6Dividend Forecast
\n
public void Issue1651()

Issue1887()

IConfiguration related helper and extension routines.

\n
public void Issue1887()

Issue2623()

public void Issue2623()

Examples

MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n

Remarks

For example:

\n
MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n

Issue2723()

public void Issue2723()

Remarks

\n
Note
\n

This is a <note>. & " '

\n
\n

Inline <angle brackets>.

\n

link

\n
for (var i = 0; i > 10; i++) // & " '\nvar range = new Range<int> { Min = 0, Max = 10 };\n
\n
var range = new Range<int> { Min = 0, Max = 10 };
\n

Issue4017()

public void Issue4017()

Examples

public void HookMessageDeleted(BaseSocketClient client)\n{\n    client.MessageDeleted += HandleMessageDelete;\n}\n\npublic Task HandleMessageDelete(Cacheable<IMessage, ulong> cachedMessage, ISocketMessageChannel channel)\n{\n    // check if the message exists in cache; if not, we cannot report what was removed\n    if (!cachedMessage.HasValue) return;\n    var message = cachedMessage.Value;\n    Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\"\n        + Environment.NewLine\n        + message.Content);\n    return Task.CompletedTask;\n}
\n

Remarks

void Update()\n{\n    myClass.Execute();\n}
\n

Issue4392()

public void Issue4392()

Remarks

@"\\\\?\\"

\n

Issue7484()

public void Issue7484()

Remarks

There's really no reason to not believe that this class can test things.

\n
TermDescription
A TermA Description
Bee TermBee Description
\n

Issue8764<T>()

public void Issue8764<T>() where T : unmanaged

Type Parameters

\r\nT\r\n\r\n
\r\n

Issue896()

Test

\n
public void Issue896()

See Also

\r\n
\nClass1.Test<T>\n
\n
\nClass1\n
\n\r\n

Issue9216()

Calculates the determinant of a 3-dimensional matrix:

\n

\\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\)

\n

Returns the smallest value:

\n

\\(\\left\\{\\begin{matrix}a, a<b \\\\ b, b>a\\\\ \\end{matrix} \\right.\\)

\n
public static double Issue9216()

Returns

\r\n\r\ndouble\r\n
\r\n

XmlCommentIncludeTag()

This method should do something...

\n
public void XmlCommentIncludeTag()

Remarks

This is remarks.

\n", + "content": "

Class Class1

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Class1 : IClass1

Inheritance

\r\n
\nobject\n
\n
\nClass1\n
\n\r\n

Implements

\r\n
\nIClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Issue1651()

Pricing models are used to calculate theoretical option values

\n
  • 1Black Scholes
  • 2Black76
  • 3Black76Fut
  • 4Equity Tree
  • 5Variance Swap
  • 6Dividend Forecast
\n
public void Issue1651()

Issue1887()

IConfiguration related helper and extension routines.

\n
public void Issue1887()

Issue2623()

public void Issue2623()

Examples

MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n

Remarks

For example:

\n
MyClass myClass = new MyClass();\n\nvoid Update()\n{\n    myClass.Execute();\n}\n
\n

Issue2723()

public void Issue2723()

Remarks

\n
Note
\n

This is a <note>. & " '

\n
\n

Inline <angle brackets>.

\n

link

\n
for (var i = 0; i > 10; i++) // & " '\nvar range = new Range<int> { Min = 0, Max = 10 };\n
\n
var range = new Range<int> { Min = 0, Max = 10 };
\n

Issue4017()

public void Issue4017()

Examples

public void HookMessageDeleted(BaseSocketClient client)\n{\n    client.MessageDeleted += HandleMessageDelete;\n}\n\npublic Task HandleMessageDelete(Cacheable<IMessage, ulong> cachedMessage, ISocketMessageChannel channel)\n{\n    // check if the message exists in cache; if not, we cannot report what was removed\n    if (!cachedMessage.HasValue) return;\n    var message = cachedMessage.Value;\n    Console.WriteLine($\"A message ({message.Id}) from {message.Author} was removed from the channel {channel.Name} ({channel.Id}):\"\n        + Environment.NewLine\n        + message.Content);\n    return Task.CompletedTask;\n}
\n

Remarks

void Update()\n{\n    myClass.Execute();\n}
\n

Issue4392()

public void Issue4392()

Remarks

@"\\\\?\\"

\n

Issue7484()

public void Issue7484()

Remarks

There's really no reason to not believe that this class can test things.

\n
TermDescription
A TermA Description
Bee TermBee Description
\n

Issue8764<T>()

public void Issue8764<T>() where T : unmanaged

Type Parameters

\r\nT\r\n\r\n
\r\n

Issue896()

Test

\n
public void Issue896()

See Also

\r\n
\nClass1.Test<T>\n
\n
\nClass1\n
\n\r\n

Issue9216()

Calculates the determinant of a 3-dimensional matrix:

\n

\\(A = \\begin{vmatrix} a_{11} & a_{12} & a_{13} \\\\ a_{21} & a_{22} & a_{23} \\\\ a_{31} & a_{32} & a_{33} \\end{vmatrix}\\)

\n

Returns the smallest value:

\n

\\(\\left\\{\\begin{matrix}a, a<b \\\\ b, b>a\\\\ \\end{matrix} \\right.\\)

\n
public static double Issue9216()

Returns

\r\n\r\ndouble\r\n
\r\n

XmlCommentIncludeTag()

This method should do something...

\n
public void XmlCommentIncludeTag()

Remarks

This is remarks.

\n", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Class1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json index 517eb4ea6b3..40eb5c4d203 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.IInheritdoc.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Interface IInheritdoc", - "content": "

Interface IInheritdoc

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public interface IInheritdoc

Methods

Issue7629()

This method should do something...

\n
void Issue7629()
", + "content": "

Interface IInheritdoc

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public interface IInheritdoc

Methods

Issue7629()

This method should do something...

\n
void Issue7629()
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.IInheritdoc.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json index 05be8ed9561..0e9b56b52cc 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue6366.Class1", - "content": "

Class Inheritdoc.Issue6366.Class1<T>

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public abstract class Inheritdoc.Issue6366.Class1<T>

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

TestMethod1(T, int)

This text inherited.

\n
public abstract T TestMethod1(T parm1, int parm2)

Parameters

\r\nparm1\r\nT\r\n
\r\n

This text NOT inherited.

\n
\r\nparm2\r\nint\r\n
\r\n

This text inherited.

\n

Returns

\r\n\r\nT\r\n
\r\n

This text inherited.

\n
", + "content": "

Class Inheritdoc.Issue6366.Class1<T>

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public abstract class Inheritdoc.Issue6366.Class1<T>

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

TestMethod1(T, int)

This text inherited.

\n
public abstract T TestMethod1(T parm1, int parm2)

Parameters

\r\nparm1\r\nT\r\n
\r\n

This text NOT inherited.

\n
\r\nparm2\r\nint\r\n
\r\n

This text inherited.

\n

Returns

\r\n\r\nT\r\n
\r\n

This text inherited.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.Class1-1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json index f426a5c3c56..5e9b22d80b0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue6366.Class2", - "content": "

Class Inheritdoc.Issue6366.Class2

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1<bool>

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Methods

TestMethod1(bool, int)

This text inherited.

\n
public override bool TestMethod1(bool parm1, int parm2)

Parameters

\r\nparm1\r\nbool\r\n
\r\n

This text NOT inherited.

\n
\r\nparm2\r\nint\r\n
\r\n

This text inherited.

\n

Returns

\r\n\r\nbool\r\n
\r\n

This text inherited.

\n
", + "content": "

Class Inheritdoc.Issue6366.Class2

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue6366.Class2 : Inheritdoc.Issue6366.Class1<bool>

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Methods

TestMethod1(bool, int)

This text inherited.

\n
public override bool TestMethod1(bool parm1, int parm2)

Parameters

\r\nparm1\r\nbool\r\n
\r\n

This text NOT inherited.

\n
\r\nparm2\r\nint\r\n
\r\n

This text inherited.

\n

Returns

\r\n\r\nbool\r\n
\r\n

This text inherited.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.Class2.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json index cc603e9355e..c5cb6a0c039 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue6366", - "content": "

Class Inheritdoc.Issue6366

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue6366

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class Inheritdoc.Issue6366

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue6366

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue6366.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json index eeff4a17ee3..570b47e53cc 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue7035", - "content": "

Class Inheritdoc.Issue7035

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue7035

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

A()

public void A()

B()

public void B()
", + "content": "

Class Inheritdoc.Issue7035

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue7035

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

A()

public void A()

B()

public void B()
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue7035.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 9d6c1456186..97158a59c0f 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue7484", - "content": "

Class Inheritdoc.Issue7484

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n

This is a test class to have something for DocFX to document.

\n
public class Inheritdoc.Issue7484

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Remarks

We're going to talk about things now.

\n
\nSimple method to generate docs for.\n
\nA string that could have something.\n
\n

Constructors

Issue7484()

This is a constructor to document.

\n
public Issue7484()

Properties

DoDad

A string that could have something.

\n
public string DoDad { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Methods

BoolReturningMethod(bool)

Simple method to generate docs for.

\n
public bool BoolReturningMethod(bool source)

Parameters

\r\nsource\r\nbool\r\n
\r\n

A meaningless boolean value, much like most questions in the world.

\n

Returns

\r\n\r\nbool\r\n
\r\n

An exactly equivalently meaningless boolean value, much like most answers in the world.

\n

Remarks

I'd like to take a moment to thank all of those who helped me get to\na place where I can write documentation like this.

\n", + "content": "

Class Inheritdoc.Issue7484

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n

This is a test class to have something for DocFX to document.

\n
public class Inheritdoc.Issue7484

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Remarks

We're going to talk about things now.

\n
\nSimple method to generate docs for.\n
\nA string that could have something.\n
\n

Constructors

Issue7484()

This is a constructor to document.

\n
public Issue7484()

Properties

DoDad

A string that could have something.

\n
public string DoDad { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Methods

BoolReturningMethod(bool)

Simple method to generate docs for.

\n
public bool BoolReturningMethod(bool source)

Parameters

\r\nsource\r\nbool\r\n
\r\n

A meaningless boolean value, much like most questions in the world.

\n

Returns

\r\n\r\nbool\r\n
\r\n

An exactly equivalently meaningless boolean value, much like most answers in the world.

\n

Remarks

I'd like to take a moment to thank all of those who helped me get to\na place where I can write documentation like this.

\n", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue7484.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json index 9e23b20a67a..288437f6c84 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc.Issue8101", - "content": "

Class Inheritdoc.Issue8101

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue8101

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Tween(float, float, float, Action<float>)

Create a new tween.

\n
public static object Tween(float from, float to, float duration, Action<float> onChange)

Parameters

\r\nfrom\r\nfloat\r\n
\r\n

The starting value.

\n
\r\nto\r\nfloat\r\n
\r\n

The end value.

\n
\r\nduration\r\nfloat\r\n
\r\n

Total tween duration in seconds.

\n
\r\nonChange\r\nAction<float>\r\n
\r\n

A callback that will be invoked every time the tween value changes.

\n

Returns

\r\n\r\nobject\r\n
\r\n

The newly created tween instance.

\n

Tween(int, int, float, Action<int>)

Create a new tween.

\n
public static object Tween(int from, int to, float duration, Action<int> onChange)

Parameters

\r\nfrom\r\nint\r\n
\r\n

The starting value.

\n
\r\nto\r\nint\r\n
\r\n

The end value.

\n
\r\nduration\r\nfloat\r\n
\r\n

Total tween duration in seconds.

\n
\r\nonChange\r\nAction<int>\r\n
\r\n

A callback that will be invoked every time the tween value changes.

\n

Returns

\r\n\r\nobject\r\n
\r\n

The newly created tween instance.

\n
", + "content": "

Class Inheritdoc.Issue8101

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc.Issue8101

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Tween(float, float, float, Action<float>)

Create a new tween.

\n
public static object Tween(float from, float to, float duration, Action<float> onChange)

Parameters

\r\nfrom\r\nfloat\r\n
\r\n

The starting value.

\n
\r\nto\r\nfloat\r\n
\r\n

The end value.

\n
\r\nduration\r\nfloat\r\n
\r\n

Total tween duration in seconds.

\n
\r\nonChange\r\nAction<float>\r\n
\r\n

A callback that will be invoked every time the tween value changes.

\n

Returns

\r\n\r\nobject\r\n
\r\n

The newly created tween instance.

\n

Tween(int, int, float, Action<int>)

Create a new tween.

\n
public static object Tween(int from, int to, float duration, Action<int> onChange)

Parameters

\r\nfrom\r\nint\r\n
\r\n

The starting value.

\n
\r\nto\r\nint\r\n
\r\n

The end value.

\n
\r\nduration\r\nfloat\r\n
\r\n

Total tween duration in seconds.

\n
\r\nonChange\r\nAction<int>\r\n
\r\n

A callback that will be invoked every time the tween value changes.

\n

Returns

\r\n\r\nobject\r\n
\r\n

The newly created tween instance.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue8101.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json index 941b34ff325..69aee7e9d4d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Struct Inheritdoc.Issue8129", - "content": "

Struct Inheritdoc.Issue8129

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public struct Inheritdoc.Issue8129

Inherited Members

\r\n\n\n\n\n\n\n\r\n

Constructors

Issue8129(string)

public Issue8129(string foo)

Parameters

\r\nfoo\r\nstring\r\n
\r\n
", + "content": "

Struct Inheritdoc.Issue8129

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public struct Inheritdoc.Issue8129

Inherited Members

\r\n\n\n\n\n\n\n\r\n

Constructors

Issue8129(string)

public Issue8129(string foo)

Parameters

\r\nfoo\r\nstring\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.Issue8129.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json index 09f55022120..243124781e9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Inheritdoc.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Inheritdoc", - "content": "

Class Inheritdoc

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc : IInheritdoc, IDisposable

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

\n
public void Dispose()

Issue7628()

This method should do something...

\n
public void Issue7628()

Issue7629()

This method should do something...

\n
public void Issue7629()
", + "content": "

Class Inheritdoc

\r\n
Namespace
BuildFromProject
Assembly
BuildFromProject.dll
\r\n
public class Inheritdoc : IInheritdoc, IDisposable

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

\n
public void Dispose()

Issue7628()

This method should do something...

\n
public void Issue7628()

Issue7629()

This method should do something...

\n
public void Issue7629()
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Inheritdoc.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json index 4120d415145..426f733bcf0 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.A.A.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class A", - "content": "

Class A

\r\n
Namespace
BuildFromProject.Issue8540.A
Assembly
BuildFromProject.dll
\r\n
public class A

Inheritance

\r\n
\nobject\n
\n
\nA\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class A

\r\n
Namespace
BuildFromProject.Issue8540.A
Assembly
BuildFromProject.dll
\r\n
public class A

Inheritance

\r\n
\nobject\n
\n
\nA\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Issue8540.A.A.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json index 7a6866f8370..b697a1011b1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromProject.Issue8540.B.B.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class B", - "content": "

Class B

\r\n
Namespace
BuildFromProject.Issue8540.B
Assembly
BuildFromProject.dll
\r\n
public class B

Inheritance

\r\n
\nobject\n
\n
\nB\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class B

\r\n
Namespace
BuildFromProject.Issue8540.B
Assembly
BuildFromProject.dll
\r\n
public class B

Inheritance

\r\n
\nobject\n
\n
\nB\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromProject.Issue8540.B.B.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index 2345f2f7f91..00476297a8e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class BaseClass1", - "content": "

Class BaseClass1

\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is the BaseClass

\n
public abstract class BaseClass1

Inheritance

\r\n
\nobject\n
\n\n\r\n

Derived

\r\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Methods

WithDeclarationKeyword(Class1)

public abstract DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

\r\nkeyword\r\nClass1\r\n
\r\n

Returns

\r\n\r\nDateTime\r\n
\r\n
", + "content": "

Class BaseClass1

\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is the BaseClass

\n
public abstract class BaseClass1

Inheritance

\r\n
\nobject\n
\n\n\r\n

Derived

\r\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Methods

WithDeclarationKeyword(Class1)

public abstract DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

\r\nkeyword\r\nClass1\r\n
\r\n

Returns

\r\n\r\nDateTime\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromVBSourceCode.BaseClass1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json index 38f5a7b82c8..a995c745ec4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Class1", - "content": "

Class Class1

\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is summary from vb class...

\n
public class Class1 : BaseClass1

Inheritance

\r\n
\nobject\n
\n\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\r\n

Fields

ValueClass

This is a Value type

\n
public Class1 ValueClass

Field Value

\r\n\r\nClass1\r\n
\r\n

Properties

Keyword

[Obsolete("This member is obsolete.", true)]\npublic Class1 Keyword { get; }

Property Value

\r\n\r\nClass1\r\n
\r\n

Methods

Value(string)

This is a Function

\n
public int Value(string name)

Parameters

\r\nname\r\nstring\r\n
\r\n

Name as the String\nvalue

\n

Returns

\r\n\r\nint\r\n
\r\n

Returns\nAhooo

\n

WithDeclarationKeyword(Class1)

What is Sub?

\n
public override DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

\r\nkeyword\r\nClass1\r\n
\r\n

Returns

\r\n\r\nDateTime\r\n
\r\n
", + "content": "

Class Class1

\r\n
Namespace
BuildFromVBSourceCode
\r\n

This is summary from vb class...

\n
public class Class1 : BaseClass1

Inheritance

\r\n
\nobject\n
\n\n
\nClass1\n
\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\r\n

Fields

ValueClass

This is a Value type

\n
public Class1 ValueClass

Field Value

\r\n\r\nClass1\r\n
\r\n

Properties

Keyword

[Obsolete("This member is obsolete.", true)]\npublic Class1 Keyword { get; }

Property Value

\r\n\r\nClass1\r\n
\r\n

Methods

Value(string)

This is a Function

\n
public int Value(string name)

Parameters

\r\nname\r\nstring\r\n
\r\n

Name as the String\nvalue

\n

Returns

\r\n\r\nint\r\n
\r\n

Returns\nAhooo

\n

WithDeclarationKeyword(Class1)

What is Sub?

\n
public override DateTime WithDeclarationKeyword(Class1 keyword)

Parameters

\r\nkeyword\r\nClass1\r\n
\r\n

Returns

\r\n\r\nDateTime\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/BuildFromVBSourceCode.Class1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json index 3ab942deea0..f8ce8eacb28 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Cat-2.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Cat", - "content": "

Class Cat<T, K>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Here's main class of this Demo.

\n

You can see mostly type of article within this class and you for more detail, please see the remarks.

\n

\n

this class is a template class. It has two Generic parameter. they are: T and K.

\n

The extension method of this class can refer to class

\n
[Serializable]\npublic class Cat<T, K> : ICat, IAnimal where T : class, new() where K : struct

Type Parameters

\r\nT\r\n\r\n
\r\n

This type should be class and can new instance.

\n
\r\nK\r\n\r\n
\r\n

This type is a struct type, class type can't be used for this parameter.

\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n
\nICat\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Examples

Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct.

\n
var a = new Cat(object, int)();\nint catNumber = new int();\nunsafe\n{\n    a.GetFeetLength(catNumber);\n}
\n

As you see, here we bring in pointer so we need to add unsafe keyword.

\n

Remarks

Here's all the content you can see in this class.

\n

Constructors

Cat()

Default constructor.

\n
public Cat()

Cat(T)

Constructor with one generic parameter.

\n
public Cat(T ownType)

Parameters

\r\nownType\r\nT\r\n
\r\n

This parameter type defined by class.

\n

Cat(string, out int, string, bool)

It's a complex constructor. The parameter will have some attributes.

\n
public Cat(string nickName, out int age, string realName, bool isHealthy)

Parameters

\r\nnickName\r\nstring\r\n
\r\n

it's string type.

\n
\r\nage\r\nint\r\n
\r\n

It's an out and ref parameter.

\n
\r\nrealName\r\nstring\r\n
\r\n

It's an out paramter.

\n
\r\nisHealthy\r\nbool\r\n
\r\n

It's an in parameter.

\n

Fields

isHealthy

Field with attribute.

\n
[ContextStatic]\n[NonSerialized]\npublic bool isHealthy

Field Value

\r\n\r\nbool\r\n
\r\n

Properties

Age

Hint cat's age.

\n
protected int Age { get; set; }

Property Value

\r\n\r\nint\r\n
\r\n

Name

EII property.

\n
public string Name { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

this[string]

This is index property of Cat. You can see that the visibility is different between get and set method.

\n
public int this[string a] { protected get; set; }

Property Value

\r\n\r\nint\r\n
\r\n

Methods

CalculateFood(DateTime)

It's a method with complex return type.

\n
public Dictionary<string, List<int>> CalculateFood(DateTime date)

Parameters

\r\ndate\r\nDateTime\r\n
\r\n

Date time to now.

\n

Returns

\r\n\r\nDictionary<string, List<int>>\r\n
\r\n

It's a relationship map of different kind food.

\n

Equals(object)

Override the method of Object.Equals(object obj).

\n
public override bool Equals(object obj)

Parameters

\r\nobj\r\nobject\r\n
\r\n

Can pass any class type.

\n

Returns

\r\n\r\nbool\r\n
\r\n

The return value tell you whehter the compare operation is successful.

\n

GetTailLength(int*, params object[])

It's an unsafe method.\nAs you see, catName is a pointer, so we need to add unsafe keyword.

\n
public long GetTailLength(int* catName, params object[] parameters)

Parameters

\r\ncatName\r\nint*\r\n
\r\n

Thie represent for cat name length.

\n
\r\nparameters\r\nobject[]\r\n
\r\n

Optional parameters.

\n

Returns

\r\n\r\nlong\r\n
\r\n

Return cat tail's length.

\n

Jump(T, K, ref bool)

This method have attribute above it.

\n
[Conditional("Debug")]\npublic void Jump(T ownType, K anotherOwnType, ref bool cheat)

Parameters

\r\nownType\r\nT\r\n
\r\n

Type come from class define.

\n
\r\nanotherOwnType\r\nK\r\n
\r\n

Type come from class define.

\n
\r\ncheat\r\nbool\r\n
\r\n

Hint whether this cat has cheat mode.

\n

Exceptions

\r\n\r\nArgumentException\r\n
\r\n

This is an argument exception

\n

ownEat

Eat event of this cat

\n
public event EventHandler ownEat

Event Type

\r\n\r\nEventHandler\r\n
\r\n

Operators

operator +(Cat<T, K>, int)

Addition operator of this class.

\n
public static int operator +(Cat<T, K> lsr, int rsr)

Parameters

\r\nlsr\r\nCat<T, K>\r\n
\r\n

..

\n
\r\nrsr\r\nint\r\n
\r\n

~~

\n

Returns

\r\n\r\nint\r\n
\r\n

Result with int type.

\n

explicit operator Tom(Cat<T, K>)

Expilicit operator of this class.

\n

It means this cat can evolve to change to Tom. Tom and Jerry.

\n
public static explicit operator Tom(Cat<T, K> src)

Parameters

\r\nsrc\r\nCat<T, K>\r\n
\r\n

Instance of this class.

\n

Returns

\r\n\r\nTom\r\n
\r\n

Advanced class type of cat.

\n

operator -(Cat<T, K>, int)

Similar with operaotr +, refer to that topic.

\n
public static int operator -(Cat<T, K> lsr, int rsr)

Parameters

\r\nlsr\r\nCat<T, K>\r\n
\r\n
\r\nrsr\r\nint\r\n
\r\n

Returns

\r\n\r\nint\r\n
\r\n
", + "content": "

Class Cat<T, K>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Here's main class of this Demo.

\n

You can see mostly type of article within this class and you for more detail, please see the remarks.

\n

\n

this class is a template class. It has two Generic parameter. they are: T and K.

\n

The extension method of this class can refer to class

\n
[Serializable]\npublic class Cat<T, K> : ICat, IAnimal where T : class, new() where K : struct

Type Parameters

\r\nT\r\n\r\n
\r\n

This type should be class and can new instance.

\n
\r\nK\r\n\r\n
\r\n

This type is a struct type, class type can't be used for this parameter.

\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Implements

\r\n
\nICat\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Examples

Here's example of how to create an instance of this class. As T is limited with class and K is limited with struct.

\n
var a = new Cat(object, int)();\nint catNumber = new int();\nunsafe\n{\n    a.GetFeetLength(catNumber);\n}
\n

As you see, here we bring in pointer so we need to add unsafe keyword.

\n

Remarks

Here's all the content you can see in this class.

\n

Constructors

Cat()

Default constructor.

\n
public Cat()

Cat(T)

Constructor with one generic parameter.

\n
public Cat(T ownType)

Parameters

\r\nownType\r\nT\r\n
\r\n

This parameter type defined by class.

\n

Cat(string, out int, string, bool)

It's a complex constructor. The parameter will have some attributes.

\n
public Cat(string nickName, out int age, string realName, bool isHealthy)

Parameters

\r\nnickName\r\nstring\r\n
\r\n

it's string type.

\n
\r\nage\r\nint\r\n
\r\n

It's an out and ref parameter.

\n
\r\nrealName\r\nstring\r\n
\r\n

It's an out paramter.

\n
\r\nisHealthy\r\nbool\r\n
\r\n

It's an in parameter.

\n

Fields

isHealthy

Field with attribute.

\n
[ContextStatic]\n[NonSerialized]\npublic bool isHealthy

Field Value

\r\n\r\nbool\r\n
\r\n

Properties

Age

Hint cat's age.

\n
protected int Age { get; set; }

Property Value

\r\n\r\nint\r\n
\r\n

Name

EII property.

\n
public string Name { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

this[string]

This is index property of Cat. You can see that the visibility is different between get and set method.

\n
public int this[string a] { protected get; set; }

Property Value

\r\n\r\nint\r\n
\r\n

Methods

CalculateFood(DateTime)

It's a method with complex return type.

\n
public Dictionary<string, List<int>> CalculateFood(DateTime date)

Parameters

\r\ndate\r\nDateTime\r\n
\r\n

Date time to now.

\n

Returns

\r\n\r\nDictionary<string, List<int>>\r\n
\r\n

It's a relationship map of different kind food.

\n

Equals(object)

Override the method of Object.Equals(object obj).

\n
public override bool Equals(object obj)

Parameters

\r\nobj\r\nobject\r\n
\r\n

Can pass any class type.

\n

Returns

\r\n\r\nbool\r\n
\r\n

The return value tell you whehter the compare operation is successful.

\n

GetTailLength(int*, params object[])

It's an unsafe method.\nAs you see, catName is a pointer, so we need to add unsafe keyword.

\n
public long GetTailLength(int* catName, params object[] parameters)

Parameters

\r\ncatName\r\nint*\r\n
\r\n

Thie represent for cat name length.

\n
\r\nparameters\r\nobject[]\r\n
\r\n

Optional parameters.

\n

Returns

\r\n\r\nlong\r\n
\r\n

Return cat tail's length.

\n

Jump(T, K, ref bool)

This method have attribute above it.

\n
[Conditional("Debug")]\npublic void Jump(T ownType, K anotherOwnType, ref bool cheat)

Parameters

\r\nownType\r\nT\r\n
\r\n

Type come from class define.

\n
\r\nanotherOwnType\r\nK\r\n
\r\n

Type come from class define.

\n
\r\ncheat\r\nbool\r\n
\r\n

Hint whether this cat has cheat mode.

\n

Exceptions

\r\n\r\nArgumentException\r\n
\r\n

This is an argument exception

\n

ownEat

Eat event of this cat

\n
public event EventHandler ownEat

Event Type

\r\n\r\nEventHandler\r\n
\r\n

Operators

operator +(Cat<T, K>, int)

Addition operator of this class.

\n
public static int operator +(Cat<T, K> lsr, int rsr)

Parameters

\r\nlsr\r\nCat<T, K>\r\n
\r\n

..

\n
\r\nrsr\r\nint\r\n
\r\n

~~

\n

Returns

\r\n\r\nint\r\n
\r\n

Result with int type.

\n

explicit operator Tom(Cat<T, K>)

Expilicit operator of this class.

\n

It means this cat can evolve to change to Tom. Tom and Jerry.

\n
public static explicit operator Tom(Cat<T, K> src)

Parameters

\r\nsrc\r\nCat<T, K>\r\n
\r\n

Instance of this class.

\n

Returns

\r\n\r\nTom\r\n
\r\n

Advanced class type of cat.

\n

operator -(Cat<T, K>, int)

Similar with operaotr +, refer to that topic.

\n
public static int operator -(Cat<T, K> lsr, int rsr)

Parameters

\r\nlsr\r\nCat<T, K>\r\n
\r\n
\r\nrsr\r\nint\r\n
\r\n

Returns

\r\n\r\nint\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Cat-2.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json index 448eccdd0c7..1c85de753ce 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.CatException-1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class CatException", - "content": "

Class CatException<T>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n
public class CatException<T> : Exception, ISerializable

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Implements

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class CatException<T>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n
public class CatException<T> : Exception, ISerializable

Type Parameters

\r\nT\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\n\r\n

Implements

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.CatException-1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json index 06d098f6099..b77ef37f5b6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Complex-2.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Complex", - "content": "

Class Complex<T, J>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n
public class Complex<T, J>

Type Parameters

\r\nT\r\n\r\n
\r\n
\r\nJ\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class Complex<T, J>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n
public class Complex<T, J>

Type Parameters

\r\nT\r\n\r\n
\r\n
\r\nJ\r\n\r\n
\r\n

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Complex-2.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index c20cc3ba841..4f9827f17e3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Enum ContainersRefType.ColorType", - "content": "

Enum ContainersRefType.ColorType

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Enumeration ColorType

\n
public enum ContainersRefType.ColorType

Fields

\r\nRed = 0\r\n\r\n
\r\n

red

\n
\r\nBlue = 1\r\n\r\n
\r\n

blue

\n
\r\nYellow = 2\r\n\r\n
\r\n

yellow

\n
", + "content": "

Enum ContainersRefType.ColorType

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Enumeration ColorType

\n
public enum ContainersRefType.ColorType

Fields

\r\nRed = 0\r\n\r\n
\r\n

red

\n
\r\nBlue = 1\r\n\r\n
\r\n

blue

\n
\r\nYellow = 2\r\n\r\n
\r\n

yellow

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ColorType.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json index b6c27626f1c..5d89ab1d51e 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class ContainersRefType.ContainersRefTypeChild", - "content": "

Class ContainersRefType.ContainersRefTypeChild

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public class ContainersRefType.ContainersRefTypeChild

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class ContainersRefType.ContainersRefTypeChild

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public class ContainersRefType.ContainersRefTypeChild

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json index 9eb18350907..b788d457f61 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Interface ContainersRefType.ContainersRefTypeChildInterface", - "content": "

Interface ContainersRefType.ContainersRefTypeChildInterface

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public interface ContainersRefType.ContainersRefTypeChildInterface
", + "content": "

Interface ContainersRefType.ContainersRefTypeChildInterface

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public interface ContainersRefType.ContainersRefTypeChildInterface
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index 976ed15307d..8583c3aba91 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Delegate ContainersRefType.ContainersRefTypeDelegate", - "content": "

Delegate ContainersRefType.ContainersRefTypeDelegate

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Delegate ContainersRefTypeDelegate

\n
public delegate void ContainersRefType.ContainersRefTypeDelegate()
", + "content": "

Delegate ContainersRefType.ContainersRefTypeDelegate

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Delegate ContainersRefTypeDelegate

\n
public delegate void ContainersRefType.ContainersRefTypeDelegate()
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json index 64f9b3ca31a..167d8ae4049 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Struct ContainersRefType", - "content": "

Struct ContainersRefType

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Struct ContainersRefType

\n
public struct ContainersRefType

Inherited Members

\r\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Fields

ColorCount

ColorCount

\n
public long ColorCount

Field Value

\r\n\r\nlong\r\n
\r\n

Properties

GetColorCount

GetColorCount

\n
public long GetColorCount { get; }

Property Value

\r\n\r\nlong\r\n
\r\n

Methods

ContainersRefTypeNonRefMethod(params object[])

ContainersRefTypeNonRefMethod

\narray\n
public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)

Parameters

\r\nparmsArray\r\nobject[]\r\n
\r\n

Returns

\r\n\r\nint\r\n
\r\n

ContainersRefTypeEventHandler

public event EventHandler ContainersRefTypeEventHandler

Event Type

\r\n\r\nEventHandler\r\n
\r\n
", + "content": "

Struct ContainersRefType

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n

Struct ContainersRefType

\n
public struct ContainersRefType

Inherited Members

\r\n\n\n\n\n\n\n\r\n

Extension Methods

\r\n\n\n\r\n

Fields

ColorCount

ColorCount

\n
public long ColorCount

Field Value

\r\n\r\nlong\r\n
\r\n

Properties

GetColorCount

GetColorCount

\n
public long GetColorCount { get; }

Property Value

\r\n\r\nlong\r\n
\r\n

Methods

ContainersRefTypeNonRefMethod(params object[])

ContainersRefTypeNonRefMethod

\narray\n
public static int ContainersRefTypeNonRefMethod(params object[] parmsArray)

Parameters

\r\nparmsArray\r\nobject[]\r\n
\r\n

Returns

\r\n\r\nint\r\n
\r\n

ContainersRefTypeEventHandler

public event EventHandler ContainersRefTypeEventHandler

Event Type

\r\n\r\nEventHandler\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ContainersRefType.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json index 6d8663846ed..890fadab5cc 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class ExplicitLayoutClass", - "content": "

Class ExplicitLayoutClass

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public class ExplicitLayoutClass

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", + "content": "

Class ExplicitLayoutClass

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.Core.dll
\r\n
public class ExplicitLayoutClass

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.ExplicitLayoutClass.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json index 50d83b595ff..401c5a30d1a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Core.Issue231.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Issue231", - "content": "

Class Issue231

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.dll, CatLibrary.Core.dll
\r\n
public static class Issue231

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Bar(ContainersRefType)

public static void Bar(this ContainersRefType c)

Parameters

\r\nc\r\nContainersRefType\r\n
\r\n

Foo(ContainersRefType)

public static void Foo(this ContainersRefType c)

Parameters

\r\nc\r\nContainersRefType\r\n
\r\n
", + "content": "

Class Issue231

\r\n
Namespace
CatLibrary.Core
Assembly
CatLibrary.dll, CatLibrary.Core.dll
\r\n
public static class Issue231

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Bar(ContainersRefType)

public static void Bar(this ContainersRefType c)

Parameters

\r\nc\r\nContainersRefType\r\n
\r\n

Foo(ContainersRefType)

public static void Foo(this ContainersRefType c)

Parameters

\r\nc\r\nContainersRefType\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Core.Issue231.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json index 0eb261c1c6a..d6d37423eac 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Delegate FakeDelegate", - "content": "

Delegate FakeDelegate<T>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Fake delegate

\n
public delegate int FakeDelegate<T>(long num, string name, params object[] scores)

Parameters

\r\nnum\r\nlong\r\n
\r\n

Fake para

\n
\r\nname\r\nstring\r\n
\r\n

Fake para

\n
\r\nscores\r\nobject[]\r\n
\r\n

Optional Parameter.

\n

Returns

\r\n\r\nint\r\n
\r\n

Return a fake number to confuse you.

\n

Type Parameters

\r\nT\r\n\r\n
\r\n

Fake para

\n
", + "content": "

Delegate FakeDelegate<T>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Fake delegate

\n
public delegate int FakeDelegate<T>(long num, string name, params object[] scores)

Parameters

\r\nnum\r\nlong\r\n
\r\n

Fake para

\n
\r\nname\r\nstring\r\n
\r\n

Fake para

\n
\r\nscores\r\nobject[]\r\n
\r\n

Optional Parameter.

\n

Returns

\r\n\r\nint\r\n
\r\n

Return a fake number to confuse you.

\n

Type Parameters

\r\nT\r\n\r\n
\r\n

Fake para

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.FakeDelegate-1.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json index fd8b545209b..6ae1c1d9698 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.IAnimal.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Interface IAnimal", - "content": "

Interface IAnimal

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

This is basic interface of all animal.

\n
public interface IAnimal

Properties

Name

Name of Animal.

\n
string Name { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

this[int]

Return specific number animal's name.

\n
string this[int index] { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Methods

Eat()

Animal's eat method.

\n
void Eat()

Eat<Tool>(Tool)

Overload method of eat. This define the animal eat by which tool.

\n
void Eat<Tool>(Tool tool) where Tool : class

Parameters

\r\ntool\r\nTool\r\n
\r\n

Tool name.

\n

Type Parameters

\r\nTool\r\n\r\n
\r\n

It's a class type.

\n

Eat(string)

Feed the animal with some food

\n
void Eat(string food)

Parameters

\r\nfood\r\nstring\r\n
\r\n

Food to eat

\n
", + "content": "

Interface IAnimal

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

This is basic interface of all animal.

\n
public interface IAnimal

Properties

Name

Name of Animal.

\n
string Name { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

this[int]

Return specific number animal's name.

\n
string this[int index] { get; }

Property Value

\r\n\r\nstring\r\n
\r\n

Methods

Eat()

Animal's eat method.

\n
void Eat()

Eat<Tool>(Tool)

Overload method of eat. This define the animal eat by which tool.

\n
void Eat<Tool>(Tool tool) where Tool : class

Parameters

\r\ntool\r\nTool\r\n
\r\n

Tool name.

\n

Type Parameters

\r\nTool\r\n\r\n
\r\n

It's a class type.

\n

Eat(string)

Feed the animal with some food

\n
void Eat(string food)

Parameters

\r\nfood\r\nstring\r\n
\r\n

Food to eat

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.IAnimal.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json index 64be093060d..b2773fabfe7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICat.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Interface ICat", - "content": "

Interface ICat

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Cat's interface

\n
public interface ICat : IAnimal

Implements

\r\n\n\r\n

Extension Methods

\r\n\n\n\r\n

eat

eat event of cat. Every cat must implement this event.

\n
event EventHandler eat

Event Type

\r\n\r\nEventHandler\r\n
\r\n
", + "content": "

Interface ICat

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Cat's interface

\n
public interface ICat : IAnimal

Implements

\r\n\n\r\n

Extension Methods

\r\n\n\n\r\n

eat

eat event of cat. Every cat must implement this event.

\n
event EventHandler eat

Event Type

\r\n\r\nEventHandler\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.ICat.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json index 1a1856f2eac..b20a2e43885 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.ICatExtension.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class ICatExtension", - "content": "

Class ICatExtension

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

It's the class that contains ICat interface's extension method.

\n

This class must be public and static.

\n

Also it shouldn't be a geneic class

\n
public static class ICatExtension

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Play(ICat, ColorType)

Extension method to let cat play

\n
public static void Play(this ICat icat, ContainersRefType.ColorType toy)

Parameters

\r\nicat\r\nICat\r\n
\r\n

Cat

\n
\r\ntoy\r\nContainersRefType.ColorType\r\n
\r\n

Something to play

\n

Sleep(ICat, long)

Extension method hint that how long the cat can sleep.

\n
public static void Sleep(this ICat icat, long hours)

Parameters

\r\nicat\r\nICat\r\n
\r\n

The type will be extended.

\n
\r\nhours\r\nlong\r\n
\r\n

The length of sleep.

\n
", + "content": "

Class ICatExtension

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

It's the class that contains ICat interface's extension method.

\n

This class must be public and static.

\n

Also it shouldn't be a geneic class

\n
public static class ICatExtension

Inheritance

\r\n
\nobject\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

Play(ICat, ColorType)

Extension method to let cat play

\n
public static void Play(this ICat icat, ContainersRefType.ColorType toy)

Parameters

\r\nicat\r\nICat\r\n
\r\n

Cat

\n
\r\ntoy\r\nContainersRefType.ColorType\r\n
\r\n

Something to play

\n

Sleep(ICat, long)

Extension method hint that how long the cat can sleep.

\n
public static void Sleep(this ICat icat, long hours)

Parameters

\r\nicat\r\nICat\r\n
\r\n

The type will be extended.

\n
\r\nhours\r\nlong\r\n
\r\n

The length of sleep.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.ICatExtension.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json index ed6a12479b3..ef01b6b0921 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Delegate MRefDelegate", - "content": "

Delegate MRefDelegate<K, T, L>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Generic delegate with many constrains.

\n
public delegate void MRefDelegate<K, T, L>(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable<long>

Parameters

\r\nk\r\nK\r\n
\r\n

Type K.

\n
\r\nt\r\nT\r\n
\r\n

Type T.

\n
\r\nl\r\nL\r\n
\r\n

Type L.

\n

Type Parameters

\r\nK\r\n\r\n
\r\n

Generic K.

\n
\r\nT\r\n\r\n
\r\n

Generic T.

\n
\r\nL\r\n\r\n
\r\n

Generic L.

\n
", + "content": "

Delegate MRefDelegate<K, T, L>

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Generic delegate with many constrains.

\n
public delegate void MRefDelegate<K, T, L>(K k, T t, L l) where K : class, IComparable where T : struct where L : Tom, IEnumerable<long>

Parameters

\r\nk\r\nK\r\n
\r\n

Type K.

\n
\r\nt\r\nT\r\n
\r\n

Type T.

\n
\r\nl\r\nL\r\n
\r\n

Type L.

\n

Type Parameters

\r\nK\r\n\r\n
\r\n

Generic K.

\n
\r\nT\r\n\r\n
\r\n

Generic T.

\n
\r\nL\r\n\r\n
\r\n

Generic L.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.MRefDelegate-3.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json index f359c8c380c..a5d91525e32 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Delegate MRefNormalDelegate", - "content": "

Delegate MRefNormalDelegate

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Delegate in the namespace

\n
public delegate void MRefNormalDelegate(List<string> pics, out string name)

Parameters

\r\npics\r\nList<string>\r\n
\r\n

a name list of pictures.

\n
\r\nname\r\nstring\r\n
\r\n

give out the needed name.

\n
", + "content": "

Delegate MRefNormalDelegate

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Delegate in the namespace

\n
public delegate void MRefNormalDelegate(List<string> pics, out string name)

Parameters

\r\npics\r\nList<string>\r\n
\r\n

a name list of pictures.

\n
\r\nname\r\nstring\r\n
\r\n

give out the needed name.

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.MRefNormalDelegate.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json index 593a2a0af28..569157870bd 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.Tom.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class Tom", - "content": "

Class Tom

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Tom class is only inherit from Object. Not any member inside itself.

\n
public class Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\r\n

Derived

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>)

This is a Tom Method with complex type as return

\n
public Complex<string, TomFromBaseClass> TomMethod(Complex<TomFromBaseClass, TomFromBaseClass> a, Tuple<string, Tom> b)

Parameters

\r\na\r\nComplex<TomFromBaseClass, TomFromBaseClass>\r\n
\r\n

A complex input

\n
\r\nb\r\nTuple<string, Tom>\r\n
\r\n

Another complex input

\n

Returns

\r\n\r\nComplex<string, TomFromBaseClass>\r\n
\r\n

Complex

\n

Exceptions

\r\n\r\nNotImplementedException\r\n
\r\n

This is not implemented

\n
\r\n\r\nArgumentException\r\n
\r\n

This is the exception to be thrown when implemented

\n
\r\n\r\nCatException<T>\r\n
\r\n

This is the exception in current documentation

\n
", + "content": "

Class Tom

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

Tom class is only inherit from Object. Not any member inside itself.

\n
public class Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\r\n

Derived

\r\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\r\n

Methods

TomMethod(Complex<TomFromBaseClass, TomFromBaseClass>, Tuple<string, Tom>)

This is a Tom Method with complex type as return

\n
public Complex<string, TomFromBaseClass> TomMethod(Complex<TomFromBaseClass, TomFromBaseClass> a, Tuple<string, Tom> b)

Parameters

\r\na\r\nComplex<TomFromBaseClass, TomFromBaseClass>\r\n
\r\n

A complex input

\n
\r\nb\r\nTuple<string, Tom>\r\n
\r\n

Another complex input

\n

Returns

\r\n\r\nComplex<string, TomFromBaseClass>\r\n
\r\n

Complex

\n

Exceptions

\r\n\r\nNotImplementedException\r\n
\r\n

This is not implemented

\n
\r\n\r\nArgumentException\r\n
\r\n

This is the exception to be thrown when implemented

\n
\r\n\r\nCatException<T>\r\n
\r\n

This is the exception in current documentation

\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.Tom.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json index 3ef1f5f128c..4efa9b4dae1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Class TomFromBaseClass", - "content": "

Class TomFromBaseClass

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

TomFromBaseClass inherits from @

\n
public class TomFromBaseClass : Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Constructors

TomFromBaseClass(int)

This is a #ctor with parameter

\n
public TomFromBaseClass(int k)

Parameters

\r\nk\r\nint\r\n
\r\n
", + "content": "

Class TomFromBaseClass

\r\n
Namespace
CatLibrary
Assembly
CatLibrary.dll
\r\n

TomFromBaseClass inherits from @

\n
public class TomFromBaseClass : Tom

Inheritance

\r\n
\nobject\n
\n
\nTom\n
\n\n\r\n

Inherited Members

\r\n\n\n\n\n\n\n\n\n\r\n

Constructors

TomFromBaseClass(int)

This is a #ctor with parameter

\n
public TomFromBaseClass(int k)

Parameters

\r\nk\r\nint\r\n
\r\n
", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/CatLibrary.TomFromBaseClass.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 6ec80e33a14..94851dbb621 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/apipage/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -3,7 +3,7 @@ "_appTitle": "docfx seed website", "_enableSearch": true, "title": "Enum ColorType", - "content": "

Enum ColorType

\r\n
Namespace
MRef.Demo.Enumeration
Assembly
CatLibrary.dll
\r\n

Enumeration ColorType

\n
public enum ColorType

Fields

\r\nRed = 0\r\n\r\n
\r\n

this color is red

\n
\r\nBlue = 1\r\n\r\n
\r\n

blue like river

\n
\r\nYellow = 2\r\n\r\n
\r\n

yellow comes from desert

\n

Remarks

\nRed/Blue/Yellow can become all color you want.\n

\n
    \n

    See Also

    \r\n
    \nobject\n
    \n\r\n
    ", + "content": "

    Enum ColorType

    \r\n
    Namespace
    MRef.Demo.Enumeration
    Assembly
    CatLibrary.dll
    \r\n

    Enumeration ColorType

    \n
    public enum ColorType

    Fields

    \r\nRed = 0\r\n\r\n
    \r\n

    this color is red

    \n
    \r\nBlue = 1\r\n\r\n
    \r\n

    blue like river

    \n
    \r\nYellow = 2\r\n\r\n
    \r\n

    yellow comes from desert

    \n

    Remarks

    \nRed/Blue/Yellow can become all color you want.\n

    \n
      \n

      See Also

      \r\n
      \nobject\n
      \n\r\n
      ", "yamlmime": "ApiPage", "_disableNextArticle": true, "_key": "obj/apipage/MRef.Demo.Enumeration.ColorType.yml", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json index 32534cd8807..722163abc85 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/csharp_coding_standards.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "articles/csharp_coding_standards.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json index 26dd5b9498c..24f0279205d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/docfx_getting_started.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "articles/docfx_getting_started.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json index 8c6f105bbe5..22c64ec71e4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/engineering_guidelines.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "articles/engineering_guidelines.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json index 58b92e684a4..7760cac42b7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/articles/markdown.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "articles/markdown.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json index 334fe07689c..cd01d6952fe 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/index.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "index.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json index a1d84dc4485..95eee158b12 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.Class1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromAssembly.Class1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json index 6330f1fec3b..219e9656f84 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromAssembly.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromAssembly.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json index 3d28397b73e..6d1364c4ce3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.CSharp.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromCSharpSourceCode.CSharp.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json index 39a4a173c27..495fa1b3f15 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromCSharpSourceCode.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromCSharpSourceCode.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json index e9f1469d31d..c99d015105b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.IIssue8948.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.IIssue8948.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json index 4aaf78963d3..147115c8e87 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8665.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.Issue8665.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json index 02a4754dacb..c8eeec73903 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8696Attribute.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.Issue8696Attribute.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json index 4cf0456fdd4..c740a13010d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Issue8948.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.Issue8948.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json index 02b3a4a535b..e62660d32d7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.Test-1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.Test-1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json index 616670b9786..471d1bc8373 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Class1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Class1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json index e6133069ab9..aa6e57f0775 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.IInheritdoc.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.IInheritdoc.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json index 186d80aa0b2..2f547f43a7c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class1-1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json index 72843c61be3..0f3cdd5cf0b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.Class2.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.Class2.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json index 555d2e8831f..5e6dfe04d40 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue6366.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue6366.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json index ae38ac83e90..c91005e061a 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7035.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue7035.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json index 9db1be245b9..0830e3a605b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue7484.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue7484.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json index 949f541ad14..a19532a5f42 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8101.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue8101.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json index 76003641fdd..68cb55a36eb 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.Issue8129.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.Issue8129.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json index c0e33aff31e..a6b5edffb0b 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Inheritdoc.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Inheritdoc.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json index 131e9288899..8402109ff41 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.A.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Issue8540.A.A.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json index f63612cd3d1..2130b90ad59 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.A.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Issue8540.A.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json index ce22595dbb5..d1e421c472c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.B.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Issue8540.B.B.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json index 822d9f76c1f..3594a33ccc4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.B.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Issue8540.B.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json index 135fbddf930..eaed9afd37d 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.Issue8540.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.Issue8540.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json index 552bd332237..445e3878d82 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromProject.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromProject.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json index ab0d2aafb1c..8faccb343f5 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.BaseClass1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromVBSourceCode.BaseClass1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json index 0ce2d8fb1ae..98f249c54c8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.Class1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromVBSourceCode.Class1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json index 6205bcb0ef5..3f5f8ca5278 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/BuildFromVBSourceCode.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/BuildFromVBSourceCode.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json index 02c67271ae4..ce5b9e7d216 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Cat-2.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Cat-2.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json index cc108683feb..b676b4928f8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.CatException-1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.CatException-1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json index ede302baf28..62adf7be652 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Complex-2.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Complex-2.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json index 71193510186..398257b75fd 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ColorType.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ContainersRefType.ColorType.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json index bcd6d62033a..e217db989a7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChild.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json index fa37ee58e5c..bfb43ae5779 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeChildInterface.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json index 0bafa8c4a16..c4551f0e6f9 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ContainersRefType.ContainersRefTypeDelegate.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json index db7f7f085a7..1f86a72c470 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ContainersRefType.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ContainersRefType.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json index 6f25302c001..7a7cdc7745c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.ExplicitLayoutClass.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.ExplicitLayoutClass.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json index 8a11c93e3d2..5af41c5071c 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.Issue231.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.Issue231.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json index 40d0e3bd56b..128ea451a95 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Core.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Core.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json index aa2da7d51a7..e77df1b80da 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.FakeDelegate-1.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.FakeDelegate-1.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json index 56d4ed1fe69..fc467a3b5b4 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.IAnimal.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.IAnimal.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json index 903e2d8f70b..e54a3ceb9fe 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICat.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.ICat.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json index afffd174531..2a1b1a1e2d8 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.ICatExtension.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.ICatExtension.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json index 4443a0a4f1f..d1d28444ea2 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefDelegate-3.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.MRefDelegate-3.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json index d024f24f916..3865f3238ea 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.MRefNormalDelegate.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.MRefNormalDelegate.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json index 92d632857a7..c4d883236b6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.Tom.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.Tom.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json index 9d04c50d2e1..d9f0fce2aa1 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.TomFromBaseClass.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.TomFromBaseClass.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json index 9ee550e98d4..7d1670a30af 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/CatLibrary.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/CatLibrary.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json index 133ce736377..712a1faae86 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.ColorType.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/MRef.Demo.Enumeration.ColorType.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json index f923168256e..c8549b14fb3 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.Enumeration.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/MRef.Demo.Enumeration.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json index 5918d0b3317..cfb3c364ac6 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.Demo.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/MRef.Demo.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json index 7e09e86f6bd..06e577c04c7 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/md/MRef.html.view.verified.json @@ -8,8 +8,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "path": "obj/md/MRef.md", "documentation": { @@ -19,8 +18,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json index e6bb07be791..c5edad35350 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/contacts.html.view.verified.json @@ -43,8 +43,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contacts.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contacts%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -101,8 +100,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20by%20id%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -405,8 +403,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -457,8 +454,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -525,8 +521,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_manager_link.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20manager%20link%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -598,8 +593,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_update_contact_manager.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fupdate%20contact%20manager%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -650,8 +644,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_delete_contact_manager_by_id.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fdelete%20contact%20manager%20by%20id%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -708,8 +701,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_direct_reports_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20direct%20reports%20links%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -766,8 +758,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=graph_windows_net_myorganization_Contacts_1_6_get_contact_memberOf_links.md&value=---%0Auid%3A%20graph.windows.net%2Fmyorganization%2FContacts%2F1.6%2Fget%20contact%20memberOf%20links%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/contacts_swagger2.json/#L1", @@ -791,8 +782,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website", diff --git a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json index f2e5821a473..6e460524fdd 100644 --- a/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json +++ b/test/docfx.Snapshot.Tests/SamplesTest.Seed/restapi/petstore.html.view.verified.json @@ -186,8 +186,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "footer": "\n
      \n

      NOTE: Add pet only when you needs.

      \n
      \n", "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", @@ -378,8 +377,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePet%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -532,8 +530,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByStatus.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByStatus%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -681,8 +678,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_findPetsByTags.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FfindPetsByTags%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -747,8 +743,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deletePet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeletePet%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -934,8 +929,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getPetById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetPetById%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1007,8 +1001,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updatePetWithForm.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdatePetWithForm%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1109,8 +1102,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_uploadFile.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FuploadFile%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1304,8 +1296,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "footer": "\n
      \n

      NOTE: Add pet only when you needs.

      \n
      \n", "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_addPet.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FaddPet%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", @@ -1354,8 +1345,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getInventory.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetInventory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1530,8 +1520,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_placeOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FplaceOrder%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1583,8 +1572,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteOrder.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteOrder%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1704,8 +1692,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getOrderById.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetOrderById%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1831,8 +1818,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -1919,8 +1905,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithArrayInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithArrayInput%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2007,8 +1992,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_createUsersWithListInput.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FcreateUsersWithListInput%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2080,8 +2064,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_loginUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FloginUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2119,8 +2102,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_logoutUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FlogoutUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2170,8 +2152,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_deleteUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FdeleteUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2294,8 +2275,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_getUserByName.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FgetUserByName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2423,8 +2403,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "docurl": "https://github.com/dotnet/docfx/new/main/apiSpec/new?filename=petstore_swagger_io_v2_Swagger_Petstore_1_0_0_updateUser.md&value=---%0Auid%3A%20petstore.swagger.io%2Fv2%2FSwagger%20Petstore%2F1.0.0%2FupdateUser%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A", "sourceurl": "https://github.com/dotnet/docfx/blob/main/samples/seed/restapi/petstore.swagger.json/#L1", @@ -2469,8 +2448,7 @@ "repo": "https://github.com/dotnet/docfx" }, "startLine": 0.0, - "endLine": 0.0, - "isExternal": false + "endLine": 0.0 }, "_appName": "Seed", "_appTitle": "docfx seed website",