summaryrefslogtreecommitdiffstats
path: root/docs/build_toc.ps1
diff options
context:
space:
mode:
authoraidanfnv <aidanf@nvidia.com>2025-06-18 11:43:45 -0700
committerGitHub <noreply@github.com>2025-06-18 18:43:45 +0000
commit1fb60f25bb46c0f0f5a1780f52ee721a04ea9306 (patch)
tree7ccd2caecae21cb658587a423e2f77431ef1ad52 /docs/build_toc.ps1
parent3822f9243f7b80be4c47318cf3d0b8d9800e67dd (diff)
Delete GFX User Guide (#7474)
Closes #6817 This change deletes the GFX User Guide, as GFX is being deprecated. It also removes the rebuild of its TOC from the TOC rebuilding scripts and replaces the link to the guide in the README with a note that it is being deprecated in favor of slang-rhi. Co-authored-by: Gangzheng Tong <tonggangzheng@gmail.com>
Diffstat (limited to 'docs/build_toc.ps1')
-rw-r--r--docs/build_toc.ps12
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/build_toc.ps1 b/docs/build_toc.ps1
index ad727713d..543a8bc20 100644
--- a/docs/build_toc.ps1
+++ b/docs/build_toc.ps1
@@ -5,8 +5,6 @@ $job = Start-Job -ArgumentList $PSScriptRoot -ScriptBlock {
Add-Type -ReferencedAssemblies $assemblies -TypeDefinition $code -Language CSharp
$path = Join-Path -Path $args[0] -ChildPath "user-guide"
[toc.Builder]::Run($path);
- $path = Join-Path -Path $args[0] -ChildPath "gfx-user-guide"
- [toc.Builder]::Run($path);
}
Wait-Job $job
Receive-Job -Job $job