Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
"Compiler Breaking Changes - DotNet 7.md",
"Compiler Breaking Changes - DotNet 8.md",
"Compiler Breaking Changes - DotNet 9.md",
"Compiler Breaking Changes - DotNet 10.md"
"Compiler Breaking Changes - DotNet 10.md",
"Deviations from Standard.md"
],
"src": "_roslyn/docs/compilers/CSharp",
"dest": "csharp/whats-new/breaking-changes",
Expand Down Expand Up @@ -534,6 +535,7 @@
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "11/08/2023",
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "11/09/2024",
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "01/09/2024",
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "04/24/2025",
"_vblang/spec/*.md": "07/21/2017"
},
"ms.subservice": {
Expand Down Expand Up @@ -715,6 +717,7 @@
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "C# compiler breaking changes since C# 11",
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "C# compiler breaking changes since C# 12",
"_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "C# compiler breaking changes since C# 13",
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "Deviations from the C# standard",
"_vblang/spec/introduction.md": "Introduction",
"_vblang/spec/lexical-grammar.md": "Lexical grammar",
"_vblang/spec/preprocessing-directives.md": "Preprocessing directives",
Expand Down Expand Up @@ -842,7 +845,7 @@
"_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",
"_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",
"_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",
"_vblang/spec/introduction.md": "This chapter provides and introduction to the Visual Basic language.",
"_roslyn/docs/compilers/CSharp/Deviations from Standard.md": "Learn about any deviations from the C# standard",
"_vblang/spec/lexical-grammar.md": "This chapter defines the lexical grammar for Visual Basic.",
"_vblang/spec/preprocessing-directives.md": "This chapter defines the preprocessing directives allowed in Visual Basic",
"_vblang/spec/general-concepts.md": "This chapter describes the general concepts used in the Visual Basic language.",
Expand Down Expand Up @@ -900,7 +903,11 @@
"docs/visual-basic/**/*.md": "Visual Basic"
},
"open_to_public_contributors": {
"docs/standard/design-guidelines/**.md": false
"docs/standard/design-guidelines/**.md": false,
"_csharplang/**.md": false,
"_csharpstandard/**.md": false,
"_roslyn/**.md": false,
"_vblang/**.md": false
},
"ms.collection": {
"docs/ai/**/**.{md,yml}": "ce-skilling-ai-copilot"
Expand Down
2 changes: 2 additions & 0 deletions docs/csharp/specification/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ items:
href: ../../../_csharplang/proposals/csharp-11.0/generic-attributes.md
- name: Experimental attribute
href: ../../../_csharplang/proposals/csharp-12.0/experimental-attribute.md
- name: Deviations from the C# standard
href: ../../../_roslyn/docs/compilers/CSharp/Deviations from Standard.md
- name: Other C# documentation
items:
- name: C# conceptual docs
Expand Down
Loading