Skip to content

Create config and infrastructure for a What's new in docs for a release #30545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .whatsnew.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"maximumNumberOfArticles": 3,
"tocParentNode": "What's new",
"repoTocFolder": "docs/whats-new",
"indexParentNode": "Find .NET updates",
"indexParentNode": "Latest documentation updates",
"repoIndexFolder": "docs/whats-new"
},
"areas": [
Expand Down
81 changes: 81 additions & 0 deletions .whatsnew.release.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"$schema": "https://whatsnewapi.azurewebsites.net/schema",
"docSetProductName": ".NET",
"rootDirectory": "docs/",
"docLinkSettings": {
"linkFormat": "relative",
"relativeLinkPrefix": "../"
},
"inclusionCriteria": {
"labels": [
"label:\":checkered_flag: Release: .NET 7\""
],
"maxFilesChanged": 100,
"minAdditionsToFile": 1
},
"navigationOptions": {
"maximumNumberOfArticles": 4,
"tocParentNode": "What's new",
"repoTocFolder": "docs/whats-new",
"indexParentNode": ".NET release updates",
"repoIndexFolder": "docs/whats-new"
},
"areas": [
{
"names": [ "." ],
"heading": "Home"
},
{
"names": [ "architecture" ],
"heading": "Architecture guides"
},
{
"names": [ "azure" ],
"heading": "Azure SDK for .NET"
},
{
"names": [ "csharp" ],
"heading": "C# language"
},
{
"names": [ "desktop-wpf" ],
"heading": ".NET Core desktop"
},
{
"names": [ "framework" ],
"heading": ".NET Framework"
},
{
"names": [ "fsharp" ],
"heading": "F# language"
},
{
"names": [ "core/compatibility" ],
"heading": ".NET breaking changes"
},
{
"names": [ "core", "fundamentals", "standard" ],
"heading": ".NET fundamentals"
},
{
"names": [ "iot" ],
"heading": ".NET IoT libraries"
},
{
"names": [ "machine-learning" ],
"heading": "ML.NET"
},
{
"names": [ "spark" ],
"heading": ".NET for Apache Spark"
},
{
"names": [ "visual-basic" ],
"heading": "Visual Basic language"
},
{
"names": [ "orleans", "dotnet-orleans" ],
"heading": "Microsoft Orleans"
}
]
}
2 changes: 1 addition & 1 deletion docs/fundamentals/code-analysis/quality-rules/ca2109.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ A public or protected event-handling method was detected.

> [!NOTE]
> This rule has been deprecated. It last shipped with Microsoft.CodeAnalysis.Analyzers v3.3.0.
>
>
> The rule was removed because the threat that the analyzer warned about (an untrusted intermediary hooking a privileged event handler to a privileged event invoker) hasn't existed since .NET Framework 4.5.

## Rule description
Expand Down
Loading