From fb2bd3ff9e1ecd4897bb9543a9fae6c6139fff64 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Mon, 15 Apr 2024 08:00:46 -0700 Subject: [PATCH] set ms.topic to whats-new (#40464) --- docfx.json | 1 + docs/csharp/whats-new/csharp-10.md | 1 + docs/csharp/whats-new/csharp-11.md | 1 + docs/csharp/whats-new/csharp-12.md | 1 + docs/csharp/whats-new/csharp-13.md | 11 +++--- ...whats-new-in-pos-for-net-v114-and-v1141.md | 2 +- docs/framework/data/adonet/whats-new.md | 6 +-- docs/framework/wcf/whats-new.md | 4 +- docs/framework/whats-new/index.md | 2 +- .../whats-new/whats-new-in-accessibility.md | 1 + .../whats-new-in-wf-in-dotnet.md | 2 +- .../windows-workflow-foundation/whats-new.md | 2 +- docs/fsharp/whats-new/fsharp-45.md | 1 + docs/fsharp/whats-new/fsharp-46.md | 1 + docs/fsharp/whats-new/fsharp-47.md | 1 + docs/fsharp/whats-new/fsharp-50.md | 1 + docs/fsharp/whats-new/fsharp-6.md | 1 + docs/fsharp/whats-new/fsharp-7.md | 1 + docs/fsharp/whats-new/fsharp-8.md | 1 + .../whats-new/whats-new-in-dotnet-standard.md | 1 + docs/visual-basic/getting-started/index.md | 37 +++++++------------ docs/visual-basic/whats-new/index.md | 4 +- docs/whats-new/dotnet-7-docs.md | 1 + 23 files changed, 44 insertions(+), 40 deletions(-) diff --git a/docfx.json b/docfx.json index 929c4f0beed..4daf2e760ef 100644 --- a/docfx.json +++ b/docfx.json @@ -289,6 +289,7 @@ "docs/windows-workflow-foundation/3*.md": "error-reference", "docs/windows-workflow-foundation/4*.md": "error-reference", "docs/windows-workflow-foundation/5*.md": "error-reference", + "docs/whats-new/**/*.md": "whats-new", "includes/**/**.md": "include" }, "dev_langs": { diff --git a/docs/csharp/whats-new/csharp-10.md b/docs/csharp/whats-new/csharp-10.md index 796e3cec82d..f2676a82145 100644 --- a/docs/csharp/whats-new/csharp-10.md +++ b/docs/csharp/whats-new/csharp-10.md @@ -3,6 +3,7 @@ title: What's new in C# 10 - C# Guide description: Get an overview of the new features available in C# 10. ms.date: 11/08/2021 ms.custom: UpdateFrequency1 +ms.topic: whats-new --- # What's new in C# 10 diff --git a/docs/csharp/whats-new/csharp-11.md b/docs/csharp/whats-new/csharp-11.md index c196660ec4b..3194014a1fe 100644 --- a/docs/csharp/whats-new/csharp-11.md +++ b/docs/csharp/whats-new/csharp-11.md @@ -3,6 +3,7 @@ title: What's new in C# 11 - C# Guide description: Get an overview of the new features added in C# 11. ms.date: 03/15/2024 ms.custom: UpdateFrequency1 +ms.topic: whats-new --- # What's new in C# 11 diff --git a/docs/csharp/whats-new/csharp-12.md b/docs/csharp/whats-new/csharp-12.md index 989abc461f8..cb27dae4f81 100644 --- a/docs/csharp/whats-new/csharp-12.md +++ b/docs/csharp/whats-new/csharp-12.md @@ -2,6 +2,7 @@ title: What's new in C# 12 - C# Guide description: Get an overview of the new features in C# 12. ms.date: 03/19/2024 +ms.topic: whats-new --- # What's new in C# 12 diff --git a/docs/csharp/whats-new/csharp-13.md b/docs/csharp/whats-new/csharp-13.md index 639f7c0cb21..f8e27a87540 100644 --- a/docs/csharp/whats-new/csharp-13.md +++ b/docs/csharp/whats-new/csharp-13.md @@ -2,6 +2,7 @@ title: What's new in C# 13 - C# Guide description: Get an overview of the new features in C# 13. Follow the release of new preview features as .NET 9 and C# 13 previews are released. ms.date: 03/19/2024 +ms.topic: whats-new --- # What's new in C# 13 @@ -36,10 +37,10 @@ You can read the details of the changes in the [proposal specification](~/_cshar The implicit "from the end" index operator, `^`, is now allowed in an object initializer expression. For example, you can now initialize an array in an object initializer as shown in the following code: ```csharp -var v = new S() -{ - buffer = - { +var v = new S() +{ + buffer = + { [^1] = 0, [^2] = 1, [^3] = 2, @@ -50,7 +51,7 @@ var v = new S() [^8] = 7, [^9] = 8, [^10] = 9 - } + } }; ``` diff --git a/docs/framework/additional-apis/pos-for-net/whats-new-in-pos-for-net-v114-and-v1141.md b/docs/framework/additional-apis/pos-for-net/whats-new-in-pos-for-net-v114-and-v1141.md index 8da5bba214b..53f144b39ae 100644 --- a/docs/framework/additional-apis/pos-for-net/whats-new-in-pos-for-net-v114-and-v1141.md +++ b/docs/framework/additional-apis/pos-for-net/whats-new-in-pos-for-net-v114-and-v1141.md @@ -2,8 +2,8 @@ title: What's New in POS for .NET v1.14 and v1.14.1 description: What's New in POS for .NET v1.14 and v1.14.1 (POS for .NET v1.14 SDK Documentation) ms.date: 04/12/2017 -ms.topic: how-to ms.custom: "pos-restored-from-archive,UpdateFrequency5" +ms.topic: whats-new --- # What's New in POS for .NET v1.14 and v1.14.1 (Microsoft Point of Service for .NET) diff --git a/docs/framework/data/adonet/whats-new.md b/docs/framework/data/adonet/whats-new.md index e2c8ace24e8..a42421cb76a 100644 --- a/docs/framework/data/adonet/whats-new.md +++ b/docs/framework/data/adonet/whats-new.md @@ -1,10 +1,10 @@ --- -title: "What's New" +title: "What's new in ADO.NET" description: Learn about the new features in ADO.NET in .NET Framework 4.5, including new features for SqlClient data provider and ADO.NET Entity Framework. ms.date: "03/30/2017" -ms.assetid: 3bb65d38-cce2-46f5-b979-e5c505e95e10 +ms.topic: whats-new --- -# What's New in ADO.NET +# What's new in ADO.NET The following features are new in ADO.NET in the .NET Framework 4.5. diff --git a/docs/framework/wcf/whats-new.md b/docs/framework/wcf/whats-new.md index 1ad1d2e009b..4c43d318305 100644 --- a/docs/framework/wcf/whats-new.md +++ b/docs/framework/wcf/whats-new.md @@ -5,10 +5,10 @@ ms.date: "03/30/2017" helpviewer_keywords: - "WCF [WCF], what's new" - "Windows Communication Foundation [WCF], what's new" -ms.assetid: 7e93fe73-af93-46b5-9f63-32f761ee40cf +ms.topic: whats-new --- -# What's New in Windows Communication Foundation 4.5 +# What's new in Windows Communication Foundation 4.5 This topic discusses features new to Windows Communication Foundation (WCF) version 4.5. diff --git a/docs/framework/whats-new/index.md b/docs/framework/whats-new/index.md index 15c8c8f1594..882a79fe273 100644 --- a/docs/framework/whats-new/index.md +++ b/docs/framework/whats-new/index.md @@ -7,7 +7,7 @@ dev_langs: - "vb" helpviewer_keywords: - "what's new [.NET Framework]" -ms.assetid: 1d971dd7-10fc-4692-8dac-30ca308fc0fa +ms.topic: whats-new --- # What's new in .NET Framework diff --git a/docs/framework/whats-new/whats-new-in-accessibility.md b/docs/framework/whats-new/whats-new-in-accessibility.md index c41d01ab732..08068d2d2c9 100644 --- a/docs/framework/whats-new/whats-new-in-accessibility.md +++ b/docs/framework/whats-new/whats-new-in-accessibility.md @@ -8,6 +8,7 @@ dev_langs: - "vb" helpviewer_keywords: - "what's new [.NET Framework]" +ms.topic: whats-new --- # What's new in accessibility in .NET Framework diff --git a/docs/framework/windows-workflow-foundation/whats-new-in-wf-in-dotnet.md b/docs/framework/windows-workflow-foundation/whats-new-in-wf-in-dotnet.md index e15d218bbd6..c0e6024682c 100644 --- a/docs/framework/windows-workflow-foundation/whats-new-in-wf-in-dotnet.md +++ b/docs/framework/windows-workflow-foundation/whats-new-in-wf-in-dotnet.md @@ -2,7 +2,7 @@ title: "What's New in Windows Workflow Foundation in .NET Framework 4.5" description: Windows Workflow Foundation in .NET Framework 4.5 introduces many new features, such as new activities, designer capabilities, and workflow development models. ms.date: "03/30/2017" -ms.topic: "reference" +ms.topic: whats-new --- # What's New in Windows Workflow Foundation in .NET Framework 4.5 diff --git a/docs/framework/windows-workflow-foundation/whats-new.md b/docs/framework/windows-workflow-foundation/whats-new.md index 40bb6f6deaa..57b1da80921 100644 --- a/docs/framework/windows-workflow-foundation/whats-new.md +++ b/docs/framework/windows-workflow-foundation/whats-new.md @@ -5,7 +5,7 @@ ms.date: "03/30/2017" helpviewer_keywords: - "Windows Workflow Foundation [WF], what's new" - "WF [WF], what's new" -ms.topic: "reference" +ms.topic: whats-new --- # What's New in Windows Workflow Foundation diff --git a/docs/fsharp/whats-new/fsharp-45.md b/docs/fsharp/whats-new/fsharp-45.md index 33178607b87..e2ff653a142 100644 --- a/docs/fsharp/whats-new/fsharp-45.md +++ b/docs/fsharp/whats-new/fsharp-45.md @@ -2,6 +2,7 @@ title: What's new in F# 4.5 - F# Guide description: Get an overview of the new features available in F# 4.5. ms.date: 11/27/2019 +ms.topic: whats-new --- # What's new in F# 4.5 diff --git a/docs/fsharp/whats-new/fsharp-46.md b/docs/fsharp/whats-new/fsharp-46.md index f9f2a92094c..e52796f8d1f 100644 --- a/docs/fsharp/whats-new/fsharp-46.md +++ b/docs/fsharp/whats-new/fsharp-46.md @@ -2,6 +2,7 @@ title: What's new in F# 4.6 - F# Guide description: Get an overview of the new features available in F# 4.6. ms.date: 11/27/2019 +ms.topic: whats-new --- # What's new in F# 4.6 diff --git a/docs/fsharp/whats-new/fsharp-47.md b/docs/fsharp/whats-new/fsharp-47.md index 9668b84c9c6..6d191ca5c11 100644 --- a/docs/fsharp/whats-new/fsharp-47.md +++ b/docs/fsharp/whats-new/fsharp-47.md @@ -2,6 +2,7 @@ title: What's new in F# 4.7 - F# Guide description: Get an overview of the new features available in F# 4.7. ms.date: 11/27/2019 +ms.topic: whats-new --- # What's new in F# 4.7 diff --git a/docs/fsharp/whats-new/fsharp-50.md b/docs/fsharp/whats-new/fsharp-50.md index 397b5600c05..2154d9ca392 100644 --- a/docs/fsharp/whats-new/fsharp-50.md +++ b/docs/fsharp/whats-new/fsharp-50.md @@ -2,6 +2,7 @@ title: What's new in F# 5 - F# Guide description: Get an overview of the new features available in F# 5. ms.date: 11/04/2021 +ms.topic: whats-new --- # What's new in F# 5 diff --git a/docs/fsharp/whats-new/fsharp-6.md b/docs/fsharp/whats-new/fsharp-6.md index 9cf402a0c22..67376de498a 100644 --- a/docs/fsharp/whats-new/fsharp-6.md +++ b/docs/fsharp/whats-new/fsharp-6.md @@ -2,6 +2,7 @@ title: What's new in F# 6 - F# Guide description: Get an overview of the new features available in F# 6. ms.date: 10/13/2021 +ms.topic: whats-new --- # What's new in F# 6 diff --git a/docs/fsharp/whats-new/fsharp-7.md b/docs/fsharp/whats-new/fsharp-7.md index a62792df0ef..145a360026a 100644 --- a/docs/fsharp/whats-new/fsharp-7.md +++ b/docs/fsharp/whats-new/fsharp-7.md @@ -2,6 +2,7 @@ title: What's new in F# 7 - F# Guide description: Find information on the new features available in F# 7. ms.date: 11/17/2023 +ms.topic: whats-new --- # What's new in F# 7 diff --git a/docs/fsharp/whats-new/fsharp-8.md b/docs/fsharp/whats-new/fsharp-8.md index d5c380450bc..874086770ba 100644 --- a/docs/fsharp/whats-new/fsharp-8.md +++ b/docs/fsharp/whats-new/fsharp-8.md @@ -2,6 +2,7 @@ title: What's new in F# 8 - F# Guide description: Find information on the new features available in F# 8. ms.date: 11/17/2023 +ms.topic: whats-new --- # What's new in F# 8 diff --git a/docs/standard/whats-new/whats-new-in-dotnet-standard.md b/docs/standard/whats-new/whats-new-in-dotnet-standard.md index b97a818ccc8..ce516886f00 100644 --- a/docs/standard/whats-new/whats-new-in-dotnet-standard.md +++ b/docs/standard/whats-new/whats-new-in-dotnet-standard.md @@ -3,6 +3,7 @@ title: "What's new in .NET Standard" description: This article summarizes new features and enhancements found in each new version of .NET Standard. ms.date: 12/09/2021 ms.service: dotnet-whatsnew +ms.topic: whats-new --- # What's new in .NET Standard diff --git a/docs/visual-basic/getting-started/index.md b/docs/visual-basic/getting-started/index.md index 632e1d9b0d0..c0ca39e38b0 100644 --- a/docs/visual-basic/getting-started/index.md +++ b/docs/visual-basic/getting-started/index.md @@ -1,11 +1,11 @@ --- description: "Learn more about: Get started with Visual Basic" -title: "Get started" +title: "Get started with Visual Basic" ms.date: 09/10/2018 helpviewer_keywords: - "get started, Visual Basic" - "Visual Basic, get started" -ms.assetid: 6685467b-28fa-4cde-9516-f0e00ad08911 +ms.topic: whats-new --- # Get started with Visual Basic @@ -19,37 +19,26 @@ This section of the documentation helps you get started with Visual Basic applic ## Additional information -- [What's new for Visual Basic](../whats-new/index.md) -Lists new features in each of the versions of Visual Basic .NET. +- [What's new for Visual Basic](../whats-new/index.md) - Lists new features in each of the versions of Visual Basic .NET. -- [Additional Resources for Visual Basic Programmers](additional-resources.md) -Provides a list of Web sites and newsgroups that can help you find answers to common problems. +- [Additional Resources for Visual Basic Programmers](additional-resources.md) - Provides a list of Web sites and newsgroups that can help you find answers to common problems. ## See also -- [Get Visual Basic](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=learn.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2019) -Provides download links for Visual Studio versions that come with Visual Basic support, including free versions. +- [Get Visual Basic](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=learn.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2019) - Provides download links for Visual Studio versions that come with Visual Basic support, including free versions. -- [Object-Oriented Programming](../programming-guide/concepts/object-oriented-programming.md) -Provides links to pages that introduce object-oriented programming and describe how to create your own objects and how to use objects to simplify your coding. +- [Object-Oriented Programming](../programming-guide/concepts/object-oriented-programming.md) - Provides links to pages that introduce object-oriented programming and describe how to create your own objects and how to use objects to simplify your coding. -- [Samples](https://github.com/dotnet/docs/tree/main/samples/snippets/visualbasic) -Provides links to sample code in Visual Basic. +- [Samples](https://github.com/dotnet/docs/tree/main/samples/snippets/visualbasic) - Provides links to sample code in Visual Basic. -- [Walkthroughs](../walkthroughs.md) -Provides a list of Help pages that demonstrate aspects of the Visual Basic language. +- [Walkthroughs](../walkthroughs.md) - Provides a list of Help pages that demonstrate aspects of the Visual Basic language. -- [Feedback options for Visual Studio](/visualstudio/ide/feedback-options) -Covers how to receive support and give feedback. +- [Feedback options for Visual Studio](/visualstudio/ide/feedback-options) - Covers how to receive support and give feedback. -- [Visual Studio](/visualstudio/) -Provides links into the Visual Studio documentation. +- [Visual Studio](/visualstudio/) - Provides links into the Visual Studio documentation. -- [C#](../../csharp/index.yml) -Provides links into the documentation on application development with Visual C#. +- [C#](../../csharp/index.yml) - Provides links into the documentation on application development with C#. -- [Visual C++](/cpp/) -Provides links into the Visual C++ documentation. +- [Visual C++](/cpp/) - Provides links into the Visual C++ documentation. -- [Office and SharePoint Development](/visualstudio/vsto/office-and-sharepoint-development-in-visual-studio) -Provides information about using Microsoft Office and Visual Studio as part of a business application. +- [Office and SharePoint Development](/visualstudio/vsto/office-and-sharepoint-development-in-visual-studio) - Provides information about using Microsoft Office and Visual Studio as part of a business application. diff --git a/docs/visual-basic/whats-new/index.md b/docs/visual-basic/whats-new/index.md index e4bef9a8848..718be0723b7 100644 --- a/docs/visual-basic/whats-new/index.md +++ b/docs/visual-basic/whats-new/index.md @@ -9,11 +9,11 @@ helpviewer_keywords: - "what's new [Visual Basic]" - "Visual Basic, what's new" ms.custom: UpdateFrequency1 -ms.assetid: d7e97396-7f42-4873-a81c-4ebcc4b6ca02 +ms.topic: whats-new --- # What's new for Visual Basic -This topic lists key feature names for each version of Visual Basic, with detailed descriptions of the new and enhanced features in the latest versions of the language. +This article lists key feature names for each version of Visual Basic, with detailed descriptions of the new and enhanced features in the latest versions of the language. ## Current version diff --git a/docs/whats-new/dotnet-7-docs.md b/docs/whats-new/dotnet-7-docs.md index ad04e4de481..db5f52aabec 100644 --- a/docs/whats-new/dotnet-7-docs.md +++ b/docs/whats-new/dotnet-7-docs.md @@ -2,6 +2,7 @@ title: ".NET docs: What's new for .NET 7" description: "What's new in the .NET docs for the .NET 7 release." ms.date: 11/08/2022 +ms.topic: whats-new --- # .NET docs: What's new for the .NET 7 release