|
76 | 76 | "csharp-8.0/nested-stackalloc.md", |
77 | 77 | "csharp-9.0/nullable-reference-types-specification.md", |
78 | 78 | "csharp-9.0/nullable-constructor-analysis.md", |
79 | | - "csharp-9.0/nullable-parameter-default-value-analysis.md" |
| 79 | + "csharp-9.0/nullable-parameter-default-value-analysis.md", |
| 80 | + "csharp-9.0/skip-localsinit.md" |
80 | 81 | ] |
81 | 82 | }, |
82 | 83 | { |
83 | 84 | "files": [ |
84 | 85 | "Compiler Breaking Changes - DotNet 7.md", |
85 | 86 | "Compiler Breaking Changes - DotNet 8.md", |
86 | | - "Compiler Breaking Changes - DotNet 9.md" |
| 87 | + "Compiler Breaking Changes - DotNet 9.md", |
| 88 | + "Compiler Breaking Changes - DotNet 10.md" |
87 | 89 | ], |
88 | 90 | "src": "_roslyn/docs/compilers/CSharp", |
89 | 91 | "dest": "csharp/whats-new/breaking-changes", |
|
504 | 506 | "_csharplang/proposals/csharp-13.0/*.md": "10/31/2024", |
505 | 507 | "_csharplang/proposals/*.md": "10/31/2024", |
506 | 508 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 7.md": "11/08/2022", |
507 | | - "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "09/26/2023", |
508 | | - "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "06/26/2024", |
| 509 | + "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "11/08/2023", |
| 510 | + "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "11/09/2024", |
| 511 | + "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "01/09/2024", |
509 | 512 | "_vblang/spec/*.md": "07/21/2017" |
510 | 513 | }, |
511 | 514 | "ms.subservice": { |
|
625 | 628 | "_csharplang/proposals/csharp-9.0/native-integers.md": "Native sized integers", |
626 | 629 | "_csharplang/proposals/csharp-9.0/patterns3.md": "Pattern matching changes", |
627 | 630 | "_csharplang/proposals/csharp-9.0/records.md": "Records", |
628 | | - "_csharplang/proposals/csharp-9.0/skip-localsinit.md": "Suppress emitting localsinit flag", |
629 | 631 | "_csharplang/proposals/csharp-9.0/static-anonymous-functions.md": "Static anonymous functions", |
630 | 632 | "_csharplang/proposals/csharp-9.0/target-typed-conditional-expression.md": "Target-typed conditional expression", |
631 | 633 | "_csharplang/proposals/csharp-9.0/target-typed-new.md": "Target-typed new expressions", |
|
680 | 682 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 7.md": "C# compiler breaking changes since C# 10", |
681 | 683 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 8.md": "C# compiler breaking changes since C# 11", |
682 | 684 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 9.md": "C# compiler breaking changes since C# 12", |
| 685 | + "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 10.md": "C# compiler breaking changes since C# 13", |
683 | 686 | "_vblang/spec/introduction.md": "Introduction", |
684 | 687 | "_vblang/spec/lexical-grammar.md": "Lexical grammar", |
685 | 688 | "_vblang/spec/preprocessing-directives.md": "Preprocessing directives", |
|
745 | 748 | "_csharplang/proposals/csharp-9.0/native-integers.md": "This feature specification describes native sized integers, which are integer types that use the processor's natural integral types.", |
746 | 749 | "_csharplang/proposals/csharp-9.0/patterns3.md": "This feature specification describes the additional pattern matching syntax added in C# 9.0. This includes relational patterns, 'and' and 'or' patterns, negated patterns and parenthesized patterns.", |
747 | 750 | "_csharplang/proposals/csharp-9.0/records.md": "This feature specification describes records. Records are reference types that provide value based equality semantics.", |
748 | | - "_csharplang/proposals/csharp-9.0/skip-localsinit.md": "This feature specification describes a performance enhancement to suppress emitting localsinit flag. This will prevent the runtime from initializing memory to 0 as part of allocating it.", |
749 | 751 | "_csharplang/proposals/csharp-9.0/static-anonymous-functions.md": "This feature specification describes static anonymous functions. Static anonymous functions are lambda expressions that are prohibited from accessing variables in the enclosing scope. That prevents them from creating a closure.", |
750 | 752 | "_csharplang/proposals/csharp-9.0/target-typed-conditional-expression.md": "This feature specification describes syntax rules to find a best match for the target of a conditional expression (?:).", |
751 | 753 | "_csharplang/proposals/csharp-9.0/target-typed-new.md": "This feature specification describes the enhancements to 'new' where the target type can be inferred from the variable declaration.", |
|
800 | 802 | "_roslyn/docs/compilers/CSharp/Compiler Breaking Changes - DotNet 7.md": "Learn about any breaking changes since the initial release of C# 10 and included in C# 11", |
801 | 803 | "_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", |
802 | 804 | "_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", |
| 805 | + "_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", |
803 | 806 | "_vblang/spec/introduction.md": "This chapter provides and introduction to the Visual Basic language.", |
804 | 807 | "_vblang/spec/lexical-grammar.md": "This chapter defines the lexical grammar for Visual Basic.", |
805 | 808 | "_vblang/spec/preprocessing-directives.md": "This chapter defines the preprocessing directives allowed in Visual Basic", |
|
0 commit comments