Skip to content

Commit 4429074

Browse files
committed
Fix issues with broken links and edits
Some links from dependent repos weren't resolving. In addition, the edit button for dependent repos doesn't work, so turn it off.
1 parent 0263a79 commit 4429074

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

docfx.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
"Compiler Breaking Changes - DotNet 7.md",
9191
"Compiler Breaking Changes - DotNet 8.md",
9292
"Compiler Breaking Changes - DotNet 9.md",
93-
"Compiler Breaking Changes - DotNet 10.md"
93+
"Compiler Breaking Changes - DotNet 10.md",
94+
"Deviations from Standard.md"
9495
],
9596
"src": "_roslyn/docs/compilers/CSharp",
9697
"dest": "csharp/whats-new/breaking-changes",
@@ -534,6 +535,7 @@
534535
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "11/08/2023",
535536
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "11/09/2024",
536537
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "01/09/2024",
538+
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "04/24/2025",
537539
"_vblang/spec/*.md": "07/21/2017"
538540
},
539541
"ms.subservice": {
@@ -715,6 +717,7 @@
715717
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "C# compiler breaking changes since C# 11",
716718
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "C# compiler breaking changes since C# 12",
717719
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "C# compiler breaking changes since C# 13",
720+
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "Deviations from the C# standard",
718721
"_vblang/spec/introduction.md": "Introduction",
719722
"_vblang/spec/lexical-grammar.md": "Lexical grammar",
720723
"_vblang/spec/preprocessing-directives.md": "Preprocessing directives",
@@ -842,7 +845,7 @@
842845
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "Learn about any breaking changes since the initial release of C# 11 and included in C# 12",
843846
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "Learn about any breaking changes since the initial release of C# 12 and included in C# 13",
844847
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "Learn about any breaking changes since the initial release of C# 13 and included in C# 14",
845-
"_vblang/spec/introduction.md": "This chapter provides and introduction to the Visual Basic language.",
848+
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "Learn about any deviations from the C# standard",
846849
"_vblang/spec/lexical-grammar.md": "This chapter defines the lexical grammar for Visual Basic.",
847850
"_vblang/spec/preprocessing-directives.md": "This chapter defines the preprocessing directives allowed in Visual Basic",
848851
"_vblang/spec/general-concepts.md": "This chapter describes the general concepts used in the Visual Basic language.",
@@ -900,7 +903,11 @@
900903
"docs/visual-basic/**/*.md": "Visual Basic"
901904
},
902905
"open_to_public_contributors": {
903-
"docs/standard/design-guidelines/**.md": false
906+
"docs/standard/design-guidelines/**.md": false,
907+
"_csharplang/**.md": false,
908+
"_csharpstandard/**.md": false,
909+
"_roslyn/**.md": false,
910+
"_vblang/**.md": false
904911
},
905912
"ms.collection": {
906913
"docs/ai/**/**.{md,yml}": "ce-skilling-ai-copilot"

docs/csharp/specification/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,8 @@ items:
247247
href: ../../../_csharplang/proposals/csharp-11.0/generic-attributes.md
248248
- name: Experimental attribute
249249
href: ../../../_csharplang/proposals/csharp-12.0/experimental-attribute.md
250+
- name: Deviations from the C# standard
251+
href: ../../../_roslyn/docs/compilers/CSharp/Deviations from Standard.md
250252
- name: Other C# documentation
251253
items:
252254
- name: C# conceptual docs

0 commit comments

Comments
 (0)